Changeset 12424 in vbox for trunk/src/VBox/Frontends/VirtualBox4/include
- Timestamp:
- Sep 12, 2008 2:45:16 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 36493
- Location:
- trunk/src/VBox/Frontends/VirtualBox4/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxConsoleWnd.h
r12171 r12424 36 36 #include <QDialog> 37 37 38 #if defined(VBOX_WITH_DEBUGGER_GUI) && 038 #ifdef VBOX_WITH_DEBUGGER_GUI 39 39 # include <VBox/dbggui.h> 40 40 #endif … … 104 104 void retranslateUi(); 105 105 106 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0106 #ifdef VBOX_WITH_DEBUGGER_GUI 107 107 bool dbgCreated(); 108 108 void dbgDestroy(); … … 193 193 void dbgShowStatistics(); 194 194 void dbgShowCommandLine(); 195 void dbgLoggingToggled(bool aBool); 195 196 196 197 void onExitFullscreen(); … … 234 235 QAction *devicesInstallGuestToolsAction; 235 236 236 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0237 #ifdef VBOX_WITH_DEBUGGER_GUI 237 238 // Debugger actions 238 239 QAction *dbgStatisticsAction; 239 240 QAction *dbgCommandLineAction; 241 QAction *dbgLoggingAction; 240 242 #endif 241 243 … … 264 266 VBoxUSBMenu *mDevicesUSBMenu; 265 267 /* VBoxSwitchMenu *mDevicesVRDPMenu; */ 266 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0268 #ifdef VBOX_WITH_DEBUGGER_GUI 267 269 // Debugger popup menu 268 270 QMenu *mDbgMenu; … … 324 326 bool mIsAutoSaveMedia : 1; 325 327 326 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 327 // Debugger GUI 328 PDBGGUI dbg_gui; 328 #ifdef VBOX_WITH_DEBUGGER_GUI 329 /** The handle to the debugger gui. */ 330 PDBGGUI mDbgGui; 331 /** The virtual method table for the debugger GUI. */ 332 PCDBGGUIVT mDbgGuiVT; 329 333 #endif 330 334 -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxGlobal.h
r12331 r12424 237 237 const char *vmRenderModeStr() const { return vm_render_mode_str; } 238 238 239 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 240 bool isDebuggerEnabled() const { return dbg_enabled; } 241 bool isDebuggerVisibleAtStartup() const { return dbg_visible_at_startup; } 239 #ifdef VBOX_WITH_DEBUGGER_GUI 240 bool isDebuggerEnabled() const { return mDbgEnabled; } 241 bool isDebuggerAutoShowEnabled() const { return mDbgAutoShow; } 242 RTLDRMOD getDebuggerModule() const { return mhVBoxDbg; } 242 243 #endif 243 244 … … 716 717 const char * vm_render_mode_str; 717 718 718 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 719 bool dbg_enabled; 720 bool dbg_visible_at_startup; 719 #ifdef VBOX_WITH_DEBUGGER_GUI 720 /** Whether the debugger should be accessible or not. 721 * Use --dbg, the env.var. VBOX_GUI_DBG_ENABLED, --debug or the env.var. 722 * VBOX_GUI_DBG_AUTO_SHOW to enable. */ 723 bool mDbgEnabled; 724 /** Whether to show the debugger automatically with the console. 725 * Use --debug or the env.var. VBOX_GUI_DBG_AUTO_SHOW to enable. */ 726 bool mDbgAutoShow; 727 /** VBoxDbg module handle. */ 728 RTLDRMOD mhVBoxDbg; 721 729 #endif 722 730
Note:
See TracChangeset
for help on using the changeset viewer.