updated web library with new style and features

added remote reading from iOS
This commit is contained in:
Luis Ángel San Martín
2014-07-29 17:40:00 +02:00
parent 83429af008
commit f916498510
76 changed files with 1077 additions and 628 deletions

View File

@ -119,6 +119,12 @@ public:
void pushPage(int page);
int topPage();
void clearFoldersPath();
int popFolder();
void pushFolder(int page);
int topFolder();
QStack<int> getFoldersPath();
private:
struct YACReaderSessionData {
@ -132,6 +138,7 @@ private:
qulonglong comicId;
QStack<int> navigationPath;
QStack<int> foldersPath;
Comic * comic;
};