mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Added the ability to split the Debugger window horizontally and vertically via the Add Panes menu.
This commit is contained in:
@ -196,6 +196,23 @@ private:
|
||||
EToolbar_Max
|
||||
};
|
||||
|
||||
enum
|
||||
{
|
||||
Toolbar_Delete,
|
||||
Toolbar_Add_BP,
|
||||
Toolbar_Add_MC,
|
||||
Num_Bitmaps
|
||||
};
|
||||
|
||||
enum
|
||||
{
|
||||
ADD_PANE_TOP,
|
||||
ADD_PANE_BOTTOM,
|
||||
ADD_PANE_LEFT,
|
||||
ADD_PANE_RIGHT,
|
||||
ADD_PANE_CENTER
|
||||
};
|
||||
|
||||
wxTimer m_poll_hotkey_timer;
|
||||
|
||||
wxBitmap m_Bitmaps[EToolbar_Max];
|
||||
@ -239,7 +256,7 @@ private:
|
||||
const wxString& title = "",
|
||||
wxWindow * = nullptr);
|
||||
wxString AuiFullscreen, AuiCurrent;
|
||||
void AddPane();
|
||||
void AddPane(int dir);
|
||||
void UpdateCurrentPerspective();
|
||||
void SaveIniPerspectives();
|
||||
void LoadIniPerspectives();
|
||||
|
Reference in New Issue
Block a user