X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=librarydialog.h;h=a29a0930203fe4f279d58c1bde0adae54a339c66;hb=d651145f54a754e135df407c56dc114c80e2bd52;hp=bef71fc5e2547944be159002af8cce03976be4d5;hpb=9f29e40a91e0adf35bee94726c5e8c925fed059f;p=dorian diff --git a/librarydialog.h b/librarydialog.h index bef71fc..a29a093 100644 --- a/librarydialog.h +++ b/librarydialog.h @@ -4,17 +4,21 @@ #include #include #include -#include -class QListView; +#include "listwindow.h" + class QPushButton; class QModelIndex; class QCloseEvent; +class ProgressDialog; class Book; class InfoWindow; class SortedLibrary; +class QAction; +class SearchDialog; -class LibraryDialog: public QMainWindow +/** Manage library. */ +class LibraryDialog: public ListWindow { Q_OBJECT @@ -23,31 +27,24 @@ public: public slots: void onAdd(); -#ifndef Q_WS_MAEMO_5 - void onRemove(); - void onDetails(); - void onRead(); - void onItemSelectionChanged(); -#endif // Q_WS_MAEMO_5 + void onAddFolder(); void onBookAdded(); void onItemActivated(const QModelIndex &index); - void onCurrentBookChanged(); - -protected: - void closeEvent(QCloseEvent *event); + void onAddFromFolder(const QString &path); + void onAddFromFolderDone(int added); + void onSearch(); + void showSearchResults(); + void onSortByAuthor(); + void onSortByTitle(); private: - QString createItemText(const Book *book); + QString createItemText(Book *book); void setSelected(const QModelIndex &index); - QModelIndex selected() const; - QListView *list; SortedLibrary *sortedLibrary; -#ifndef Q_WS_MAEMO_5 - QPushButton *detailsButton; - QPushButton *removeButton; - QPushButton *readButton; -#endif // Q_WS_MAEMO_5 - QPushButton *addButton; + ProgressDialog *progress; + QAction *sortByAuthor; + QAction *sortByTitle; + SearchDialog *searchDialog; }; #endif // LIBRARYDIALOG_H