You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-03 23:50:33 +02:00
24 lines
373 B
C++
Executable File
24 lines
373 B
C++
Executable File
#ifndef WINDOW_H
|
|
#define WINDOW_H
|
|
|
|
#include <stable.h>
|
|
|
|
namespace jop {
|
|
|
|
class Window : public QQuickView {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
Window();
|
|
void showPage(const QString& pageName);
|
|
QVariant callQml(const QString& name, const QVariantList& args = QVariantList());
|
|
void emitSignal(const QString& name, const QVariantList& args = QVariantList());
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // WINDOW_H
|