]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/qt-console/label/label.h
Convert to pure GPL v2 license.
[bacula/bacula] / bacula / src / qt-console / label / label.h
index d06cf40aa3dbf66585f0528f7f4bf3004c990799..202298bc3cedcab017f1d1ec87d8be328597a74c 100644 (file)
@@ -1,3 +1,33 @@
+/*
+   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 two of the GNU 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 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 John Walker.
+   The licensor of Bacula is the Free Software Foundation Europe
+   (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
+   Switzerland, email:ftf@fsfeurope.org.
+*/
+/* 
+ * Kern Sibbald, February MMVII
+ */
 
 #ifndef _LABEL_H_
 #define _LABEL_H_
 #include <QtGui>
 #include "ui_label.h"
 #include "console.h"
+#include "pages.h"
 
-class labelDialog : public QDialog, public Ui::labelForm
+class labelPage : public Pages, public Ui::labelForm
 {
    Q_OBJECT 
 
 public:
-   labelDialog(Console *console);
+   labelPage();
+   labelPage(QString &defString);
+   void showPage(QString &defString);
 
-public slots:
-   void accept();
-   void reject();
+private slots:
+   void okButtonPushed();
+   void cancelButtonPushed();
+   void automountOnButtonPushed();
+   void automountOffButtonPushed();
 
 private:
-
 };
 
 #endif /* _LABEL_H_ */