1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-03 23:50:33 +02:00
Files
joplin/QtClient/JoplinQtClient/window.h

24 lines
373 B
C
Raw Normal View History

2017-01-11 00:28:51 +01:00
#ifndef WINDOW_H
#define WINDOW_H
#include <stable.h>
namespace jop {
class Window : public QQuickView {
Q_OBJECT
public:
Window();
void showPage(const QString& pageName);
2017-01-31 21:20:13 +00:00
QVariant callQml(const QString& name, const QVariantList& args = QVariantList());
void emitSignal(const QString& name, const QVariantList& args = QVariantList());
2017-01-11 00:28:51 +01:00
};
}
#endif // WINDOW_H