-
Friedemann Kleint authored
Change-Id: I7ccc0c601da5cebf1d36b3cd30de49fc27f07260 Reviewed-by:
Jake Petroules <jake.petroules@petroules.com> Reviewed-by:
Ivan Vizir <define-true-false@yandex.com> Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
c4ed7313
/****************************************************************************
**
** Copyright (C) 2013 Ivan Vizir <define-true-false@yandex.com>
** Contact: http://www.qt-project.org/legal
**
** This file is part of QtWinExtras in the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3.0 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU General Public License version 3.0 requirements will be
** met: http://www.gnu.org/copyleft/gpl.html.
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "examplewidget.h"
#include "ui_examplewidget.h"
#include <QWinFunctions>
#include <QWinCompositionStateChangeEvent>
#include <QWinThemeChangeEvent>
#include <QDebug>
#include <qt_windows.h>
ExampleWidget::ExampleWidget(QWidget *parent) :
QWidget(parent),
ui(new Ui::ExampleWidget)
{
ui->setupUi(this);
connect(ui->btnPeekDisallow, SIGNAL(clicked()), SLOT(onDisallowPeekClicked()));
connect(ui->btnPeekExclude, SIGNAL(clicked()), SLOT(onExcludeFromPeekClicked()));
connect(ui->radioFlipDefault, SIGNAL(clicked()), SLOT(onFlip3DPolicyChanged()));
connect(ui->radioFlipAbove, SIGNAL(clicked()), SLOT(onFlip3DPolicyChanged()));
connect(ui->radioFlipBelow, SIGNAL(clicked()), SLOT(onFlip3DPolicyChanged()));
connect(ui->btnFrameReset, SIGNAL(clicked()), SLOT(onResetGlassFrameClicked()));
connect(ui->frameTop, SIGNAL(valueChanged(int)), SLOT(onGlassMarginsChanged()));
connect(ui->frameRight, SIGNAL(valueChanged(int)), SLOT(onGlassMarginsChanged()));
connect(ui->frameBottom, SIGNAL(valueChanged(int)), SLOT(onGlassMarginsChanged()));
connect(ui->frameLeft, SIGNAL(valueChanged(int)), SLOT(onGlassMarginsChanged()));
}
ExampleWidget::~ExampleWidget()
{
7172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
delete ui;
}
void ExampleWidget::changeEvent(QEvent *e)
{
QWidget::changeEvent(e);
switch (e->type()) {
case QEvent::LanguageChange:
ui->retranslateUi(this);
break;
default:
break;
}
}
bool ExampleWidget::event(QEvent *e)
{
if (e->type() == QWinCompositionStateChangeEvent::eventType()) {
QWinCompositionStateChangeEvent *stateEvent = static_cast<QWinCompositionStateChangeEvent *>(e);
qDebug() << "Composition state change: " << stateEvent->isCompositionEnabled();
} else if (e->type() == QWinThemeChangeEvent::eventType()) {
qDebug() << "Theme change.";
}
return QWidget::event(e);
}
void ExampleWidget::onDisallowPeekClicked()
{
QWinExtras::setWindowDisallowPeek(this, ui->btnPeekDisallow->isChecked());
}
void ExampleWidget::onExcludeFromPeekClicked()
{
QWinExtras::setWindowExcludedFromPeek(this, ui->btnPeekExclude->isChecked());
}
void ExampleWidget::onFlip3DPolicyChanged()
{
QWinExtras::WindowFlip3DPolicy policy;
if (ui->radioFlipAbove->isChecked())
policy = QWinExtras::FlipExcludeAbove;
else if (ui->radioFlipBelow->isChecked())
policy = QWinExtras::FlipExcludeBelow;
else
policy = QWinExtras::FlipDefault;
QWinExtras::setWindowFlip3DPolicy(this, policy);
}
void ExampleWidget::onGlassMarginsChanged()
{
if (!QWinExtras::isCompositionEnabled())
return;
// what you see here is the only way to force widget to redraw itself
// so it actually redraws itself without caching and without any glitch
// but causes flickering :(
// and yes, update() and redraw() do nothing
if (!testAttribute(Qt::WA_NoSystemBackground)) {
QSize original = size();
QSize modified = original;
modified.setWidth(original.height() + 1);
resize(modified);
setAttribute(Qt::WA_NoSystemBackground);
QWinExtras::extendFrameIntoClientArea(this,
ui->frameTop->value(),
ui->frameRight->value(),
ui->frameBottom->value(),
141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
ui->frameLeft->value());
resize(original);
ui->groupBox_2->setAutoFillBackground(true);
ui->groupBox_3->setAutoFillBackground(true);
ui->groupBox_4->setAutoFillBackground(true);
} else {
QWinExtras::extendFrameIntoClientArea(this,
ui->frameLeft->value(),
ui->frameTop->value(),
ui->frameRight->value(),
ui->frameBottom->value());
}
}
void ExampleWidget::onResetGlassFrameClicked()
{
if (!testAttribute(Qt::WA_NoSystemBackground))
return;
ui->frameTop->setValue(0);
ui->frameRight->setValue(0);
ui->frameBottom->setValue(0);
ui->frameLeft->setValue(0);
QWinExtras::resetExtendedFrame(this);
setAttribute(Qt::WA_NoSystemBackground, false);
QSize original = size();
QSize modified = original;
modified.setHeight(original.height() + 1);
resize(modified);
ui->groupBox_2->setAutoFillBackground(false);
ui->groupBox_3->setAutoFillBackground(false);
ui->groupBox_4->setAutoFillBackground(false);
resize(original);
}