mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
61 lines
1.2 KiB
C++
Executable File
61 lines
1.2 KiB
C++
Executable File
#ifndef APPLICATION_H
|
|
#define APPLICATION_H
|
|
|
|
#include <stable.h>
|
|
|
|
#include "database.h"
|
|
#include "models/foldermodel.h"
|
|
#include "models/notecollection.h"
|
|
#include "models/notemodel.h"
|
|
#include "models/qmlnote.h"
|
|
#include "webapi.h"
|
|
#include "synchronizer.h"
|
|
|
|
namespace jop {
|
|
|
|
class Application : public QGuiApplication {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
Application(int &argc, char **argv);
|
|
|
|
private:
|
|
|
|
QQuickView view_;
|
|
Database& db_;
|
|
NoteCollection noteCollection_;
|
|
FolderModel folderModel_;
|
|
NoteModel noteModel_;
|
|
QString selectedFolderId() const;
|
|
QString selectedNoteId() const;
|
|
QmlNote selectedQmlNote_;
|
|
WebApi api_;
|
|
Synchronizer synchronizer_;
|
|
QTimer synchronizerTimer_;
|
|
|
|
void afterSessionInitialization();
|
|
|
|
public slots:
|
|
|
|
void view_currentFolderChanged();
|
|
void view_currentNoteChanged();
|
|
void view_addNoteButtonClicked();
|
|
void view_addFolderButtonClicked();
|
|
void view_syncButtonClicked();
|
|
|
|
void api_requestDone(const QJsonObject& response, const QString& tag);
|
|
|
|
void dispatcher_folderCreated(const QString& folderId);
|
|
void dispatcher_folderUpdated(const QString& folderId);
|
|
void dispatcher_folderDeleted(const QString& folderId);
|
|
|
|
void synchronizerTimer_timeout();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // APPLICATION_H
|