Changeset 42323 in vbox
- Timestamp:
- Jul 23, 2012 12:33:32 PM (12 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp
r42318 r42323 151 151 break; 152 152 } 153 pMachineView->sltMachineStateChanged(); 154 /** @todo Can we move the call to sltAdditionsStateChanged() from the 155 * subclass constructors here too? It is called for Normal and Seamless, 156 * but not for Fullscreen and Scale. However for Scale it is a no op., 157 * so it would not hurt. Would it hurt for Fullscreen? */ 153 158 return pMachineView; 154 159 } … … 262 267 #endif /* VBOX_WITH_VIDEOHWACCEL */ 263 268 { 269 /* Load machine view settings: */ 270 loadMachineViewSettings(); 271 272 /* Prepare viewport: */ 273 prepareViewport(); 274 275 /* Prepare frame buffer: */ 276 prepareFrameBuffer(); 277 278 /* Prepare common things: */ 279 prepareCommon(); 280 281 /* Prepare event-filters: */ 282 prepareFilters(); 283 284 /* Prepare connections: */ 285 prepareConnections(); 286 287 /* Prepare console connections: */ 288 prepareConsoleConnections(); 264 289 } 265 290 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineViewFullscreen.cpp
r42318 r42323 53 53 , m_bIsGuestAutoresizeEnabled(gActionPool->action(UIActionIndexRuntime_Toggle_GuestAutoresize)->isChecked()) 54 54 { 55 /* Load machine view settings: */56 loadMachineViewSettings();57 58 /* Prepare viewport: */59 prepareViewport();60 61 /* Prepare frame buffer: */62 prepareFrameBuffer();63 64 /* Prepare common things: */65 prepareCommon();66 67 /* Prepare event-filters: */68 prepareFilters();69 70 /* Prepare connections: */71 prepareConnections();72 73 /* Prepare console connections: */74 prepareConsoleConnections();75 76 /* Initialization: */77 sltMachineStateChanged();78 55 } 79 56 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineViewNormal.cpp
r42318 r42323 49 49 , m_bIsGuestAutoresizeEnabled(gActionPool->action(UIActionIndexRuntime_Toggle_GuestAutoresize)->isChecked()) 50 50 { 51 /* Load machine view settings: */52 loadMachineViewSettings();53 54 /* Prepare viewport: */55 prepareViewport();56 57 /* Prepare frame buffer: */58 prepareFrameBuffer();59 60 /* Prepare common things: */61 prepareCommon();62 63 /* Prepare event-filters: */64 prepareFilters();65 66 /* Prepare connections: */67 prepareConnections();68 69 /* Prepare console connections: */70 prepareConsoleConnections();71 51 72 52 /* Initialization: */ 73 sltMachineStateChanged();74 53 sltAdditionsStateChanged(); 75 54 } -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/scale/UIMachineViewScale.cpp
r42318 r42323 53 53 , m_pPauseImage(0) 54 54 { 55 /* Load machine view settings: */56 loadMachineViewSettings();57 58 /* Prepare viewport: */59 prepareViewport();60 61 /* Prepare frame buffer: */62 prepareFrameBuffer();63 64 /* Prepare common things: */65 prepareCommon();66 67 /* Prepare event-filters: */68 prepareFilters();69 70 /* Prepare connections: */71 prepareConnections();72 73 /* Prepare console connections: */74 prepareConsoleConnections();75 76 /* Initialization: */77 sltMachineStateChanged();78 55 } 79 56 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineViewSeamless.cpp
r42318 r42323 57 57 ) 58 58 { 59 /* Load machine view settings: */60 loadMachineViewSettings();61 62 /* Prepare viewport: */63 prepareViewport();64 65 /* Prepare frame buffer: */66 prepareFrameBuffer();67 68 /* Prepare common things: */69 prepareCommon();70 71 /* Prepare event-filters: */72 prepareFilters();73 74 /* Prepare connections: */75 prepareConnections();76 77 /* Prepare console connections: */78 prepareConsoleConnections();79 80 59 /* Prepare seamless view: */ 81 60 prepareSeamless(); 82 61 83 62 /* Initialization: */ 84 sltMachineStateChanged();85 63 sltAdditionsStateChanged(); 86 64 }
Note:
See TracChangeset
for help on using the changeset viewer.