Merge pull request #2117 from lioncash/id
DolphinWX: Remove unnecessary control IDs
This commit is contained in:
commit
f71f376371
|
@ -89,7 +89,7 @@ DSPDebuggerLLE::DSPDebuggerLLE(wxWindow* parent, wxWindowID id)
|
||||||
mem_panel->SetSizer(mem_sizer);
|
mem_panel->SetSizer(mem_sizer);
|
||||||
m_MainNotebook->AddPage(mem_panel, _("Memory"));
|
m_MainNotebook->AddPage(mem_panel, _("Memory"));
|
||||||
|
|
||||||
m_Regs = new DSPRegisterView(this, ID_DSP_REGS);
|
m_Regs = new DSPRegisterView(this);
|
||||||
|
|
||||||
// add the panes to the manager
|
// add the panes to the manager
|
||||||
m_mgr.AddPane(m_Toolbar, wxAuiPaneInfo().
|
m_mgr.AddPane(m_Toolbar, wxAuiPaneInfo().
|
||||||
|
|
|
@ -36,7 +36,6 @@ private:
|
||||||
ID_RUNTOOL,
|
ID_RUNTOOL,
|
||||||
ID_STEPTOOL,
|
ID_STEPTOOL,
|
||||||
ID_SHOWPCTOOL,
|
ID_SHOWPCTOOL,
|
||||||
ID_DSP_REGS
|
|
||||||
};
|
};
|
||||||
|
|
||||||
DSPDebugInterface debug_interface;
|
DSPDebugInterface debug_interface;
|
||||||
|
|
|
@ -42,6 +42,6 @@ public:
|
||||||
class DSPRegisterView : public wxGrid
|
class DSPRegisterView : public wxGrid
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
DSPRegisterView(wxWindow* parent, wxWindowID id);
|
DSPRegisterView(wxWindow* parent, wxWindowID id = wxID_ANY);
|
||||||
void Update() override;
|
void Update() override;
|
||||||
};
|
};
|
||||||
|
|
|
@ -69,7 +69,7 @@ private:
|
||||||
class CRegisterView : public wxGrid
|
class CRegisterView : public wxGrid
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CRegisterView(wxWindow* parent, wxWindowID id);
|
CRegisterView(wxWindow* parent, wxWindowID id = wxID_ANY);
|
||||||
void Update() override;
|
void Update() override;
|
||||||
void OnMouseDownR(wxGridEvent& event);
|
void OnMouseDownR(wxGridEvent& event);
|
||||||
void OnPopupMenu(wxCommandEvent& event);
|
void OnPopupMenu(wxCommandEvent& event);
|
||||||
|
|
|
@ -27,7 +27,7 @@ CRegisterWindow::CRegisterWindow(wxWindow* parent, wxWindowID id,
|
||||||
void CRegisterWindow::CreateGUIControls()
|
void CRegisterWindow::CreateGUIControls()
|
||||||
{
|
{
|
||||||
wxBoxSizer *sGrid = new wxBoxSizer(wxVERTICAL);
|
wxBoxSizer *sGrid = new wxBoxSizer(wxVERTICAL);
|
||||||
m_GPRGridView = new CRegisterView(this, ID_GPR);
|
m_GPRGridView = new CRegisterView(this);
|
||||||
sGrid->Add(m_GPRGridView, 1, wxGROW);
|
sGrid->Add(m_GPRGridView, 1, wxGROW);
|
||||||
SetSizer(sGrid);
|
SetSizer(sGrid);
|
||||||
|
|
||||||
|
|
|
@ -28,11 +28,6 @@ public:
|
||||||
void NotifyUpdate();
|
void NotifyUpdate();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
enum
|
|
||||||
{
|
|
||||||
ID_GPR = 1002
|
|
||||||
};
|
|
||||||
|
|
||||||
CRegisterView* m_GPRGridView;
|
CRegisterView* m_GPRGridView;
|
||||||
void CreateGUIControls();
|
void CreateGUIControls();
|
||||||
};
|
};
|
||||||
|
|
|
@ -44,7 +44,7 @@ private:
|
||||||
class CWatchView : public wxGrid
|
class CWatchView : public wxGrid
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CWatchView(wxWindow* parent, wxWindowID id);
|
CWatchView(wxWindow* parent, wxWindowID id = wxID_ANY);
|
||||||
void Update() override;
|
void Update() override;
|
||||||
void OnMouseDownR(wxGridEvent& event);
|
void OnMouseDownR(wxGridEvent& event);
|
||||||
void OnPopupMenu(wxCommandEvent& event);
|
void OnPopupMenu(wxCommandEvent& event);
|
||||||
|
|
|
@ -71,7 +71,7 @@ CWatchWindow::CWatchWindow(wxWindow* parent, wxWindowID id,
|
||||||
m_mgr.SetFlags(wxAUI_MGR_DEFAULT | wxAUI_MGR_LIVE_RESIZE);
|
m_mgr.SetFlags(wxAUI_MGR_DEFAULT | wxAUI_MGR_LIVE_RESIZE);
|
||||||
|
|
||||||
wxBoxSizer *sGrid = new wxBoxSizer(wxVERTICAL);
|
wxBoxSizer *sGrid = new wxBoxSizer(wxVERTICAL);
|
||||||
m_GPRGridView = new CWatchView(this, ID_GPR);
|
m_GPRGridView = new CWatchView(this);
|
||||||
sGrid->Add(m_GPRGridView, 1, wxGROW);
|
sGrid->Add(m_GPRGridView, 1, wxGROW);
|
||||||
SetSizer(sGrid);
|
SetSizer(sGrid);
|
||||||
|
|
||||||
|
|
|
@ -36,11 +36,6 @@ public:
|
||||||
private:
|
private:
|
||||||
wxAuiManager m_mgr;
|
wxAuiManager m_mgr;
|
||||||
|
|
||||||
enum
|
|
||||||
{
|
|
||||||
ID_GPR = 1002
|
|
||||||
};
|
|
||||||
|
|
||||||
CWatchView* m_GPRGridView;
|
CWatchView* m_GPRGridView;
|
||||||
void CreateGUIControls();
|
void CreateGUIControls();
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue