]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/qt-console/restore/restore.h
Update description of PAGES and changes to TODO. Also removed spacers
[bacula/bacula] / bacula / src / qt-console / restore / restore.h
index b1b43f495d34c3f903f7faa5438cb0bc03518db6..c4eabc69aade1c0cea87c77bc3c39649f10a21e4 100644 (file)
@@ -4,7 +4,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2000-2007 Free Software Foundation Europe e.V.
+   Copyright (C) 2007-2007 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
  */
 
 #include <QtGui>
+#include "pages.h"
 #include "ui_brestore.h"
 #include "ui_restore.h"
 #include "ui_prerestore.h"
 
-class Console;
-
-class prerestoreDialog : public QDialog, public Ui::prerestoreForm
+/*
+ * The pre-restore dialog selects the Job/Client to be restored
+ * It really could use considerable enhancement.
+ */
+class prerestorePage : public Pages, public Ui::prerestoreForm
 {
    Q_OBJECT 
 
 public:
-   prerestoreDialog(Console *parent);
+   prerestorePage();
 
-public slots:
+private slots:
+   void okButtonPushed();
+   void cancelButtonPushed();
+   void job_name_change(int index);
 
 private:
-
 };
 
-class restoreDialog : public QDialog, public Ui::restoreForm
+/*  
+ * The restore dialog is brought up once we are in the Bacula
+ * restore tree routines.  It handles putting up a GUI tree
+ * representation of the files to be restored.
+ */
+class restorePage : public Pages, public Ui::restoreForm
 {
    Q_OBJECT 
 
 public:
-   restoreDialog(Console *parent);
-
-public slots:
+   restorePage();
+   void fillDirectory();
+   char *get_cwd();
+   bool cwd(const char *);
+
+private slots:
+   void okButtonPushed();
+   void cancelButtonPushed();
+   void fileDoubleClicked(QTreeWidgetItem *item, int column);
+   void directoryItemChanged(QTreeWidgetItem *, QTreeWidgetItem *);
+   void upButtonPushed();
+   void unmarkButtonPushed();
+   void markButtonPushed();
+   void addDirectory(QString &);
 
 private:
-
+   QString m_cwd;
+   QHash<QString, QTreeWidgetItem *> m_dirPaths;
+   QHash<QTreeWidgetItem *,QString> m_dirTreeItems;
 };
 
 
-class bRestore : public QWidget, public Ui::bRestoreForm
+class bRestore : public Pages, public Ui::bRestoreForm
 {
    Q_OBJECT 
 
 public:
-   bRestore(QStackedWidget *parent);
+   bRestore();
+   ~bRestore();
 
 public slots:
 
@@ -81,6 +105,4 @@ private:
 
 };
 
-
-
 #endif /* _RESTORE_H_ */