]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/label/label.h
Backport from BEE
[bacula/bacula] / bacula / src / qt-console / label / label.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2007-2014 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from many
7    others, a complete list can be found in the file AUTHORS.
8
9    You may use this file and others of this release according to the
10    license defined in the LICENSE file, which includes the Affero General
11    Public License, v3.0 ("AGPLv3") and some additional permissions and
12    terms pursuant to its AGPLv3 Section 7.
13
14    Bacula® is a registered trademark of Kern Sibbald.
15 */
16 /*
17  * Kern Sibbald, February MMVII
18  */
19
20 #ifndef _LABEL_H_
21 #define _LABEL_H_
22
23 #include <QtGui>
24 #include "ui_label.h"
25 #include "console.h"
26 #include "pages.h"
27
28 class labelPage : public Pages, public Ui::labelForm
29 {
30    Q_OBJECT
31
32 public:
33    labelPage();
34    labelPage(QString &defString);
35    void showPage(QString &defString);
36
37 private slots:
38    void okButtonPushed();
39    void cancelButtonPushed();
40    void automountOnButtonPushed();
41    void automountOffButtonPushed();
42
43 private:
44    int m_conn;
45 };
46
47 #endif /* _LABEL_H_ */