]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/label/label.h
Convert to pure GPL v2 license.
[bacula/bacula] / bacula / src / qt-console / label / label.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2007-2007 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version two of the GNU General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23    Bacula® is a registered trademark of John Walker.
24    The licensor of Bacula is the Free Software Foundation Europe
25    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26    Switzerland, email:ftf@fsfeurope.org.
27 */
28 /* 
29  * Kern Sibbald, February MMVII
30  */
31
32 #ifndef _LABEL_H_
33 #define _LABEL_H_
34
35 #include <QtGui>
36 #include "ui_label.h"
37 #include "console.h"
38 #include "pages.h"
39
40 class labelPage : public Pages, public Ui::labelForm
41 {
42    Q_OBJECT 
43
44 public:
45    labelPage();
46    labelPage(QString &defString);
47    void showPage(QString &defString);
48
49 private slots:
50    void okButtonPushed();
51    void cancelButtonPushed();
52    void automountOnButtonPushed();
53    void automountOffButtonPushed();
54
55 private:
56 };
57
58 #endif /* _LABEL_H_ */