儲存庫 vbox 的更動 12171
- 時間撮記:
- 2008-9-6 上午04:15:21 (16 年 以前)
- 位置:
- trunk/src/VBox/Frontends/VirtualBox4
- 檔案:
-
- 修改 5 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Frontends/VirtualBox4/Makefile.kmk
r12170 r12171 41 41 # Disable the debugger for now, this is another story. 42 42 VBOX_WITH_DEBUGGER_GUI := 43 DEFS := $(filter-out VBOX_WITH_DEBUGGER_GUI,$(DEFS))44 43 45 44 # Guess VBOX_WITH_QT4_SUN -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxConsoleWnd.h
r12010 r12171 36 36 #include <QDialog> 37 37 38 #if def VBOX_WITH_DEBUGGER_GUI38 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 39 39 # include <VBox/dbggui.h> 40 40 #endif … … 104 104 void retranslateUi(); 105 105 106 #if def VBOX_WITH_DEBUGGER_GUI106 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 107 107 bool dbgCreated(); 108 108 void dbgDestroy(); … … 234 234 QAction *devicesInstallGuestToolsAction; 235 235 236 #if def VBOX_WITH_DEBUGGER_GUI236 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 237 237 // Debugger actions 238 238 QAction *dbgStatisticsAction; … … 264 264 VBoxUSBMenu *mDevicesUSBMenu; 265 265 /* VBoxSwitchMenu *mDevicesVRDPMenu; */ 266 #if def VBOX_WITH_DEBUGGER_GUI266 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 267 267 // Debugger popup menu 268 268 QMenu *mDbgMenu; … … 324 324 bool mIsAutoSaveMedia : 1; 325 325 326 #if def VBOX_WITH_DEBUGGER_GUI326 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 327 327 // Debugger GUI 328 328 PDBGGUI dbg_gui; -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxGlobal.h
r12010 r12171 237 237 const char *vmRenderModeStr() const { return vm_render_mode_str; } 238 238 239 #if def VBOX_WITH_DEBUGGER_GUI239 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 240 240 bool isDebuggerEnabled() const { return dbg_enabled; } 241 241 bool isDebuggerVisibleAtStartup() const { return dbg_visible_at_startup; } … … 714 714 const char * vm_render_mode_str; 715 715 716 #if def VBOX_WITH_DEBUGGER_GUI716 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 717 717 bool dbg_enabled; 718 718 bool dbg_visible_at_startup; -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxConsoleWnd.cpp
r12098 r12171 63 63 #endif 64 64 65 #if def VBOX_WITH_DEBUGGER_GUI65 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 66 66 #include <VBox/err.h> 67 67 #endif … … 115 115 : QIWithRetranslateUI2<QMainWindow> (aParent, aFlags) 116 116 , mMainMenu (0) 117 #if def VBOX_WITH_DEBUGGER_GUI117 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 118 118 , dbgStatisticsAction (NULL) 119 119 , dbgCommandLineAction (NULL) … … 133 133 , mIsFirstTimeStarted (false) 134 134 , mIsAutoSaveMedia (true) 135 #if def VBOX_WITH_DEBUGGER_GUI135 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 136 136 , dbg_gui (NULL) 137 137 #endif … … 262 262 ":/guesttools_disabled_16px.png")); 263 263 264 #if def VBOX_WITH_DEBUGGER_GUI264 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 265 265 if (vboxGlobal().isDebuggerEnabled()) 266 266 { … … 355 355 mDevicesUSBMenu->menuAction()->setData (false); 356 356 357 #if def VBOX_WITH_DEBUGGER_GUI357 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 358 358 /* Debug popup menu */ 359 359 if (vboxGlobal().isDebuggerEnabled()) … … 555 555 this, SLOT (processGlobalSettingChange (const char *, const char *))); 556 556 557 #if def VBOX_WITH_DEBUGGER_GUI557 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 558 558 if (dbgStatisticsAction) 559 559 connect (dbgStatisticsAction, SIGNAL (triggered()), … … 919 919 } 920 920 921 #if def VBOX_WITH_DEBUGGER_GUI921 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 922 922 /* open debugger windows if requested */ 923 923 if (vboxGlobal().isDebuggerVisibleAtStartup()) … … 1100 1100 { 1101 1101 mNormalGeo.setSize (re->size()); 1102 #if def VBOX_WITH_DEBUGGER_GUI1102 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 1103 1103 dbgAdjustRelativePos(); 1104 1104 #endif … … 1120 1120 { 1121 1121 mNormalGeo.moveTo (geometry().x(), geometry().y()); 1122 #if def VBOX_WITH_DEBUGGER_GUI1122 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 1123 1123 dbgAdjustRelativePos(); 1124 1124 #endif … … 1539 1539 tr ("Mount the Guest Additions installation image")); 1540 1540 1541 #if def VBOX_WITH_DEBUGGER_GUI1541 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 1542 1542 /* Debug actions */ 1543 1543 … … 1567 1567 // mDevicesMenu->setIcon (VBoxGlobal::iconSet (":/settings_16px.png")); 1568 1568 1569 #if def VBOX_WITH_DEBUGGER_GUI1569 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 1570 1570 if (vboxGlobal().isDebuggerEnabled()) 1571 1571 mDbgMenu->setTitle (tr ("De&bug")); … … 3391 3391 void VBoxConsoleWnd::dbgShowStatistics() 3392 3392 { 3393 #if def VBOX_WITH_DEBUGGER_GUI3393 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 3394 3394 if (dbgCreated()) 3395 3395 DBGGuiShowStatistics (dbg_gui); … … 3402 3402 void VBoxConsoleWnd::dbgShowCommandLine() 3403 3403 { 3404 #if def VBOX_WITH_DEBUGGER_GUI3404 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 3405 3405 if (dbgCreated()) 3406 3406 DBGGuiShowCommandLine (dbg_gui); … … 3408 3408 } 3409 3409 3410 #if def VBOX_WITH_DEBUGGER_GUI3410 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 3411 3411 3412 3412 /** -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxGlobal.cpp
r12010 r12171 4469 4469 4470 4470 vm_render_mode_str = 0; 4471 #if def VBOX_WITH_DEBUGGER_GUI4471 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 4472 4472 #ifdef VBOX_WITH_DEBUGGER_GUI_MENU 4473 4473 dbg_enabled = true; … … 4514 4514 vm_render_mode_str = qApp->argv() [i]; 4515 4515 } 4516 #if def VBOX_WITH_DEBUGGER_GUI4516 #if defined(VBOX_WITH_DEBUGGER_GUI) && 0 4517 4517 else if (!::strcmp (arg, "-dbg")) 4518 4518 {
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器