]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/qt-console/restore/restore.h
Change copyright as per agreement with FSFE
[bacula/bacula] / bacula / src / qt-console / restore / restore.h
index 2a8fa5b49ffbe52a623bee9c10d81e5a2adc32e0..7ece0af40059afa1db1cc113f4a4ee5ecd493961 100644 (file)
@@ -2,40 +2,52 @@
 #define _RESTORE_H_
 
 /*
-   Bacula® - The Network Backup Solution
-
-   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.
-   This program is Free Software; you can redistribute it and/or
-   modify it under the terms of version three of the GNU Affero General Public
-   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
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-   General Public License for more details.
-
-   You should have received a copy of the GNU Affero General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.
-
-   Bacula® is a registered trademark of Kern Sibbald.
-   The licensor of Bacula is the Free Software Foundation Europe
-   (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
-   Switzerland, email:ftf@fsfeurope.org.
+   Bacula(R) - The Network Backup Solution
+
+   Copyright (C) 2000-2016 Kern Sibbald
+
+   The original author of Bacula is Kern Sibbald, with contributions
+   from many others, a complete list can be found in the file AUTHORS.
+
+   You may use this file and others of this release according to the
+   license defined in the LICENSE file, which includes the Affero General
+   Public License, v3.0 ("AGPLv3") and some additional permissions and
+   terms pursuant to its AGPLv3 Section 7.
+
+   This notice must be preserved when any source code is 
+   conveyed and/or propagated.
+
+   Bacula(R) is a registered trademark of Kern Sibbald.
 */
 /*
- *   Version $Id$
  *
  *  Kern Sibbald, February 2007
  */
 
+#include <stdint.h>
+#include <sys/types.h>     /* Needed for some systems */
 #include <QtGui>
 #include "pages.h"
+#include "ui_runrestore.h"
+
+class bRestoreTable : public QTableWidget
+{
+   Q_OBJECT 
+private:
+   QPoint dragStartPosition;
+public:
+   bRestoreTable(QWidget *parent)
+      : QTableWidget(parent)
+   {
+   }
+   void mousePressEvent(QMouseEvent *event);
+   void mouseMoveEvent(QMouseEvent *event);
+
+   void dragEnterEvent(QDragEnterEvent *event);
+   void dragMoveEvent(QDragMoveEvent *event);
+   void dropEvent(QDropEvent *event);
+};
+
 #include "ui_brestore.h"
 #include "ui_restore.h"
 #include "ui_prerestore.h"
@@ -113,7 +125,6 @@ private:
    QString m_splitText;
 };
 
-
 class bRestore : public Pages, public Ui::bRestoreForm
 {
    Q_OBJECT 
@@ -122,18 +133,48 @@ public:
    bRestore();
    ~bRestore();
    void PgSeltreeWidgetClicked();
+   QString m_client;
+   QString m_jobids;
+   void get_info_from_selection(QStringList &fileids, QStringList &jobids,
+                                QStringList &dirids, QStringList &fileindexes);
 
 public slots:
    void setClient();
    void setJob();
-
-
+   void showInfoForFile(QTableWidgetItem *);
+   void applyLocation();
+   void clearVersions(QTableWidgetItem *);
+   void clearRestoreList();
+   void runRestore();
+   void refreshView();
 private:
-   QString m_client;
+   QString m_path;
+   int64_t m_pathid;
+   QTableWidgetItem *m_current;
    void setupPage();
    bool m_populated;
-   void displayFiles(QString path);
-   void displayFiles(uint64_t pathid);
+   void displayFiles(int64_t pathid, QString path);
+   void displayFileVersion(QString pathid, QString fnid, 
+                           QString client, QString filename);
+};
+
+class bRunRestore : public QDialog, public Ui::bRunRestoreForm
+{
+   Q_OBJECT 
+private:
+   bRestore *brestore;
+   QStringList m_fileids, m_jobids, m_dirids, m_findexes;
+
+public:
+   bRunRestore(bRestore *parent);
+   ~bRunRestore() {}
+   void computeVolumeList();
+   int64_t runRestore(QString tablename);
+
+public slots:
+   void useRegexp();
+   void UFRcb();
+   void computeRestore();
 };
 
 #endif /* _RESTORE_H_ */