New version. Update home page link in About box.
[dorian] / librarydialog.h
index bef71fc..a29a093 100644 (file)
@@ -4,17 +4,21 @@
 #include <QDialog>
 #include <QString>
 #include <QModelIndexList>
-#include <QMainWindow>
 
-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