Changeset 80653 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Sep 8, 2019 7:13:14 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineLogicFullscreen.cpp
r80652 r80653 549 549 /* Logic => window signals: */ 550 550 connect(this, &UIMachineLogicFullscreen::sigNotifyAboutNativeFullscreenShouldBeEntered, 551 pMachineWindow, &UIMachineWindow::sltEnterNativeFullscreen);551 qobject_cast<UIMachineWindowFullscreen*>(pMachineWindow), &UIMachineWindowFullscreen::sltEnterNativeFullscreen); 552 552 connect(this, &UIMachineLogicFullscreen::sigNotifyAboutNativeFullscreenShouldBeExited, 553 pMachineWindow, &UIMachineWindow::sltExitNativeFullscreen);553 qobject_cast<UIMachineWindowFullscreen*>(pMachineWindow), &UIMachineWindowFullscreen::sltExitNativeFullscreen); 554 554 /* Window => logic signals: */ 555 connect( pMachineWindow, &UIMachineWindow::sigNotifyAboutNativeFullscreenWillEnter,555 connect(qobject_cast<UIMachineWindowFullscreen*>(pMachineWindow), &UIMachineWindowFullscreen::sigNotifyAboutNativeFullscreenWillEnter, 556 556 this, &UIMachineLogicFullscreen::sltHandleNativeFullscreenWillEnter, 557 Qt::QueuedConnection);558 connect( pMachineWindow, &UIMachineWindow::sigNotifyAboutNativeFullscreenDidEnter,557 Qt::QueuedConnection); 558 connect(qobject_cast<UIMachineWindowFullscreen*>(pMachineWindow), &UIMachineWindowFullscreen::sigNotifyAboutNativeFullscreenDidEnter, 559 559 this, &UIMachineLogicFullscreen::sltHandleNativeFullscreenDidEnter, 560 560 Qt::QueuedConnection); 561 connect( pMachineWindow, &UIMachineWindow::sigNotifyAboutNativeFullscreenWillExit,561 connect(qobject_cast<UIMachineWindowFullscreen*>(pMachineWindow), &UIMachineWindowFullscreen::sigNotifyAboutNativeFullscreenWillExit, 562 562 this, &UIMachineLogicFullscreen::sltHandleNativeFullscreenWillExit, 563 563 Qt::QueuedConnection); 564 connect( pMachineWindow, &UIMachineWindow::sigNotifyAboutNativeFullscreenDidExit,564 connect(qobject_cast<UIMachineWindowFullscreen*>(pMachineWindow), &UIMachineWindowFullscreen::sigNotifyAboutNativeFullscreenDidExit, 565 565 this, &UIMachineLogicFullscreen::sltHandleNativeFullscreenDidExit, 566 566 Qt::QueuedConnection); 567 connect( pMachineWindow, &UIMachineWindow::sigNotifyAboutNativeFullscreenFailToEnter,567 connect(qobject_cast<UIMachineWindowFullscreen*>(pMachineWindow), &UIMachineWindowFullscreen::sigNotifyAboutNativeFullscreenFailToEnter, 568 568 this, &UIMachineLogicFullscreen::sltHandleNativeFullscreenFailToEnter, 569 569 Qt::QueuedConnection);
Note:
See TracChangeset
for help on using the changeset viewer.