Remove some dead code wrapped in Q_WS_QWS.
authorStephen Kelly <stephen.kelly@kdab.com>
Thu, 26 Jul 2012 07:44:05 +0000 (09:44 +0200)
committerQt by Nokia <qt-info@nokia.com>
Fri, 3 Aug 2012 09:24:28 +0000 (11:24 +0200)
Change-Id: Ie1ee8c4af603b924abe40145041357981d174445
Reviewed-by: Paul Olav Tvete <paul.tvete@nokia.com>
14 files changed:
examples/mainwindows/mainwindow/mainwindow.cpp
tests/auto/gui/image/qimage/tst_qimage.cpp
tests/auto/gui/image/qpixmap/tst_qpixmap.cpp
tests/auto/gui/painting/qpainter/tst_qpainter.cpp
tests/auto/network/socket/qlocalsocket/tst_qlocalsocket.cpp
tests/auto/opengl/qgl/tst_qgl.cpp
tests/auto/widgets/graphicsview/qgraphicsitem/tst_qgraphicsitem.cpp
tests/auto/widgets/graphicsview/qgraphicswidget/tst_qgraphicswidget.cpp
tests/auto/widgets/itemviews/qabstractitemview/tst_qabstractitemview.cpp
tests/auto/widgets/itemviews/qitemdelegate/tst_qitemdelegate.cpp
tests/auto/widgets/kernel/qdesktopwidget/tst_qdesktopwidget.cpp
tests/auto/widgets/styles/qstylesheetstyle/tst_qstylesheetstyle.cpp
tests/auto/widgets/widgets/qmdiarea/tst_qmdiarea.cpp
tests/auto/widgets/widgets/qtoolbutton/tst_qtoolbutton.cpp

index 4cdc45d..2ac2b56 100644 (file)
@@ -335,11 +335,6 @@ void MainWindow::setupDockWidgets(const QMap<QString, QSize> &customSizeHints)
             connect(swatch, SIGNAL(topLevelChanged(bool)), titlebar, SLOT(updateMask()));
             connect(swatch, SIGNAL(featuresChanged(QDockWidget::DockWidgetFeatures)), titlebar, SLOT(updateMask()), Qt::QueuedConnection);
 
-#ifdef Q_WS_QWS
-            QPalette pal = palette();
-            pal.setBrush(backgroundRole(), QColor(0,0,0,0));
-            swatch->setPalette(pal);
-#endif
         }
 
         QString name = QString::fromLatin1(sets[i].name);
