mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Qt/GPU Breakpoints: Changed the widget so that we don't have to select and click the Enable button when enabling/disabling a breakpoint, now it is done via a checkbox next to the breakpoint's name.
This commit is contained in:
		
							parent
							
								
									3a5352baf8
								
							
						
					
					
						commit
						23fd13dd64
					
				
					 3 changed files with 40 additions and 71 deletions
				
			
		|  | @ -4,7 +4,7 @@ | ||||||
| 
 | 
 | ||||||
| #include <QMetaType> | #include <QMetaType> | ||||||
| #include <QPushButton> | #include <QPushButton> | ||||||
| #include <QTreeWidget> | #include <QTreeView> | ||||||
| #include <QVBoxLayout> | #include <QVBoxLayout> | ||||||
| #include <QLabel> | #include <QLabel> | ||||||
| 
 | 
 | ||||||
|  | @ -23,7 +23,7 @@ BreakPointModel::BreakPointModel(std::shared_ptr<Pica::DebugContext> debug_conte | ||||||
| 
 | 
 | ||||||
| int BreakPointModel::columnCount(const QModelIndex& parent) const | int BreakPointModel::columnCount(const QModelIndex& parent) const | ||||||
| { | { | ||||||
|     return 2; |     return 1; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| int BreakPointModel::rowCount(const QModelIndex& parent) const | int BreakPointModel::rowCount(const QModelIndex& parent) const | ||||||
|  | @ -38,9 +38,7 @@ QVariant BreakPointModel::data(const QModelIndex& index, int role) const | ||||||
|     switch (role) { |     switch (role) { | ||||||
|     case Qt::DisplayRole: |     case Qt::DisplayRole: | ||||||
|     { |     { | ||||||
|         switch (index.column()) { |         if (index.column() == 0) { | ||||||
|         case 0: |  | ||||||
|         { |  | ||||||
|             static const std::map<Pica::DebugContext::Event, QString> map = { |             static const std::map<Pica::DebugContext::Event, QString> map = { | ||||||
|                 { Pica::DebugContext::Event::CommandLoaded, tr("Pica command loaded") }, |                 { Pica::DebugContext::Event::CommandLoaded, tr("Pica command loaded") }, | ||||||
|                 { Pica::DebugContext::Event::CommandProcessed, tr("Pica command processed") }, |                 { Pica::DebugContext::Event::CommandProcessed, tr("Pica command processed") }, | ||||||
|  | @ -50,17 +48,16 @@ QVariant BreakPointModel::data(const QModelIndex& index, int role) const | ||||||
|             }; |             }; | ||||||
| 
 | 
 | ||||||
|             DEBUG_ASSERT(map.size() == static_cast<size_t>(Pica::DebugContext::Event::NumEvents)); |             DEBUG_ASSERT(map.size() == static_cast<size_t>(Pica::DebugContext::Event::NumEvents)); | ||||||
| 
 |  | ||||||
|             return (map.find(event) != map.end()) ? map.at(event) : QString(); |             return (map.find(event) != map.end()) ? map.at(event) : QString(); | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         case 1: |  | ||||||
|             return data(index, Role_IsEnabled).toBool() ? tr("Enabled") : tr("Disabled"); |  | ||||||
| 
 |  | ||||||
|         default: |  | ||||||
|         break; |         break; | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|  |     case Qt::CheckStateRole: | ||||||
|  |     { | ||||||
|  |         if (index.column() == 0) | ||||||
|  |             return data(index, Role_IsEnabled).toBool() ? Qt::Checked : Qt::Unchecked; | ||||||
|         break; |         break; | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|  | @ -84,37 +81,34 @@ QVariant BreakPointModel::data(const QModelIndex& index, int role) const | ||||||
|     return QVariant(); |     return QVariant(); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| QVariant BreakPointModel::headerData(int section, Qt::Orientation orientation, int role) const | Qt::ItemFlags BreakPointModel::flags(const QModelIndex &index) const | ||||||
| { | { | ||||||
|     switch(role) { |     if (!index.isValid()) | ||||||
|     case Qt::DisplayRole: |         return 0; | ||||||
|     { | 
 | ||||||
|         if (section == 0) { |     Qt::ItemFlags flags = Qt::ItemIsEnabled; | ||||||
|             return tr("Event"); |     if (index.column() == 0) | ||||||
|         } else if (section == 1) { |         flags |= Qt::ItemIsUserCheckable; | ||||||
|             return tr("Status"); |     return flags; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|         break; |  | ||||||
|     } |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     return QVariant(); |  | ||||||
| } |  | ||||||
| 
 | 
 | ||||||
| bool BreakPointModel::setData(const QModelIndex& index, const QVariant& value, int role) | bool BreakPointModel::setData(const QModelIndex& index, const QVariant& value, int role) | ||||||
| { | { | ||||||
|     const auto event = static_cast<Pica::DebugContext::Event>(index.row()); |     const auto event = static_cast<Pica::DebugContext::Event>(index.row()); | ||||||
| 
 | 
 | ||||||
|     switch (role) { |     switch (role) { | ||||||
|     case Role_IsEnabled: |     case Qt::CheckStateRole: | ||||||
|     { |     { | ||||||
|  |         if (index.column() != 0) | ||||||
|  |             return false; | ||||||
|  | 
 | ||||||
|         auto context = context_weak.lock(); |         auto context = context_weak.lock(); | ||||||
|         if (!context) |         if (!context) | ||||||
|             return false; |             return false; | ||||||
| 
 | 
 | ||||||
|         context->breakpoints[event].enabled = value.toBool(); |         context->breakpoints[event].enabled = value == Qt::Checked; | ||||||
|         QModelIndex changed_index = createIndex(index.row(), 1); |         QModelIndex changed_index = createIndex(index.row(), 0); | ||||||
|         emit dataChanged(changed_index, changed_index); |         emit dataChanged(changed_index, changed_index); | ||||||
|         return true; |         return true; | ||||||
|     } |     } | ||||||
|  | @ -133,7 +127,7 @@ void BreakPointModel::OnBreakPointHit(Pica::DebugContext::Event event) | ||||||
|     active_breakpoint = context->active_breakpoint; |     active_breakpoint = context->active_breakpoint; | ||||||
|     at_breakpoint = context->at_breakpoint; |     at_breakpoint = context->at_breakpoint; | ||||||
|     emit dataChanged(createIndex(static_cast<int>(event), 0), |     emit dataChanged(createIndex(static_cast<int>(event), 0), | ||||||
|                      createIndex(static_cast<int>(event), 1)); |                      createIndex(static_cast<int>(event), 0)); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| void BreakPointModel::OnResumed() | void BreakPointModel::OnResumed() | ||||||
|  | @ -144,7 +138,7 @@ void BreakPointModel::OnResumed() | ||||||
| 
 | 
 | ||||||
|     at_breakpoint = context->at_breakpoint; |     at_breakpoint = context->at_breakpoint; | ||||||
|     emit dataChanged(createIndex(static_cast<int>(active_breakpoint), 0), |     emit dataChanged(createIndex(static_cast<int>(active_breakpoint), 0), | ||||||
|                      createIndex(static_cast<int>(active_breakpoint), 1)); |                      createIndex(static_cast<int>(active_breakpoint), 0)); | ||||||
|     active_breakpoint = context->active_breakpoint; |     active_breakpoint = context->active_breakpoint; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | @ -162,13 +156,15 @@ GraphicsBreakPointsWidget::GraphicsBreakPointsWidget(std::shared_ptr<Pica::Debug | ||||||
| 
 | 
 | ||||||
|     breakpoint_model = new BreakPointModel(debug_context, this); |     breakpoint_model = new BreakPointModel(debug_context, this); | ||||||
|     breakpoint_list = new QTreeView; |     breakpoint_list = new QTreeView; | ||||||
|  |     breakpoint_list->setRootIsDecorated(false); | ||||||
|  |     breakpoint_list->setHeaderHidden(true); | ||||||
|     breakpoint_list->setModel(breakpoint_model); |     breakpoint_list->setModel(breakpoint_model); | ||||||
| 
 | 
 | ||||||
|     toggle_breakpoint_button = new QPushButton(tr("Enable")); |  | ||||||
|     toggle_breakpoint_button->setEnabled(false); |  | ||||||
| 
 |  | ||||||
|     qRegisterMetaType<Pica::DebugContext::Event>("Pica::DebugContext::Event"); |     qRegisterMetaType<Pica::DebugContext::Event>("Pica::DebugContext::Event"); | ||||||
| 
 | 
 | ||||||
|  |     connect(breakpoint_list, SIGNAL(doubleClicked(const QModelIndex&)), | ||||||
|  |             this, SLOT(OnItemDoubleClicked(const QModelIndex&))); | ||||||
|  | 
 | ||||||
|     connect(resume_button, SIGNAL(clicked()), this, SLOT(OnResumeRequested())); |     connect(resume_button, SIGNAL(clicked()), this, SLOT(OnResumeRequested())); | ||||||
| 
 | 
 | ||||||
|     connect(this, SIGNAL(BreakPointHit(Pica::DebugContext::Event,void*)), |     connect(this, SIGNAL(BreakPointHit(Pica::DebugContext::Event,void*)), | ||||||
|  | @ -184,11 +180,6 @@ GraphicsBreakPointsWidget::GraphicsBreakPointsWidget(std::shared_ptr<Pica::Debug | ||||||
|     connect(this, SIGNAL(BreakPointsChanged(const QModelIndex&,const QModelIndex&)), |     connect(this, SIGNAL(BreakPointsChanged(const QModelIndex&,const QModelIndex&)), | ||||||
|             breakpoint_model, SIGNAL(dataChanged(const QModelIndex&,const QModelIndex&))); |             breakpoint_model, SIGNAL(dataChanged(const QModelIndex&,const QModelIndex&))); | ||||||
| 
 | 
 | ||||||
|     connect(breakpoint_list->selectionModel(), SIGNAL(currentChanged(QModelIndex,QModelIndex)), |  | ||||||
|             this, SLOT(OnBreakpointSelectionChanged(QModelIndex))); |  | ||||||
| 
 |  | ||||||
|     connect(toggle_breakpoint_button, SIGNAL(clicked()), this, SLOT(OnToggleBreakpointEnabled())); |  | ||||||
| 
 |  | ||||||
|     QWidget* main_widget = new QWidget; |     QWidget* main_widget = new QWidget; | ||||||
|     auto main_layout = new QVBoxLayout; |     auto main_layout = new QVBoxLayout; | ||||||
|     { |     { | ||||||
|  | @ -198,7 +189,6 @@ GraphicsBreakPointsWidget::GraphicsBreakPointsWidget(std::shared_ptr<Pica::Debug | ||||||
|         main_layout->addLayout(sub_layout); |         main_layout->addLayout(sub_layout); | ||||||
|     } |     } | ||||||
|     main_layout->addWidget(breakpoint_list); |     main_layout->addWidget(breakpoint_list); | ||||||
|     main_layout->addWidget(toggle_breakpoint_button); |  | ||||||
|     main_widget->setLayout(main_layout); |     main_widget->setLayout(main_layout); | ||||||
| 
 | 
 | ||||||
|     setWidget(main_widget); |     setWidget(main_widget); | ||||||
|  | @ -234,32 +224,15 @@ void GraphicsBreakPointsWidget::OnResumeRequested() | ||||||
|         context->Resume(); |         context->Resume(); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| void GraphicsBreakPointsWidget::OnBreakpointSelectionChanged(const QModelIndex& index) | void GraphicsBreakPointsWidget::OnItemDoubleClicked(const QModelIndex& index) | ||||||
| { | { | ||||||
|     if (!index.isValid()) { |     if (!index.isValid()) | ||||||
|         toggle_breakpoint_button->setEnabled(false); |  | ||||||
|         return; |         return; | ||||||
|     } |  | ||||||
| 
 | 
 | ||||||
|     toggle_breakpoint_button->setEnabled(true); |     QModelIndex check_index = breakpoint_list->model()->index(index.row(), 0); | ||||||
|     UpdateToggleBreakpointButton(index); |     QVariant enabled = breakpoint_list->model()->data(check_index, Qt::CheckStateRole); | ||||||
| } |     QVariant new_state = Qt::Unchecked; | ||||||
| 
 |     if (enabled == Qt::Unchecked) | ||||||
| void GraphicsBreakPointsWidget::OnToggleBreakpointEnabled() |         new_state = Qt::Checked; | ||||||
| { |     breakpoint_list->model()->setData(check_index, new_state, Qt::CheckStateRole); | ||||||
|     QModelIndex index = breakpoint_list->selectionModel()->currentIndex(); |  | ||||||
|     bool new_state = !(breakpoint_model->data(index, BreakPointModel::Role_IsEnabled).toBool()); |  | ||||||
| 
 |  | ||||||
|     breakpoint_model->setData(index, new_state, |  | ||||||
|                               BreakPointModel::Role_IsEnabled); |  | ||||||
|     UpdateToggleBreakpointButton(index); |  | ||||||
| } |  | ||||||
| 
 |  | ||||||
| void GraphicsBreakPointsWidget::UpdateToggleBreakpointButton(const QModelIndex& index) |  | ||||||
| { |  | ||||||
|     if (true == breakpoint_model->data(index, BreakPointModel::Role_IsEnabled).toBool()) { |  | ||||||
|         toggle_breakpoint_button->setText(tr("Disable")); |  | ||||||
|     } else { |  | ||||||
|         toggle_breakpoint_button->setText(tr("Enable")); |  | ||||||
|     } |  | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -31,10 +31,9 @@ public: | ||||||
| 
 | 
 | ||||||
| public slots: | public slots: | ||||||
|     void OnBreakPointHit(Pica::DebugContext::Event event, void* data); |     void OnBreakPointHit(Pica::DebugContext::Event event, void* data); | ||||||
|  |     void OnItemDoubleClicked(const QModelIndex&); | ||||||
|     void OnResumeRequested(); |     void OnResumeRequested(); | ||||||
|     void OnResumed(); |     void OnResumed(); | ||||||
|     void OnBreakpointSelectionChanged(const QModelIndex&); |  | ||||||
|     void OnToggleBreakpointEnabled(); |  | ||||||
| 
 | 
 | ||||||
| signals: | signals: | ||||||
|     void Resumed(); |     void Resumed(); | ||||||
|  | @ -42,11 +41,8 @@ signals: | ||||||
|     void BreakPointsChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight); |     void BreakPointsChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight); | ||||||
| 
 | 
 | ||||||
| private: | private: | ||||||
|     void UpdateToggleBreakpointButton(const QModelIndex& index); |  | ||||||
| 
 |  | ||||||
|     QLabel* status_text; |     QLabel* status_text; | ||||||
|     QPushButton* resume_button; |     QPushButton* resume_button; | ||||||
|     QPushButton* toggle_breakpoint_button; |  | ||||||
| 
 | 
 | ||||||
|     BreakPointModel* breakpoint_model; |     BreakPointModel* breakpoint_model; | ||||||
|     QTreeView* breakpoint_list; |     QTreeView* breakpoint_list; | ||||||
|  |  | ||||||
|  | @ -23,7 +23,7 @@ public: | ||||||
|     int columnCount(const QModelIndex& parent = QModelIndex()) const override; |     int columnCount(const QModelIndex& parent = QModelIndex()) const override; | ||||||
|     int rowCount(const QModelIndex& parent = QModelIndex()) const override; |     int rowCount(const QModelIndex& parent = QModelIndex()) const override; | ||||||
|     QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; |     QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; | ||||||
|     QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override; |     Qt::ItemFlags flags(const QModelIndex &index) const; | ||||||
| 
 | 
 | ||||||
|     bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole) override; |     bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole) override; | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue