X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=mainwindow.h;h=1f50c41e64ac0dd091458c24b0f740bc74c7335a;hb=fd9529c2d77fc08c417aec73136cc0f279a8b363;hp=327b334ee97241049aefd753bf397f5ee9886955;hpb=145f1e2a34ad1c0b74f5b51692dc8b38fd0332ec;p=dorian diff --git a/mainwindow.h b/mainwindow.h index 327b334..1f50c41 100755 --- a/mainwindow.h +++ b/mainwindow.h @@ -1,8 +1,10 @@ #ifndef MAINWINDOW_H #define MAINWINDOW_H -#include -#include "bookfinder.h" +#include +#include + +#include "adopterwindow.h" class QString; class QModelIndex; @@ -11,18 +13,20 @@ class BookView; class Book; class FullScreenWindow; class Progress; +class ProgressDialog; +class TranslucentButton; -class MainWindow: public QMainWindow +class MainWindow: public AdopterWindow { Q_OBJECT public: MainWindow(QWidget *parent = 0); - ~MainWindow(); + void initialize(); public slots: void showLibrary(); - void showInfo(); + void rotate(); void showSettings(); void showDevTools(); void showBookmarks(); @@ -32,42 +36,44 @@ public slots: void onSettingsChanged(const QString &key); void onPartLoadStart(); void onPartLoadEnd(int index); - void onAddBookmark(); + void onAddBookmark(const QString ¬e); void onGoToBookmark(int index); void showChapters(); void onGoToChapter(int index); + void about(); + void goToNextPage(); + void goToPreviousPage(); + void onBeginUpgrade(int total); + void onUpgrading(const QString &book); + void onEndUpgrade(); + void onBeginLoad(int total); + void onLoading(const QString &book); + void onEndLoad(); protected: - void closeEvent(QCloseEvent *event); void timerEvent(QTimerEvent *event); - void resizeEvent(QResizeEvent *event); private: void setCurrentBook(const QModelIndex ¤t); - QAction *addToolBarAction(const QObject *receiver, const char *member, - const QString &name); - void grabZoomKeys(); BookView *view; QAction *settingsAction; QAction *libraryAction; - QAction *infoAction; + QAction *rotateAction; QAction *devToolsAction; QAction *bookmarksAction; QAction *fullScreenAction; QAction *forwardAction; QAction *backwardAction; - QAction *previousAction; - QAction *nextAction; QAction *chaptersAction; - QToolBar *toolBar; QDialog *settings; DevTools *devTools; QModelIndex mCurrent; FullScreenWindow *fullScreenWindow; int preventBlankingTimer; - BookFinder *bookFinder; - BookFinderThread bookFinderThread; - Progress *progress; + Progress *prog; + TranslucentButton *prev; + TranslucentButton *next; + ProgressDialog *libraryProgress; }; #endif // MAINWINDOW_H