index 65571f1..0fad243 100644 (file)
@@ -171,14 +171,14 @@ void tst_QImage::swap()
 void tst_QImage::create()
 {
     bool cr = true;
-#if !defined(Q_WS_QWS) && !defined(Q_OS_WINCE)
+#if !defined(Q_OS_WINCE)
     QT_TRY {
 #endif
        //QImage image(7000000, 7000000, 8, 256, QImage::IgnoreEndian);
     QImage image(7000000, 7000000, QImage::Format_Indexed8);
     image.setColorCount(256);
         cr = !image.isNull();
-#if !defined(Q_WS_QWS) && !defined(Q_OS_WINCE)
+#if !defined(Q_OS_WINCE)
     } QT_CATCH (...) {
     }
 #endif
index 6fe8727..6835474 100644 (file)
@@ -63,9 +63,6 @@
 #include <windows.h>
 #endif
 
-#ifdef Q_WS_QWS
-#include <qscreen_qws.h>
-#endif
 
 Q_DECLARE_METATYPE(QImage::Format)
 
index 2ff6098..bd075eb 100644 (file)
@@ -3580,9 +3580,6 @@ void tst_QPainter::linearGradientSymmetry_data()
 
 void tst_QPainter::linearGradientSymmetry()
 {
-#ifdef Q_WS_QWS
-    QSKIP("QWS has limited resolution in the gradient color table");
-#else
     QFETCH(QGradientStops, stops);
 
     QImage a(64, 8, QImage::Format_ARGB32_Premultiplied);
@@ -3604,7 +3601,6 @@ void tst_QPainter::linearGradientSymmetry()
 
     b = b.mirrored(true);
     QCOMPARE(a, b);
-#endif
 }
 
 void tst_QPainter::gradientInterpolation()
index eeda46d..8807195 100644 (file)
@@ -763,18 +763,12 @@ void tst_QLocalSocket::processConnection()
     QStringList serverArguments = QStringList() << SRCDIR "lackey/scripts/server.js" << QString::number(processes);
     QProcess producer;
     producer.setProcessChannelMode(QProcess::ForwardedChannels);
-#ifdef Q_WS_QWS
-    serverArguments << "-qws";
-#endif
     QList<QProcess*> consumers;
     producer.start("lackey/lackey", serverArguments);
     QVERIFY2(producer.waitForStarted(-1), qPrintable(producer.errorString()));
     QTest::qWait(2000);
     for (int i = 0; i < processes; ++i) {
        QStringList arguments = QStringList() << SRCDIR "lackey/scripts/client.js";
-#ifdef Q_WS_QWS
-       arguments << "-qws";
-#endif
         QProcess *p = new QProcess;
         p->setProcessChannelMode(QProcess::ForwardedChannels);
         consumers.append(p);
index dd0b0dc..0772852 100644 (file)
@@ -851,9 +851,6 @@ void tst_QGL::graphicsViewClipping()
     // Use Qt::Tool as fully decorated windows have a minimum width of 160 on Windows.
     view.setWindowFlags(view.windowFlags() | Qt::Tool);
     view.setBackgroundBrush(Qt::white);
-#ifdef Q_WS_QWS
-    view.setWindowFlags(Qt::FramelessWindowHint);
-#endif
     view.resize(2*size, 2*size);
 
     QGLWidget *viewport = new QGLWidget;
@@ -1036,9 +1033,6 @@ public:
 void tst_QGL::glWidgetRendering()
 {
     GLWidget w;
-#ifdef Q_WS_QWS
-    w.setWindowFlags(Qt::FramelessWindowHint);
-#endif
     w.resize(256, 128);
     w.show();
 
@@ -1276,9 +1270,6 @@ void tst_QGL::glFBOUseInGLWidget()
         QSKIP("QGLFramebufferObject not supported on this platform");
 
     FBOUseInGLWidget w;
-#ifdef Q_WS_QWS
-    w.setWindowFlags(Qt::FramelessWindowHint);
-#endif
     w.resize(100, 100);
     w.show();
 
@@ -1650,9 +1641,6 @@ protected:
 void tst_QGL::replaceClipping()
 {
     ReplaceClippingGLWidget glw;
-#ifdef Q_WS_QWS
-    glw.setWindowFlags(Qt::FramelessWindowHint);
-#endif
     glw.resize(300, 300);
     glw.show();
 
@@ -1764,9 +1752,6 @@ protected:
 void tst_QGL::clipTest()
 {
     ClipTestGLWidget glw;
-#ifdef Q_WS_QWS
-    glw.setWindowFlags(Qt::FramelessWindowHint);
-#endif
     glw.resize(220, 220);
     glw.show();
 
index 8dac4bd..ab18033 100644 (file)
@@ -2264,9 +2264,6 @@ void tst_QGraphicsItem::zValue()
     QVERIFY(QTest::qWaitForWindowExposed(&view));
 
     QApplication::processEvents();
-#ifdef Q_WS_QWS
-    QApplication::sendPostedEvents(); //glib workaround
-#endif
 
     QTRY_VERIFY(!_paintedItems.isEmpty());
     QVERIFY((_paintedItems.size() % 4) == 0);
index 7a8e6f1..b731bec 100644 (file)
@@ -2951,8 +2951,8 @@ protected:
 
 void tst_QGraphicsWidget::respectHFW()
 {
-#if defined(Q_OS_WINCE) || defined(Q_OS_MAC) || defined(Q_WS_QWS)
-    qDebug("This test is platform dependent, it fails on wince, mac and qws. Please fix.");
+#if defined(Q_OS_WINCE) || defined(Q_OS_MAC)
+    QSKIP("This test is platform dependent, it fails on wince and mac. Please fix.");
 #else
     QGraphicsScene scene;
     HFWWidget *window = new HFWWidget;
index 6f4faf8..b212a6f 100644 (file)
@@ -896,9 +896,6 @@ void tst_QAbstractItemView::dragAndDrop()
 {
     // From Task 137729
 
-#ifdef Q_WS_QWS
-    QSKIP("Embedded drag-and-drop not good enough yet...");
-#endif
 
     const int attempts = 10;
     int successes = 0;
@@ -937,9 +934,6 @@ void tst_QAbstractItemView::dragAndDrop()
 
 void tst_QAbstractItemView::dragAndDropOnChild()
 {
-#ifdef Q_WS_QWS
-    QSKIP("Embedded drag-and-drop not good enough yet...");
-#endif
 
     const int attempts = 10;
     int successes = 0;
index 2e126f4..e2e5fac 100644 (file)
@@ -468,9 +468,6 @@ void tst_QItemDelegate::font()
     table.setItem(0, 0, item);
 
     QApplication::processEvents();
-#ifdef Q_WS_QWS
-    QApplication::sendPostedEvents(); //glib workaround
-#endif
 
     QTRY_COMPARE(delegate->displayText, item->text());
     if (properties.contains("italic")) {
index d4531bc..b9d2596 100644 (file)
@@ -148,9 +148,6 @@ void tst_QDesktopWidget::screenNumberForQPoint()
     int screen;
     screen = desktopWidget->screenNumber(allScreens.topLeft() - QPoint(1, 1));
 
-#ifdef Q_WS_QWS
-    QEXPECT_FAIL("", "Task 151710", Abort);
-#endif
     QVERIFY(screen >= 0 && screen < desktopWidget->numScreens());
     screen = desktopWidget->screenNumber(allScreens.topRight() + QPoint(1, 1));
     QVERIFY(screen >= 0 && screen < desktopWidget->numScreens());
index 85c8a4a..12cdbf5 100644 (file)
@@ -750,13 +750,6 @@ void tst_QStyleSheetStyle::focusColors()
     widgets << combobox;
     widgets << new QLabel("TESTING TESTING");
 
-#ifdef Q_WS_QWS
-    // QWS has its own special focus logic which is slightly different
-    // and I don't dare change it at this point, because someone will
-    // be relying on it. It means that setFocus() on a NoFocus widget (i.e.
-    // a QLabel) will not work before the window is activated.
-    widgets[2]->setFocusPolicy(Qt::StrongFocus);
-#endif
 
     foreach (QWidget *widget, widgets) {
         QDialog frame;
@@ -826,10 +819,6 @@ void tst_QStyleSheetStyle::hoverColors()
         frame.setLayout(layout);
 
         frame.show();
-#ifdef Q_WS_QWS
-//QWS does not implement enter/leave when windows are shown underneath the cursor
-        QCursor::setPos(QPoint(0,0));
-#endif
 
         QApplication::setActiveWindow(&frame);
         QVERIFY(QTest::qWaitForWindowActive(&frame));
index a6880bc..dd15080 100644 (file)
@@ -513,9 +513,6 @@ void tst_QMdiArea::subWindowActivated2()
         QEXPECT_FAIL("", "showMinimized doesn't really minimize if you don't have access to the server", Abort);
 #endif
     QVERIFY(QTest::qWaitForWindowExposed(&mdiArea));
-#if defined(Q_WS_QWS)
-    QEXPECT_FAIL("", "task 168682", Abort);
-#endif
 #ifdef Q_OS_WINCE
     QSKIP("Not fixed yet. See Task 197453");
 #endif
index 97c740b..f676e88 100644 (file)
@@ -134,9 +134,6 @@ void tst_QToolButton::triggered()
     tb.setMenu(menu);
     tb.setDefaultAction(def);
 
-#ifdef Q_WS_QWS
-    QApplication::processEvents(); //wait for the window system to show the tool button
-#endif
 
     def->trigger();
     QCOMPARE(spy.count(),1);