Changeset 49309 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Oct 28, 2013 2:01:51 PM (11 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.h
r49177 r49309 81 81 82 82 /* API: Guest screen size stuff: */ 83 v oid maybeAdjustGuestScreenSize();83 virtual void maybeAdjustGuestScreenSize(); 84 84 85 85 /* Wrapper to open Machine settings / Network page: */ -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineLogicFullscreen.cpp
r49025 r49309 77 77 78 78 return true; 79 } 80 81 /** Adjusts guest screen count/size for the machine-logic we have. */ 82 void UIMachineLogicFullscreen::maybeAdjustGuestScreenSize() 83 { 84 m_pScreenLayout->rebuild(); 79 85 } 80 86 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineLogicFullscreen.h
r49025 r49309 40 40 bool checkAvailability(); 41 41 42 /* Multi-screen stuff: */ 42 /* Helpers: Multi-screen stuff: */ 43 void maybeAdjustGuestScreenSize(); 43 44 int hostScreenForGuestScreen(int iScreenId) const; 44 45 bool hasHostScreenForGuestScreen(int iScreenId) const; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineLogicSeamless.cpp
r49025 r49309 79 79 } 80 80 81 /** Adjusts guest screen count/size for the machine-logic we have. */ 82 void UIMachineLogicSeamless::maybeAdjustGuestScreenSize() 83 { 84 m_pScreenLayout->rebuild(); 85 } 86 81 87 int UIMachineLogicSeamless::hostScreenForGuestScreen(int iScreenId) const 82 88 { -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineLogicSeamless.h
r49025 r49309 40 40 bool checkAvailability(); 41 41 42 /* Multi-screen stuff: */ 42 /* Helpers: Multi-screen stuff: */ 43 void maybeAdjustGuestScreenSize(); 43 44 int hostScreenForGuestScreen(int iScreenId) const; 44 45 bool hasHostScreenForGuestScreen(int iScreenId) const;
Note:
See TracChangeset
for help on using the changeset viewer.