summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAndy Shaw <andy.shaw@nokia.com>2010-09-29 10:07:07 (GMT)
committerAndy Shaw <andy.shaw@nokia.com>2010-09-29 10:07:07 (GMT)
commit1f554a40c65fef249b8044246731a6de34eb90a1 (patch)
tree6949d0c10b4d8fc5bbad3b0b380ee5b7c14d4234 /tests
parent8050dc45c8c9a134875196dcddf010d4194fd974 (diff)
downloadQt-1f554a40c65fef249b8044246731a6de34eb90a1.zip
Qt-1f554a40c65fef249b8044246731a6de34eb90a1.tar.gz
Qt-1f554a40c65fef249b8044246731a6de34eb90a1.tar.bz2
Update frameGeometry when the unified toolbar visiblity is toggled
When the unified toolbar visiblity was toggled on Carbon then it would not have a correct frameGeometry as it would have a top position different to what it should have been as the window does not move. Autotest included in this commit. Task-number: QTBUG-14055 Reviewed-by: Prasanth
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qmainwindow/tst_qmainwindow.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/auto/qmainwindow/tst_qmainwindow.cpp b/tests/auto/qmainwindow/tst_qmainwindow.cpp
index 5a69d9c..e427863 100644
--- a/tests/auto/qmainwindow/tst_qmainwindow.cpp
+++ b/tests/auto/qmainwindow/tst_qmainwindow.cpp
@@ -109,6 +109,7 @@ private slots:
void centralWidgetSize();
void dockWidgetSize();
void QTBUG2774_stylechange();
+ void toggleUnifiedTitleAndToolBarOnMac();
};
// Testing get/set functions
@@ -1747,6 +1748,24 @@ void tst_QMainWindow::QTBUG2774_stylechange()
}
}
+void tst_QMainWindow::toggleUnifiedTitleAndToolBarOnMac()
+{
+#ifdef Q_OS_MAC
+ QMainWindow mw;
+ QToolBar *tb = new QToolBar;
+ tb->addAction("Test");
+ mw.addToolBar(tb);
+ mw.setUnifiedTitleAndToolBarOnMac(true);
+ mw.show();
+ QRect frameGeometry = mw.frameGeometry();
+ mw.setUnifiedTitleAndToolBarOnMac(false);
+ QVERIFY(frameGeometry.topLeft() == mw.frameGeometry().topLeft());
+ mw.setUnifiedTitleAndToolBarOnMac(true);
+ QVERIFY(frameGeometry.topLeft() == mw.frameGeometry().topLeft());
+#else
+ QSKIP("Mac specific test", SkipAll);
+#endif
+}
QTEST_MAIN(tst_QMainWindow)