Changeset 44848 in vbox
- Timestamp:
- Feb 27, 2013 6:58:32 PM (12 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineLogicFullscreen.cpp
r44846 r44848 117 117 } 118 118 #endif /* Q_WS_MAC */ 119 120 void UIMachineLogicFullscreen::sltGuestMonitorChange(KGuestMonitorChangedEventType changeType, ulong uScreenId, QRect screenGeo) 121 { 122 /* Update multi-screen layout before any window update: */ 123 if (changeType == KGuestMonitorChangedEventType_Enabled || 124 changeType == KGuestMonitorChangedEventType_Disabled) 125 m_pScreenLayout->rebuild(); 126 127 /* Call to base-class: */ 128 UIMachineLogic::sltGuestMonitorChange(changeType, uScreenId, screenGeo); 129 } 119 130 120 131 void UIMachineLogicFullscreen::prepareActionGroups() -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineLogicFullscreen.h
r44825 r44848 52 52 void sltScreenLayoutChanged(); 53 53 #endif /* Q_WS_MAC */ 54 void sltGuestMonitorChange(KGuestMonitorChangedEventType changeType, ulong uScreenId, QRect screenGeo); 54 55 55 56 private: -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineLogicSeamless.cpp
r44846 r44848 92 92 } 93 93 94 void UIMachineLogicSeamless::sltGuestMonitorChange(KGuestMonitorChangedEventType changeType, ulong uScreenId, QRect screenGeo) 95 { 96 /* Update multi-screen layout before any window update: */ 97 if (changeType == KGuestMonitorChangedEventType_Enabled || 98 changeType == KGuestMonitorChangedEventType_Disabled) 99 m_pScreenLayout->rebuild(); 100 101 /* Call to base-class: */ 102 UIMachineLogic::sltGuestMonitorChange(changeType, uScreenId, screenGeo); 103 } 104 94 105 void UIMachineLogicSeamless::prepareActionGroups() 95 106 { -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineLogicSeamless.h
r44825 r44848 43 43 int hostScreenForGuestScreen(int iScreenId) const; 44 44 45 private slots: 46 47 void sltGuestMonitorChange(KGuestMonitorChangedEventType changeType, ulong uScreenId, QRect screenGeo); 48 45 49 private: 46 50
Note:
See TracChangeset
for help on using the changeset viewer.