2014-09-16 18:52:01 +02:00
|
|
|
/********************************************************************************
|
|
|
|
* Copyright 2014 Marco Martin <mart@kde.org> *
|
|
|
|
* *
|
|
|
|
* This library is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU Library General Public *
|
|
|
|
* License as published by the Free Software Foundation; either *
|
|
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This library is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
|
|
|
|
* Library General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Library General Public License *
|
|
|
|
* along with this library; see the file COPYING.LIB. If not, write to *
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, *
|
|
|
|
* Boston, MA 02110-1301, USA. *
|
|
|
|
*********************************************************************************/
|
|
|
|
|
2014-09-26 09:55:25 +02:00
|
|
|
#include "dialognativetest.h"
|
2014-09-16 18:52:01 +02:00
|
|
|
#include <KWindowSystem>
|
|
|
|
|
|
|
|
|
2014-09-26 09:55:25 +02:00
|
|
|
void DialogNativeTest::initTestCase()
|
2014-09-16 18:52:01 +02:00
|
|
|
{
|
2014-09-30 18:12:26 +02:00
|
|
|
QStandardPaths::enableTestMode(true);
|
|
|
|
m_cacheDir = QDir(QStandardPaths::writableLocation(QStandardPaths::CacheLocation));
|
|
|
|
m_cacheDir.removeRecursively();
|
|
|
|
|
2014-09-16 18:52:01 +02:00
|
|
|
m_dialog = new PlasmaQuick::Dialog;
|
2014-10-11 20:58:34 +02:00
|
|
|
m_dialog->setLocation(Plasma::Types::TopEdge);
|
2014-09-16 18:52:01 +02:00
|
|
|
|
|
|
|
m_panel = new QQuickView;
|
|
|
|
m_panel->setGeometry(0, 0, 50, 50);
|
|
|
|
m_panel->setFlags(Qt::FramelessWindowHint|Qt::WindowDoesNotAcceptFocus);
|
|
|
|
|
2014-09-23 19:11:29 +02:00
|
|
|
m_panel2 = new QQuickView;
|
|
|
|
m_panel2->setGeometry(100, 0, 50, 50);
|
|
|
|
m_panel2->setFlags(Qt::FramelessWindowHint|Qt::WindowDoesNotAcceptFocus);
|
|
|
|
|
2014-09-16 18:52:01 +02:00
|
|
|
m_content = new QQuickItem;
|
|
|
|
m_content->setWidth(100);
|
|
|
|
m_content->setHeight(100);
|
|
|
|
m_dialog->setMainItem(m_content);
|
|
|
|
|
|
|
|
m_panel->show();
|
2014-09-23 19:11:29 +02:00
|
|
|
m_panel2->show();
|
2014-09-16 18:52:01 +02:00
|
|
|
KWindowSystem::setType(m_panel->winId(), NET::Dock);
|
|
|
|
m_dialog->setVisualParent(m_panel->contentItem());
|
|
|
|
m_dialog->show();
|
|
|
|
}
|
|
|
|
|
2014-09-26 09:55:25 +02:00
|
|
|
void DialogNativeTest::cleanupTestCase()
|
2014-09-16 18:52:01 +02:00
|
|
|
{
|
|
|
|
delete m_dialog;
|
|
|
|
delete m_panel;
|
2014-09-23 19:11:29 +02:00
|
|
|
delete m_panel2;
|
2014-09-30 18:12:26 +02:00
|
|
|
|
|
|
|
m_cacheDir.removeRecursively();
|
2014-09-16 18:52:01 +02:00
|
|
|
}
|
|
|
|
|
2014-10-11 20:58:34 +02:00
|
|
|
void DialogNativeTest::size()
|
|
|
|
{
|
|
|
|
QTest::qWaitForWindowExposed(m_dialog);
|
|
|
|
|
|
|
|
QCOMPARE(m_content->width(), (qreal)100);
|
|
|
|
QCOMPARE(m_content->height(), (qreal)100);
|
2014-10-22 18:42:28 +02:00
|
|
|
QCOMPARE(m_dialog->width(), 108);
|
|
|
|
QCOMPARE(m_dialog->height(), 108);
|
2014-10-11 20:58:34 +02:00
|
|
|
|
2014-10-22 18:42:28 +02:00
|
|
|
QCOMPARE(m_dialog->margins()->property("left").value<qreal>(), (qreal)4.0);
|
|
|
|
QCOMPARE(m_dialog->margins()->property("top").value<qreal>(), (qreal)4.0);
|
2014-10-11 20:58:34 +02:00
|
|
|
QCOMPARE(m_dialog->margins()->property("right").value<qreal>(), (qreal)4.0);
|
|
|
|
QCOMPARE(m_dialog->margins()->property("bottom").value<qreal>(), (qreal)4.0);
|
|
|
|
}
|
|
|
|
|
2014-09-26 09:55:25 +02:00
|
|
|
void DialogNativeTest::position()
|
2014-09-16 18:52:01 +02:00
|
|
|
{
|
|
|
|
QTest::qWaitForWindowExposed(m_dialog);
|
|
|
|
|
|
|
|
QCOMPARE(m_dialog->x(), 0);
|
|
|
|
QCOMPARE(m_dialog->y(), 49);
|
2014-09-23 19:11:29 +02:00
|
|
|
|
2015-01-14 16:37:10 +01:00
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 3, 0)
|
2014-09-23 19:11:29 +02:00
|
|
|
m_dialog->setVisualParent(m_panel2->contentItem());
|
2014-10-11 20:58:34 +02:00
|
|
|
QCOMPARE(m_dialog->x(), 71);
|
2014-09-23 19:11:29 +02:00
|
|
|
QCOMPARE(m_dialog->y(), 49);
|
2015-01-14 16:37:10 +01:00
|
|
|
#endif
|
2014-09-16 18:52:01 +02:00
|
|
|
}
|
|
|
|
|
2014-09-26 09:55:25 +02:00
|
|
|
QTEST_MAIN(DialogNativeTest)
|