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. *
|
|
|
|
*******************************************************************************/
|
|
|
|
#ifndef DIALOGTEST_H
|
|
|
|
#define DIALOGTEST_H
|
|
|
|
|
|
|
|
#include <QtTest/QtTest>
|
|
|
|
#include <QQuickView>
|
|
|
|
#include <QQuickItem>
|
|
|
|
|
|
|
|
#include "plasmaquick/dialog.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-26 09:55:25 +02:00
|
|
|
class DialogNativeTest : public QObject
|
2014-09-16 18:52:01 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public Q_SLOTS:
|
|
|
|
void initTestCase();
|
|
|
|
void cleanupTestCase();
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
2014-10-11 20:58:34 +02:00
|
|
|
void size();
|
2014-09-16 18:52:01 +02:00
|
|
|
void position();
|
|
|
|
|
|
|
|
private:
|
|
|
|
QQuickView *m_panel;
|
2014-09-23 19:11:29 +02:00
|
|
|
QQuickView *m_panel2;
|
2016-12-25 12:15:35 +01:00
|
|
|
QQuickView *m_panel3;
|
2014-09-16 18:52:01 +02:00
|
|
|
QQuickItem *m_content;
|
2016-12-25 12:15:35 +01:00
|
|
|
QQuickItem *m_content2;
|
2014-09-16 18:52:01 +02:00
|
|
|
PlasmaQuick::Dialog *m_dialog;
|
2014-09-30 18:12:26 +02:00
|
|
|
QDir m_cacheDir;
|
2014-09-16 18:52:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|