Fix tracing. Fix restoring previous position.
[dorian] / librarydialog.h
index 1424ead..52b0deb 100644 (file)
@@ -5,15 +5,20 @@
 #include <QString>
 #include <QModelIndexList>
 
-class QMainWindow;
-class QListView;
+#include "listwindow.h"
+
+class ListView;
 class QPushButton;
 class QModelIndex;
+class QCloseEvent;
+class ProgressDialog;
 class Book;
 class InfoWindow;
 class SortedLibrary;
+class SearchDialog;
 
-class LibraryDialog: public QDialog
+/** Manage library. */
+class LibraryDialog: public ListWindow
 {
     Q_OBJECT
 
@@ -22,28 +27,28 @@ public:
 
 public slots:
     void onAdd();
+    void onAddFolder();
 #ifndef Q_WS_MAEMO_5
     void onRemove();
     void onDetails();
     void onRead();
-    void onItemSelectionChanged();
 #endif // Q_WS_MAEMO_5
     void onBookAdded();
     void onItemActivated(const QModelIndex &index);
     void onCurrentBookChanged();
+    void onAddFromFolder(const QString &path);
+    void onAddFromFolderDone(int added);
+    void onSearch();
+    void showSearchResults();
 
 private:
     QString createItemText(const Book *book);
     void setSelected(const QModelIndex &index);
     QModelIndex selected() const;
-    QListView *list;
+    ListView *list;
     SortedLibrary *sortedLibrary;
-#ifndef Q_WS_MAEMO_5
-    QPushButton *detailsButton;
-    QPushButton *removeButton;
-    QPushButton *readButton;
-#endif // Q_WS_MAEMO_5
-    QPushButton *addButton;
+    ProgressDialog *progress;
+    SearchDialog *searchDialog;
 };
 
 #endif // LIBRARYDIALOG_H