summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/Src/CodeWindow.h
diff options
context:
space:
mode:
authorJohn Peterson <jpeterson57@gmail.com>2009-01-05 02:52:55 +0000
committerJohn Peterson <jpeterson57@gmail.com>2009-01-05 02:52:55 +0000
commit6c57f632807f8ce68fa29489e76e38138ee886bd (patch)
treefbc55f58319ae7612f00d4850f6538a50497bf2a /Source/Core/DebuggerWX/Src/CodeWindow.h
parent6359f533434db0f21cfd358629127c2032bbb47e (diff)
CodeWindow: Made boot to pause optional, readded the tooltips in the Release build
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1784 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/Src/CodeWindow.h')
-rw-r--r--Source/Core/DebuggerWX/Src/CodeWindow.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/Source/Core/DebuggerWX/Src/CodeWindow.h b/Source/Core/DebuggerWX/Src/CodeWindow.h
index ecd5abe21e..54e9cbb8d1 100644
--- a/Source/Core/DebuggerWX/Src/CodeWindow.h
+++ b/Source/Core/DebuggerWX/Src/CodeWindow.h
@@ -59,7 +59,8 @@ class CCodeWindow
bool UseInterpreter();
- bool AutomaticStart();
+ bool BootToPause();
+ bool AutomaticStart();
//bool UseDualCore(); // not used
void JumpToAddress(u32 _Address);
@@ -72,7 +73,7 @@ class CCodeWindow
// CPU Mode
IDM_INTERPRETER = 2000, // These cannot interfere with enums in Globals.h!
//IDM_DUALCORE, // not used
- IDM_AUTOMATICSTART,
+ IDM_AUTOMATICSTART, IDM_BOOTTOPAUSE,
IDM_JITUNLIMITED, IDM_JITOFF, // jit
IDM_JITLSOFF, IDM_JITLSLXZOFF, IDM_JITLSLWZOFF, IDM_JITLSLBZXOFF,
IDM_JITLSPOFF, IDM_JITLSFOFF,
@@ -142,7 +143,7 @@ class CCodeWindow
};
// Settings
- bool bAutomaticStart;
+ bool bAutomaticStart; bool bBootToPause;
bool bLogWindow;
bool bRegisterWindow;
bool bBreakpointWindow;
@@ -208,15 +209,18 @@ class CCodeWindow
void OnJITOff(wxCommandEvent& event);
void CreateMenu(const SCoreStartupParameter& _LocalCoreStartupParameter);
+ void CreateSymbolsMenu();
void UpdateButtonStates();
void UpdateLists();
-
void RecreateToolbar();
void PopulateToolbar(wxToolBar* toolBar);
- void InitBitmaps();
- void CreateGUIControls(const SCoreStartupParameter& _LocalCoreStartupParameter);
+ void OnStatusBar(wxMenuEvent& event); void OnStatusBar_(wxUpdateUIEvent& event);
+ void DoTip(wxString text);
void OnKeyDown(wxKeyEvent& event);
+
+ void InitBitmaps();
+ void CreateGUIControls(const SCoreStartupParameter& _LocalCoreStartupParameter);
};
#endif /*CODEWINDOW_*/