1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00
joplin/QtClient/JoplinQtClient/application.h
Laurent Cozic 40e9b82137 Laod note
2016-12-14 21:50:26 +00:00

49 lines
849 B
C++
Executable File

#ifndef APPLICATION_H
#define APPLICATION_H
#include <stable.h>
#include "database.h"
#include "services/folderservice.h"
#include "services/noteservice.h"
#include "models/foldermodel.h"
#include "models/notecollection.h"
#include "services/notecache.h"
#include "models/notemodel.h"
#include "models/qmlnote.h"
namespace jop {
class Application : public QGuiApplication {
Q_OBJECT
public:
Application(int &argc, char **argv);
private:
QQuickView view_;
Database db_;
FolderService folderService_;
NoteCollection noteCollection_;
NoteService noteService_;
FolderModel folderModel_;
NoteModel noteModel_;
int selectedFolderId() const;
int selectedNoteId() const;
NoteCache noteCache_;
QmlNote selectedQmlNote_;
public slots:
void view_currentFolderChanged();
void view_currentNoteChanged();
};
}
#endif // APPLICATION_H