2020-08-13 21:08:54 +02:00
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: 2014 Marco Martin <mart@kde.org>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
*/
|
2019-11-10 11:06:10 +01:00
|
|
|
#ifndef DIALOGQMLTEST_H
|
|
|
|
#define DIALOGQMLTEST_H
|
2014-09-16 18:52:01 +02:00
|
|
|
|
2019-12-14 16:58:05 +01:00
|
|
|
#include <QTest>
|
2014-09-16 18:52:01 +02:00
|
|
|
|
|
|
|
#include "plasmaquick/dialog.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-26 09:55:25 +02:00
|
|
|
class DialogQmlTest : public QObject
|
2014-09-16 18:52:01 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
2014-09-26 09:55:25 +02:00
|
|
|
void loadAndShow();
|
2014-09-16 18:52:01 +02:00
|
|
|
private:
|
2014-09-26 09:55:25 +02:00
|
|
|
bool m_dialogShown;
|
|
|
|
|
2014-09-16 18:52:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|