Changeset 44825 in vbox
- Timestamp:
- Feb 26, 2013 11:19:59 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 83962
- 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
r41689 r44825 7 7 8 8 /* 9 * Copyright (C) 2010-201 2Oracle Corporation9 * Copyright (C) 2010-2013 Oracle Corporation 10 10 * 11 11 * This file is part of VirtualBox Open Source Edition (OSE), as … … 101 101 } 102 102 103 int UIMachineLogicFullscreen::hostScreenForGuestScreen(int screenId) const 104 { 105 return m_pScreenLayout->hostScreenForGuestScreen(screenId); 106 } 107 108 #ifdef Q_WS_MAC 109 void UIMachineLogicFullscreen::prepareFullscreenConnections() 110 { 111 /* Presentation mode connection: */ 112 connect(gEDataEvents, SIGNAL(sigPresentationModeChange(bool)), 113 this, SLOT(sltChangePresentationMode(bool))); 103 int UIMachineLogicFullscreen::hostScreenForGuestScreen(int iScreenId) const 104 { 105 return m_pScreenLayout->hostScreenForGuestScreen(iScreenId); 106 } 107 108 #ifdef Q_WS_MAC 109 void UIMachineLogicFullscreen::sltChangePresentationMode(bool /* fEnabled */) 110 { 111 setPresentationModeEnabled(true); 112 } 113 114 void UIMachineLogicFullscreen::sltScreenLayoutChanged() 115 { 116 setPresentationModeEnabled(true); 114 117 } 115 118 #endif /* Q_WS_MAC */ … … 166 169 } 167 170 171 #ifdef Q_WS_MAC 172 void UIMachineLogicFullscreen::prepareFullscreenConnections() 173 { 174 /* Presentation mode connection: */ 175 connect(gEDataEvents, SIGNAL(sigPresentationModeChange(bool)), 176 this, SLOT(sltChangePresentationMode(bool))); 177 } 178 #endif /* Q_WS_MAC */ 179 168 180 void UIMachineLogicFullscreen::cleanupMachineWindows() 169 181 { … … 191 203 192 204 #ifdef Q_WS_MAC 193 void UIMachineLogicFullscreen::sltChangePresentationMode(bool /* fEnabled */)194 {195 setPresentationModeEnabled(true);196 }197 198 void UIMachineLogicFullscreen::sltScreenLayoutChanged()199 {200 setPresentationModeEnabled(true);201 }202 203 205 void UIMachineLogicFullscreen::setPresentationModeEnabled(bool fEnabled) 204 206 { -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineLogicFullscreen.h
r41064 r44825 6 6 7 7 /* 8 * Copyright (C) 2010-201 2Oracle Corporation8 * Copyright (C) 2010-2013 Oracle Corporation 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 35 35 /* Constructor/destructor: */ 36 36 UIMachineLogicFullscreen(QObject *pParent, UISession *pSession); 37 virtual~UIMachineLogicFullscreen();37 ~UIMachineLogicFullscreen(); 38 38 39 39 /* Check if this logic is available: */ … … 43 43 void prepare(); 44 44 45 int hostScreenForGuestScreen(int screenId) const; 45 /* Multi-screen stuff: */ 46 int hostScreenForGuestScreen(int iScreenId) const; 46 47 47 48 private slots: 48 49 49 #ifdef RT_OS_DARWIN50 #ifdef Q_WS_MAC 50 51 void sltChangePresentationMode(bool fEnabled); 51 52 void sltScreenLayoutChanged(); 52 #endif /* RT_OS_DARWIN*/53 #endif /* Q_WS_MAC */ 53 54 54 55 private: … … 62 63 63 64 /* Cleanup helpers: */ 64 void cleanupMachineWindows();65 void cleanupActionGroups();66 65 #ifdef Q_WS_MAC 67 66 //void cleanupCommonConnections() {} 68 67 #endif /* Q_WS_MAC */ 68 void cleanupMachineWindows(); 69 void cleanupActionGroups(); 69 70 70 71 #ifdef Q_WS_MAC … … 72 73 #endif /* Q_WS_MAC */ 73 74 75 /* Variables: */ 74 76 UIMultiScreenLayout *m_pScreenLayout; 75 77 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineLogicSeamless.cpp
r41587 r44825 7 7 8 8 /* 9 * Copyright (C) 2010-201 2Oracle Corporation9 * Copyright (C) 2010-2013 Oracle Corporation 10 10 * 11 11 * This file is part of VirtualBox Open Source Edition (OSE), as … … 87 87 } 88 88 89 int UIMachineLogicSeamless::hostScreenForGuestScreen(int screenId) const89 int UIMachineLogicSeamless::hostScreenForGuestScreen(int iScreenId) const 90 90 { 91 return m_pScreenLayout->hostScreenForGuestScreen( screenId);91 return m_pScreenLayout->hostScreenForGuestScreen(iScreenId); 92 92 } 93 93 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineLogicSeamless.h
r41064 r44825 6 6 7 7 /* 8 * Copyright (C) 2010-201 2Oracle Corporation8 * Copyright (C) 2010-2013 Oracle Corporation 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 35 35 /* Constructor/destructor: */ 36 36 UIMachineLogicSeamless(QObject *pParent, UISession *pSession); 37 virtual~UIMachineLogicSeamless();37 ~UIMachineLogicSeamless(); 38 38 39 39 /* Check if this logic is available: */ 40 40 bool checkAvailability(); 41 41 42 int hostScreenForGuestScreen(int screenId) const; 42 /* Multi-screen stuff: */ 43 int hostScreenForGuestScreen(int iScreenId) const; 43 44 44 45 private: … … 52 53 void cleanupActionGroups(); 53 54 55 /* Variables: */ 54 56 UIMultiScreenLayout *m_pScreenLayout; 55 57
Note:
See TracChangeset
for help on using the changeset viewer.