Changeset 16264 in vbox for trunk/src/VBox/Frontends/VirtualBox/include/VBoxConsoleWnd.h
- Timestamp:
- Jan 27, 2009 3:09:27 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxConsoleWnd.h
r15804 r16264 74 74 void refreshView(); 75 75 76 bool isWindowMaximized() const 77 { 76 bool isWindowMaximized() const 77 { 78 78 #ifdef Q_WS_MAC 79 79 /* On Mac OS X we didn't really jump to the fullscreen mode but … … 83 83 #else /* Q_WS_MAC */ 84 84 return QMainWindow::isMaximized(); 85 #endif /* Q_WS_MAC */ 85 #endif /* Q_WS_MAC */ 86 86 } 87 bool isWindowFullScreen() const 88 { 87 bool isWindowFullScreen() const 88 { 89 89 #ifdef Q_WS_MAC 90 90 /* On Mac OS X we didn't really jump to the fullscreen mode but … … 94 94 #else /* Q_WS_MAC */ 95 95 return QMainWindow::isFullScreen(); 96 #endif /* Q_WS_MAC */ 96 #endif /* Q_WS_MAC */ 97 97 } 98 98 … … 217 217 void updateMediaDriveState (VBoxDefs::MediaType aType); 218 218 void updateSharedFoldersState(); 219 void updateACPIStatus(); 219 220 220 221 void tryClose(); … … 326 327 QString caption_prefix; 327 328 329 QTimer *mACPITimer; 330 bool mACPIEnabled : 1; 331 328 332 bool no_auto_close : 1; 329 333
Note:
See TracChangeset
for help on using the changeset viewer.