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

23 lines
290 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);
void emitSignal(const QString& name, const QVariantList& args = QVariantList());
2017-01-11 00:28:51 +01:00
};
}
#endif // WINDOW_H