]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/qt-console/restore/restore.h
Oops. When I changed the contents of the field earlier, I forgot to make this change
[bacula/bacula] / bacula / src / qt-console / restore / restore.h
index f952b530dfe5d2963fbeb6863aa89f12848a6d25..c70c9a9647b869a5dde00bae306af7d2e2d68f98 100644 (file)
@@ -10,8 +10,8 @@
    many others, a complete list can be found in the file AUTHORS.
    This program is Free Software; you can redistribute it and/or
    modify it under the terms of version two of the GNU General Public
-   License as published by the Free Software Foundation plus additions
-   that are listed in the file LICENSE.
+   License as published by the Free Software Foundation and included
+   in the file LICENSE.
 
    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of
 #include "ui_restore.h"
 #include "ui_prerestore.h"
 
+enum {
+   R_NONE,
+   R_JOBIDLIST,
+   R_JOBDATETIME
+};
+
 /*
  * The pre-restore dialog selects the Job/Client to be restored
  * It really could use considerable enhancement.
@@ -50,16 +56,23 @@ class prerestorePage : public Pages, public Ui::prerestoreForm
 
 public:
    prerestorePage();
+   prerestorePage(QString &data, unsigned int);
 
 private slots:
    void okButtonPushed();
    void cancelButtonPushed();
    void job_name_change(int index);
    void recentChanged(int);
-   void jobsRadioClicked(bool);
+   void jobRadioClicked(bool);
+   void jobidsRadioClicked(bool);
+   void jobIdEditFinished();
 
 private:
-   QString m_dtformat;
+   int jobdefsFromJob(QStringList &, QString &);
+   void buildPage();
+   bool checkJobIdList();
+   QString m_dataIn;
+   unsigned int m_dataInType;
 };
 
 /*  
@@ -73,6 +86,7 @@ class restorePage : public Pages, public Ui::restoreForm
 
 public:
    restorePage();
+   ~restorePage();
    void fillDirectory();
    char *get_cwd();
    bool cwd(const char *);
@@ -88,6 +102,8 @@ private slots:
    void addDirectory(QString &);
 
 private:
+   void writeSettings();
+   void readSettings();
    QString m_cwd;
    QHash<QString, QTreeWidgetItem *> m_dirPaths;
    QHash<QTreeWidgetItem *,QString> m_dirTreeItems;