Changeset 27064 in vbox for trunk/src/VBox
- Timestamp:
- Mar 5, 2010 10:05:45 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 58381
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineWindowFullscreen.cpp
r27058 r27064 65 65 prepareMachineView(); 66 66 67 #ifdef Q_WS_MAC68 /* Load normal window settings: */69 loadWindowSettings();70 #endif /* Q_WS_MAC */71 72 67 /* Update all the elements: */ 73 68 updateAppearanceOf(UIVisualElement_AllStuff); … … 75 70 /* Show window: */ 76 71 showFullScreen(); 72 73 #ifdef Q_WS_MAC 74 /* Make sure it is really on the right place (especially on the Mac) */ 75 move(0, 0); 76 #endif /* Q_WS_MAC */ 77 77 } 78 78 … … 172 172 } 173 173 174 #ifdef Q_WS_MAC175 void UIMachineWindowFullscreen::loadWindowSettings()176 {177 /* Load global settings: */178 {179 VBoxGlobalSettings settings = vboxGlobal().settings();180 menuBar()->setHidden(settings.isFeatureActive("noMenuBar"));181 }182 }183 #endif184 185 174 void UIMachineWindowFullscreen::cleanupMachineView() 186 175 { -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineWindowFullscreen.h
r27057 r27064 66 66 #endif /* Q_WS_MAC */ 67 67 void prepareMachineView(); 68 #ifdef Q_WS_MAC69 void loadWindowSettings();70 #endif /* Q_WS_MAC */71 68 72 69 /* Cleanup helpers: */ 73 #ifdef Q_WS_MAC74 70 //void saveWindowSettings() {} 75 #endif /* Q_WS_MAC */76 71 void cleanupMachineView(); 77 72 #ifdef Q_WS_MAC
Note:
See TracChangeset
for help on using the changeset viewer.