Changeset 97849 in vbox
- Timestamp:
- Dec 20, 2022 4:04:33 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154935
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 23 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIComboBox.cpp
r97679 r97849 408 408 connect(m_pComboBox, static_cast<void(QComboBox::*)(int)>(&QComboBox::activated), 409 409 this, static_cast<void(QIComboBox::*)(int)>(&QIComboBox::activated)); 410 #ifdef VBOX_IS_QT6_OR_LATER /* * @todo qt6:textActivated was added in 5.14 actually */410 #ifdef VBOX_IS_QT6_OR_LATER /* textActivated was added in 5.14 actually */ 411 411 connect(m_pComboBox, &QComboBox::textActivated, 412 412 this, &QIComboBox::textActivated); … … 419 419 connect(m_pComboBox, &QComboBox::currentTextChanged, this, &QIComboBox::currentTextChanged); 420 420 connect(m_pComboBox, &QComboBox::editTextChanged, this, &QIComboBox::editTextChanged); 421 #ifdef VBOX_IS_QT6_OR_LATER /* * @todo qt6:textHighlighted was added in 5.14 actually */421 #ifdef VBOX_IS_QT6_OR_LATER /* textHighlighted was added in 5.14 actually */ 422 422 connect(m_pComboBox, &QComboBox::textHighlighted, 423 423 this, &QIComboBox::textHighlighted); -
trunk/src/VBox/Frontends/VirtualBox/src/extensions/graphics/QIGraphicsView.cpp
r96407 r97849 57 57 AssertPtrReturn(pTouchEvent, QGraphicsView::event(pEvent)); 58 58 /* For touch-screen event we have something special: */ 59 #ifdef VBOX_IS_QT6_OR_LATER 59 #ifdef VBOX_IS_QT6_OR_LATER /* QTouchDevice was consumed by QInputDevice in 6.0 */ 60 60 if (pTouchEvent->device()->type() == QInputDevice::DeviceType::TouchScreen) 61 61 #else … … 78 78 AssertPtrReturn(pTouchEvent, QGraphicsView::event(pEvent)); 79 79 /* For touch-screen event we have something special: */ 80 #ifdef VBOX_IS_QT6_OR_LATER 80 #ifdef VBOX_IS_QT6_OR_LATER /* QTouchDevice was consumed by QInputDevice in 6.0 */ 81 81 if (pTouchEvent->device()->type() == QInputDevice::DeviceType::TouchScreen) 82 82 #else … … 105 105 AssertPtrReturn(pTouchEvent, QGraphicsView::event(pEvent)); 106 106 /* For touch-screen event we have something special: */ 107 #ifdef VBOX_IS_QT6_OR_LATER 107 #ifdef VBOX_IS_QT6_OR_LATER /* QTouchDevice was consumed by QInputDevice in 6.0 */ 108 108 if (pTouchEvent->device()->type() == QInputDevice::DeviceType::TouchScreen) 109 109 #else -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UICommon.cpp
r97682 r97849 234 234 { 235 235 /* Make sure QApplication cleanup us on exit: */ 236 #ifndef VBOX_IS_QT6_OR_LATER 236 #ifndef VBOX_IS_QT6_OR_LATER /** @todo qt6: ... */ 237 237 qApp->setFallbackSessionManagementEnabled(false); 238 238 #endif … … 2765 2765 if (!isSeparateProcess()) 2766 2766 { 2767 # if defined(VBOX_WS_MAC) && defined(VBOX_IS_QT6_OR_LATER) 2767 # if defined(VBOX_WS_MAC) && defined(VBOX_IS_QT6_OR_LATER) /** @todo qt6: ... */ 2768 2768 /* This code prevents QWindowSystemInterface::handleApplicationTermination 2769 2769 for running, so among other things QApplication::closeAllWindows isn't -
trunk/src/VBox/Frontends/VirtualBox/src/helpbrowser/UIHelpViewer.cpp
r96407 r97849 464 464 } 465 465 466 #ifdef VBOX_IS_QT6_OR_LATER 466 #ifdef VBOX_IS_QT6_OR_LATER /* it was setSource before 6.0 */ 467 467 void UIHelpViewer::doSetSource(const QUrl &url, QTextDocument::ResourceType type) 468 468 #else … … 473 473 if (url.scheme() != "qthelp") 474 474 return; 475 #ifdef VBOX_IS_QT6_OR_LATER 475 #ifdef VBOX_IS_QT6_OR_LATER /* it was setSource before 6.0 */ 476 476 QTextBrowser::doSetSource(url, type); 477 477 #else -
trunk/src/VBox/Frontends/VirtualBox/src/helpbrowser/UIHelpViewer.h
r96407 r97849 83 83 virtual QVariant loadResource(int type, const QUrl &name) RT_OVERRIDE; 84 84 void emitHistoryChangedSignal(); 85 #ifndef VBOX_IS_QT6_OR_LATER /* must override doSetSource in6.0 */85 #ifndef VBOX_IS_QT6_OR_LATER /* must override doSetSource since 6.0 */ 86 86 virtual void setSource(const QUrl &url) RT_OVERRIDE; 87 87 #endif … … 112 112 virtual bool eventFilter(QObject *pObject, QEvent *pEvent) RT_OVERRIDE; 113 113 virtual void keyPressEvent(QKeyEvent *pEvent) RT_OVERRIDE; 114 #ifdef VBOX_IS_QT6_OR_LATER 114 #ifdef VBOX_IS_QT6_OR_LATER /* it was setSource before 6.0 */ 115 115 virtual void doSetSource(const QUrl &url, QTextDocument::ResourceType type = QTextDocument::UnknownResource) RT_OVERRIDE; 116 116 #endif -
trunk/src/VBox/Frontends/VirtualBox/src/manager/UICloudEntityKey.h
r96407 r97849 68 68 }; 69 69 70 #ifdef VBOX_IS_QT6_OR_LATER 70 #ifdef VBOX_IS_QT6_OR_LATER /* uint replaced with size_t since 6.0 */ 71 71 inline size_t qHash(const UICloudEntityKey &key, size_t uSeed) 72 72 #else -
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualBoxManagerWidget.cpp
r97278 r97849 53 53 #endif 54 54 #ifdef VBOX_WS_MAC 55 # ifdef VBOX_IS_QT6_OR_LATER 55 # ifdef VBOX_IS_QT6_OR_LATER /* we are branding as Dev Preview since 6.0 */ 56 56 # include "UIIconPool.h" 57 57 # endif … … 643 643 #ifdef VBOX_WS_MAC 644 644 m_pToolBar->emulateMacToolbar(); 645 # ifdef VBOX_IS_QT6_OR_LATER 645 # ifdef VBOX_IS_QT6_OR_LATER /* we are branding as Dev Preview since 6.0 */ 646 646 /* Branding stuff for Qt6 beta: */ 647 647 if (uiCommon().showBetaLabel()) … … 650 650 QColor(246, 179, 0), 651 651 74 /* width of BETA label */); 652 # endif /* VBOX_IS_QT6_OR_LATER */652 # endif 653 653 #endif /* VBOX_WS_MAC */ 654 654 -
trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserAbstractModel.cpp
r97606 r97849 752 752 753 753 /* Re-register VM if required: */ 754 #ifdef VBOX_IS_QT6_OR_LATER 754 #ifdef VBOX_IS_QT6_OR_LATER /* we have to use range constructors since 6.0 */ 755 755 QSet<QString> newGroupSet(newGroupList.begin(), newGroupList.end()); 756 756 QSet<QString> oldGroupSet(oldGroupList.begin(), oldGroupList.end()); -
trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserModel.cpp
r97278 r97849 439 439 440 440 /* If we have at least one of those items currently selected: */ 441 #ifdef VBOX_IS_QT6_OR_LATER 441 #ifdef VBOX_IS_QT6_OR_LATER /* we have to use range constructors since 6.0 */ 442 442 { 443 443 QList<UIChooserItem *> selectedItemsList = selectedItems(); -
trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserNodeMachine.cpp
r96407 r97849 28 28 /* Qt includes: */ 29 29 #include <qglobal.h> 30 #ifdef VBOX_IS_QT6_OR_LATER 30 #ifdef VBOX_IS_QT6_OR_LATER /* fromWildcard is available since 6.0 */ 31 31 # include <QRegularExpression> 32 32 #else … … 241 241 else 242 242 { 243 #ifdef VBOX_IS_QT6_OR_LATER /* fromWildcard is 6.0+*/243 #ifdef VBOX_IS_QT6_OR_LATER /* fromWildcard is available since 6.0 */ 244 244 QRegularExpression searchRegEx = QRegularExpression::fromWildcard(strSearchTerm, Qt::CaseInsensitive); 245 245 #else -
trunk/src/VBox/Frontends/VirtualBox/src/platform/darwin/UICocoaSpecialControls.h
r96407 r97849 35 35 /* Qt includes: */ 36 36 #include <QWidget> 37 #ifndef VBOX_IS_QT6_OR_LATER 37 #ifndef VBOX_IS_QT6_OR_LATER /** @todo qt6: ... */ 38 38 # include <QMacCocoaViewContainer> 39 39 #endif … … 49 49 * used as cocoa button container. */ 50 50 class SHARED_LIBRARY_STUFF UICocoaButton 51 #ifdef VBOX_IS_QT6_OR_LATER 51 #ifdef VBOX_IS_QT6_OR_LATER /** @todo qt6: ... */ 52 52 : public QWidget 53 53 #else -
trunk/src/VBox/Frontends/VirtualBox/src/platform/x11/UIDesktopServices_x11.cpp
r96407 r97849 45 45 const QString strVBox = QDir::toNativeSeparators(QCoreApplication::applicationDirPath() + "/" + VBOX_GUI_VMRUNNER_IMAGE); 46 46 QTextStream out(&link); 47 #ifndef VBOX_IS_QT6_OR_LATER /* defaults to UTF-8 inqt6 */47 #ifndef VBOX_IS_QT6_OR_LATER /* QTextStream defaults to UTF-8 only since qt6 */ 48 48 out.setCodec("UTF-8"); 49 49 #endif -
trunk/src/VBox/Frontends/VirtualBox/src/platform/x11/VBoxUtils-x11.cpp
r96407 r97849 34 34 #include <QtXml/QDomElement> 35 35 #include <QWidget> 36 #ifdef VBOX_IS_QT6_OR_LATER 36 #ifdef VBOX_IS_QT6_OR_LATER /** @todo qt6: ... */ 37 37 # include <QGuiApplication> 38 38 #else … … 668 668 Display *NativeWindowSubsystem::X11GetDisplay(void) 669 669 { 670 #ifdef VBOX_IS_QT6_OR_LATER 670 #ifdef VBOX_IS_QT6_OR_LATER /** @todo qt6: ... */ 671 671 Display *pDisplay = nullptr; 672 672 if (qApp) … … 685 685 xcb_connection_t *NativeWindowSubsystem::X11GetConnection(void) 686 686 { 687 #ifdef VBOX_IS_QT6_OR_LATER 687 #ifdef VBOX_IS_QT6_OR_LATER /** @todo qt6: ... */ 688 688 if (qApp) 689 689 { … … 700 700 uint32_t NativeWindowSubsystem::X11GetAppRootWindow(void) 701 701 { 702 #ifdef VBOX_IS_QT6_OR_LATER 702 #ifdef VBOX_IS_QT6_OR_LATER /** @todo qt6: ... */ 703 703 Window idWindow = 0; 704 704 Display *pDisplay = NativeWindowSubsystem::X11GetDisplay(); -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp
r97794 r97849 116 116 117 117 /** Redirects all the native events to parent. */ 118 #ifdef VBOX_IS_QT6_OR_LATER 119 bool nativeEventFilter(const QByteArray &eventType, void *pMessage, qintptr * /* pResult */)118 #ifdef VBOX_IS_QT6_OR_LATER /* long replaced with qintptr since 6.0 */ 119 bool nativeEventFilter(const QByteArray &eventType, void *pMessage, qintptr*) 120 120 #else 121 bool nativeEventFilter(const QByteArray &eventType, void *pMessage, long * /* pResult */)121 bool nativeEventFilter(const QByteArray &eventType, void *pMessage, long*) 122 122 #endif 123 123 { -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineWindow.cpp
r96407 r97849 337 337 if (!uisession()->isRunning() && !uisession()->isPaused() && !uisession()->isStuck()) 338 338 { 339 #if defined(VBOX_IS_QT6_OR_LATER) && defined(VBOX_WS_MAC) 339 #if defined(VBOX_IS_QT6_OR_LATER) && defined(VBOX_WS_MAC) /** @todo qt6 ... */ 340 340 /* If we want to close the application, we need to accept the close event. 341 341 If we don't the QEvent::Quit processing in QApplication::event fails and -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMouseHandler.cpp
r97771 r97849 786 786 } 787 787 if (mouseEvent(pWheelEvent->type(), uScreenId, 788 #ifdef VBOX_IS_QT6_OR_LATER /** @todo qt6: ... */788 #ifdef VBOX_IS_QT6_OR_LATER 789 789 pWheelEvent->position().toPoint(), pWheelEvent->globalPosition().toPoint(), 790 790 #else … … 1213 1213 LONG xShift = 0, yShift = 0; 1214 1214 1215 #ifdef VBOX_IS_QT6_OR_LATER 1215 #ifdef VBOX_IS_QT6_OR_LATER /* QTouchDevice was consumed by QInputDevice in 6.0 */ 1216 1216 bool fTouchScreen = (pTouchEvent->device()->type() == QInputDevice::DeviceType::TouchScreen); 1217 1217 #else -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp
r97682 r97849 286 286 else 287 287 { 288 #ifdef VBOX_IS_QT6_OR_LATER 288 #ifdef VBOX_IS_QT6_OR_LATER /** @todo why is this any problem on qt6? */ 289 289 msgCenter().showModalProgressDialog(progress, machineName(), ":/progress_start_90px.png", 0, 0); 290 290 #else -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIHostComboEditor.cpp
r96407 r97849 93 93 94 94 /** Handles all native events. */ 95 # ifdef VBOX_IS_QT6_OR_LATER 95 # ifdef VBOX_IS_QT6_OR_LATER /* long replaced with qintptr since 6.0 */ 96 96 virtual bool nativeEventFilter(const QByteArray &eventType, void *pMessage, qintptr *pResult) RT_OVERRIDE 97 97 # else … … 634 634 } 635 635 636 #ifdef VBOX_IS_QT6_OR_LATER 636 #ifdef VBOX_IS_QT6_OR_LATER /* long replaced with qintptr since 6.0 */ 637 637 bool UIHostComboEditorPrivate::nativeEvent(const QByteArray &eventType, void *pMessage, qintptr *pResult) 638 638 #else -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIHostComboEditor.h
r96407 r97849 201 201 202 202 /** Handles native events. */ 203 #ifdef VBOX_IS_QT6_OR_LATER 203 #ifdef VBOX_IS_QT6_OR_LATER /* long replaced with qintptr since 6.0 */ 204 204 virtual bool nativeEvent(const QByteArray &eventType, void *pMessage, qintptr *pResult) RT_OVERRIDE; 205 205 #else -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIMiniToolBar.cpp
r97847 r97849 710 710 } 711 711 712 #ifdef VBOX_IS_QT6_OR_LATER 712 #ifdef VBOX_IS_QT6_OR_LATER /* QWidget::enterEvent uses QEnterEvent since qt6 */ 713 713 void UIMiniToolBar::enterEvent(QEnterEvent*) 714 714 #else -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIMiniToolBar.h
r97847 r97849 127 127 128 128 /** Mouse enter @a pEvent handler. */ 129 #ifdef VBOX_IS_QT6_OR_LATER 129 #ifdef VBOX_IS_QT6_OR_LATER /* QWidget::enterEvent uses QEnterEvent since qt6 */ 130 130 virtual void enterEvent(QEnterEvent *pEvent) RT_OVERRIDE; 131 131 #else -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPopupStack.cpp
r97649 r97849 265 265 //m_pScrollArea->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); 266 266 QPalette pal = m_pScrollArea->palette(); 267 #ifndef VBOX_IS_QT6_OR_LATER 267 #ifndef VBOX_IS_QT6_OR_LATER /** @todo Qt::transparent glitches in qt6? */ 268 268 pal.setColor(QPalette::Window, QColor(Qt::transparent)); 269 269 #endif -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UITabBar.cpp
r96407 r97849 124 124 virtual void mouseMoveEvent(QMouseEvent *pEvent) RT_OVERRIDE; 125 125 /** Handles mouse-enter @a pEvent. */ 126 #ifdef VBOX_IS_QT6_OR_LATER 126 #ifdef VBOX_IS_QT6_OR_LATER /* QWidget::enterEvent uses QEnterEvent since qt6 */ 127 127 virtual void enterEvent(QEnterEvent *pEvent) RT_OVERRIDE; 128 128 #else … … 589 589 } 590 590 591 #ifdef VBOX_IS_QT6_OR_LATER 591 #ifdef VBOX_IS_QT6_OR_LATER /* QWidget::enterEvent uses QEnterEvent since qt6 */ 592 592 void UITabBarItem::enterEvent(QEnterEvent *pEvent) 593 593 #else
Note:
See TracChangeset
for help on using the changeset viewer.