summaryrefslogtreecommitdiffstats
path: root/tests/auto/widgets
Commit message (Collapse)AuthorAgeFilesLines
* ColorScheme: make QStyleHints::colorScheme writable for applicationsVolker Hilsheimer26 hours1-0/+118
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Applications can request the color scheme to be either explicitly light or dark, or to follow the system default by setting the scheme to Qt::ColorScheme::Unknown. Setting the color scheme will make the request to the QPlatformTheme implementation, which can then use the appropriate implementation to set the application's appearance so that both palette and window decoration follow the requested color scheme. This should trigger theme change and palette change events. A change to the effective scheme should then call back into QStyleHintsPrivate::updateColorScheme, which will emit the changed signal for the property. Implement this for macOS (Cocoa), iOS, Android, and Windows. On macOS, we have to use deprecated AppKit APIs; the replacements for those APIs are not suitable for this use case. On iOS, the setting is for each UIWindow, which we can update or initialize based on an explicitly requested scheme. On Android we can piggy-back on the logic added when dark theme support was introduced in b4a9bb1f6a40e6d504c1f48f0d9ea2b70ab1a9f0. On Windows, we have to fake a dark palette if the dark scheme is requested on a light system, as there is no API to read a dark palette. However, we also have to ignore any application preference if a high- contrast accessibility theme is selected by the user (we report the color scheme as unknown; there are both light and dark high-contrast themes), and read the system palette using the GetSysColor API, which is used for light mode. And we need to initialize windows with the correct frame if the application explicitly overrides the system color scheme. Add an auto-test to the QApplication test, as that gives us the most coverage to confirm that QStyleHints emits the changed signal, and that Theme- and PaletteChange events are received by the toplevel widget when the color scheme actually changes. This test has to be skipped on platforms where we cannot set the color scheme programmatically. Add the option to explicitly select the color scheme to the widget gallery example, and default it to dark mode. Fixes: QTBUG-124490 Change-Id: I7302993c0121284bf9d3b72e3149c6abbe6bd261 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
* QWidget: fix render() in RTL modeChristian Ehrlicher2 days1-0/+42
| | | | | | | | | | | | | | | Rendering a widget to a paintdevice via QWidget::render() did not pass the LayoutDirection mode of the widget to the paintdevice which lead to wrong rendering of text. This is especially visible with the windows 11 style which does not draw some widgets directly on the screen but through a QGraphicsEffect on a QImage. Pick-to: 6.7 6.5 6.2 Fixes: QTBUG-124931 Change-Id: If2cfa326d2ca45c42e203a4ae91fd857afa5c69c Reviewed-by: Axel Spoerl <axel.spoerl@qt.io> Reviewed-by: Wladimir Leuschner <wladimir.leuschner@qt.io>
* tst_QApplication::focusWidget() remove setActiveWindow() child sectionFrédéric Lefebvre3 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ib3b39f4bd51c87eeeebe329ada163f24390f6bc3 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QApplication::focusWidget() remove setActiveWindow()Frédéric Lefebvre3 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I160e71302b40777d13e2481447bc47ebfc1a784c Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QSpinBox::editingFinished() remove setActiveWindow()Frédéric Lefebvre3 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ib08791375e3984e7eda5b25ec6bac0b283ed80cc Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QGraphicsProxyWidget::tooltip_basic() remove setActiveWindow()Frédéric Lefebvre3 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I842e1c01007cc56e07a27a6e15ff173c4f6aece2 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QTextBrowser::TextBrowser() remove setActiveWindow()Frédéric Lefebvre4 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ia006f35177f3c8b2cb3d7b8c6bbe3f24eb24d934 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QGraphicsProxyWidget::setFocus_simpleWidget remove setActiveWindowFrédéric Lefebvre4 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I3819874c2fdd78d733707a375a849a7876a30d9d Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QPushButton::setAccel() remove QApplicationPrivate::setActiveWindowFrédéric Lefebvre4 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ia2c79a0728a3eac5f176668c6eeb82a76b18c4b4 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QTextEdit::inputMethodEvent() remove setActiveWindow()Frédéric Lefebvre4 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I53e5f5c58a7a404c1886edb5c076250388e47ab9 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QToolButton::task176137_autoRepeatOfAction remove setActiveWindow()Frédéric Lefebvre4 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I233fe1a3dbd3e8ab149f939ebeaaffb5abed4f43 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QGroupBox::propagateFocus() remove setActiveWindow()Frédéric Lefebvre4 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I2bcad29de4bcbb90a1e891a2f39db966288abdb1 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* taskQTBUG_5008_textFromValueAndValidate() remove setActiveWindow()Frédéric Lefebvre4 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I472e5648f9ea7ba699477d44b2a67500af371410 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QStackedLayout::keepFocusAfterSetCurrent() remove setActiveWindow()Frédéric Lefebvre4 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Iaf1e79193f0f7013d02d91930cc408af5b0f8e1d Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QStackedWidget::dynamicPages() remove setActiveWindow()Frédéric Lefebvre4 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: If6d2bbde186d21662bf9a72b0b03152317724f01 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QGraphicsProxyWidget::actionsContextMenu() remove setActiveWindow()Frédéric Lefebvre5 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ib33b6d750a409e5a374fcbb42dbba646582be8a7 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* taskQTBUG_5008_textFromValueAndValidate() remove setActiveWindow()Frédéric Lefebvre5 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ifec63ae2fcacdc37096e55f096def8c90a7b75ab Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QSpinBox::specialValue remove QApplicationPrivate::setActiveWindowFrédéric Lefebvre5 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ifea4bfa00cee9c4b15bc8ca7659d5f23d66c87d4 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* setFocus_simpleTwoWidgets() remove setActiveWindow()Frédéric Lefebvre7 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I5161f63321d586e72787eee5101329746f03dde1 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QApplication::alert() remove QApplicationPrivate::setActiveWindow()Frédéric Lefebvre7 days1-2/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I208ad97d7b56ded15908b96ad03779db849ef6a9 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* bypassGraphicsProxyWidget() remove setActiveWindow()Frédéric Lefebvre8 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I0a657c9aaac4684566edd212a510c7c9016117a2 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* Fix crash in QMainWindow:.tabifiedDockWidgets()Axel Spoerl8 days1-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | QMainWindow:.tabifiedDockWidgets() was refactored in Qt 6.6.3, because it returned wrong values. It now loops from 0 to QMainWindowTabBar::count() and uses QMainWindowTabBar::dockAt(), to get the dock widget pointer for an index. When a dock widget is removed from a floating tab, event processing is necessary for the item_list and QMainWindowTabBar::count() to get in sync. This case was overlooked in the refactoring. It can lead to dockAt() being called with an out-of-bounds index, which it asserted. The assertion triggered, when QMainWindow::removeDockWidget() and QMainWindow::tabifiedDockWidgets() were called right after each other, without processing events inbetween. QMainWindowTabBar::dockWidgets() doesn't add nullptr to the list, it returns. Therefore, return nullptr, when dockAt() is called out-of-bounds. Add test functionality in tst_QDockWidget::updateTabBarOnVisibilityChanged(). Fixes: QTBUG-124262 Pick-to: 6.7 6.5 Change-Id: If66084b9f00b4e39f7a620da68df67c735029cf1 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* tst_QToolBar::accel() remove QApplicationPrivate::setActiveWindow()Frédéric Lefebvre8 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ic729e2675a6a51531b4ee055d2d0b84866331b28 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* setFocus_complexTwoWidgets() remove setActiveWindow()Frédéric Lefebvre9 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I362ddbc98f864b5bae37d6e98dc5d9a3144848b5 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* taskQTBUG11823_crashwithInvisibleActions() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I1ac84b3166bb17e120b0c38b7d164f2e4e412e6d Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QMenuBar::task256322_highlight() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I2cb6b63e1ecdfd1e10d04baf5970236d31781d3e Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QMenuBar::check_menuPosition() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I2e8e1e8b2809937e3f7c1e5362afb037d953c950 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QMenuBar::check_shortcutPress() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I569d6316f3fa7b7131ce3c8448784f0588008a2c Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QMenuBar::check_altClosePress() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I7c949c9d279aea52ee774db65d9cf0033ac60fef Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QMenuBar::check_altPress() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I43e3a097e59f9c14ec2f599b12b707a2fcf98b36 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QMenuBar::check_escKey remove QApplicationPrivate::setActiveWindowFrédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ib9f5844c79f37f0992076060548c30d80d20e323 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QMenuBar::taskQTBUG56860_focus() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I96178f118ab5d60d23047a01c884a9cddcf213d5 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QMenuBar::check_cursorKeys3() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Id7db0930ebac72bf2ddebffa9f991949ba515974 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QMenuBar::check_cursorKeys2() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I570eefc39dcd5bcf8cc3673d1898f01c4dc5725f Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* QTBUG14363_completerWithAnyKeyPressedEditTriggers remove setActiveWindoFrédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I2f67811f95f580b67f247df55020266ec28c13a7 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QTableView::keyboardNavigation() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ia26ea1623a00f17765d5530882dd83480e3bb9b8 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QMdieArea::subWindowList() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I846682ed9b04b72867ffa85b0e4fc000b29c38ac Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QGraphicsProxyWidget::clickFocus() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Icf9c4b1378eb244edb56f900ba74469abc38314f Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* QTBUG_6986_sendMouseEventToAlienWidget() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: If5ddc863411907793be3a8d7b226ee49b606e9e8 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QGraphicsProxyWidget::mapToGloval() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ib5f081fb03e3abd8cb8492a6d673ade98762e26a Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QDateTimeEdit::displayFormat() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I5770bebfa4e2219d511ef8e1396ad550b1ba7b41 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QDateTimeEdit::backspaceKey() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ia2524280d57286ac53c684b53f9bee6c6c85b8c1 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QDateTimeEdit::deleteKey() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I49a6202e22246f9bf724636badbd87d9fb40d49d Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QDateTimeEdit::tabKeyNavigation() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ic3425eecedffe0def3aa851157aedc4231dca1e9 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tabFocus_complexTwoWidgets() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I60c873e4df7f5183bd1a9f295f6e916d224b6794 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QGraphicsProxyWidget::tabFocus_complexWidget remove setActiveWindowFrédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ie8496d0dc8ff0f1e085c7f218a07dd2c42e4fc14 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tabFocus_simpleTwoWidgets() remove setActiveWindow()Frédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I71c2b7a6ef69bb2990b8d56020323b90c949f966 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QGraphicsProxyWidget::tabFocus_simpleWidget remove setActiveWindowFrédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I5dacd3971305e33a6d1314b798d4211425b68d68 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* QCompleter: Hide popup when widget is hiddenEike Ziller10 days1-0/+28
| | | | | | | | | | | When the widget the completer is attached to was hidden, the popup stayed open. It would "hang around" with no corresponding UI being around anymore, which is weird. Fixes: QTBUG-124861 Pick-to: 6.7 Change-Id: If9cb04e693c2663ef9da14164611f26becafc4b4 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* tst_QAction::disableShortcutsWithBlockedWidgets remove setActiveWindowFrédéric Lefebvre10 days1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 as made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Iea02f308c3357ddcb8f52527031b9417d8a175d7 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>