Changeset 107974 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jan 29, 2025 10:06:23 AM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 167237
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualBoxManager.cpp
r107795 r107974 2347 2347 2348 2348 #ifdef VBOX_WS_MAC 2349 /* We have to make sure that we are getting the front most process: */2350 ::darwinSetFrontMostProcess();2351 2349 /* Install global event-filter, since vmstarter.app can send us FileOpen events, 2352 2350 * see UIVirtualBoxManager::eventFilter for handler implementation. */ -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineLogicFullscreen.cpp
r106061 r107974 472 472 UICocoaApplication::instance()->registerToNotificationOfWorkspace("NSWorkspaceActiveSpaceDidChangeNotification", this, 473 473 UIMachineLogicFullscreen::nativeHandlerForActiveSpaceChange); 474 475 /* We have to make sure that we are getting the front most process.476 * This is necessary for Qt versions > 4.3.3: */477 darwinSetFrontMostProcess();478 474 #endif /* VBOX_WS_MAC */ 479 475 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineLogicNormal.cpp
r106061 r107974 276 276 return; 277 277 278 #ifdef VBOX_WS_MAC /// @todo Is that really need here?279 /* We have to make sure that we are getting the front most process.280 * This is necessary for Qt versions > 4.3.3: */281 ::darwinSetFrontMostProcess();282 #endif /* VBOX_WS_MAC */283 284 278 /* Acquire monitor count: */ 285 279 ulong cMonitorCount = 0; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/scale/UIMachineLogicScale.cpp
r106061 r107974 143 143 return; 144 144 145 #ifdef VBOX_WS_MAC /// @todo Is that really need here?146 /* We have to make sure that we are getting the front most process.147 * This is necessary for Qt versions > 4.3.3: */148 ::darwinSetFrontMostProcess();149 #endif /* VBOX_WS_MAC */150 151 145 /* Acquire monitor count: */ 152 146 ulong cMonitorCount = 0; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineLogicSeamless.cpp
r106061 r107974 261 261 return; 262 262 263 #ifdef VBOX_WS_MAC264 /* We have to make sure that we are getting the front most process.265 * This is necessary for Qt versions > 4.3.3: */266 darwinSetFrontMostProcess();267 #endif /* VBOX_WS_MAC */268 269 263 /* Update the multi-screen layout: */ 270 264 m_pScreenLayout->update();
Note:
See TracChangeset
for help on using the changeset viewer.