From d22769c728ff5b705acdc87c8c8ed20602ad48e3 Mon Sep 17 00:00:00 2001 From: Laszlo Agocs Date: Tue, 9 Sep 2014 14:57:31 +0200 Subject: Beautify the qquickviewcomparison example Remove the red rectangle. Change the background color to a gradient. (taken from rendercontrol) Disable the transparency checkbox everywhere but Linux since it usually will not work. (too much hassle with platform specifics like frameless windows, etc.) Change-Id: I21488386cddc5841a2bdc8104e7abb197b075b0d Reviewed-by: Paul Olav Tvete --- examples/quick/quickwidgets/qquickviewcomparison/mainwindow.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'examples/quick/quickwidgets/qquickviewcomparison/mainwindow.cpp') diff --git a/examples/quick/quickwidgets/qquickviewcomparison/mainwindow.cpp b/examples/quick/quickwidgets/qquickviewcomparison/mainwindow.cpp index 51b2a27d44..9ff7f1beb4 100644 --- a/examples/quick/quickwidgets/qquickviewcomparison/mainwindow.cpp +++ b/examples/quick/quickwidgets/qquickviewcomparison/mainwindow.cpp @@ -105,8 +105,10 @@ MainWindow::MainWindow() m_checkboxTransparent = new QCheckBox(tr("Transparent background in QQuickWidget")); connect(m_radioWidget, &QCheckBox::toggled, m_checkboxTransparent, &QWidget::setEnabled); +#ifdef Q_OS_LINUX connect(m_checkboxTransparent, &QCheckBox::toggled, this, &MainWindow::onTransparentChanged); layout->addWidget(m_checkboxTransparent); +#endif setLayout(layout); @@ -184,7 +186,7 @@ void MainWindow::updateView() if (m_currentRootObject) { m_currentRootObject->setProperty("currentText", text); m_currentRootObject->setProperty("multisample", m_checkboxMultiSample->isChecked()); - m_currentRootObject->setProperty("color", QColor(m_transparent ? Qt::transparent : Qt::darkCyan)); + m_currentRootObject->setProperty("translucency", m_transparent); } m_overlayLabel->raise(); -- cgit v1.2.3