]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/select/textinput.h
Change copyright as per agreement with FSFE
[bacula/bacula] / bacula / src / qt-console / select / textinput.h
1 /*
2    Bacula(R) - The Network Backup Solution
3
4    Copyright (C) 2000-2016 Kern Sibbald
5
6    The original author of Bacula is Kern Sibbald, with contributions
7    from many 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    This notice must be preserved when any source code is 
15    conveyed and/or propagated.
16
17    Bacula(R) is a registered trademark of Kern Sibbald.
18 */
19
20 #ifndef _TEXTENTRY_H_
21 #define _TEXTENTRY_H_
22
23 #include <QtGui>
24 #include "ui_textinput.h"
25 #include "console.h"
26
27 class textInputDialog : public QDialog, public Ui::textInputForm
28 {
29    Q_OBJECT 
30
31 public:
32    textInputDialog(Console *console, int conn);
33
34 public slots:
35    void accept();
36    void reject();
37
38 private:
39    Console *m_console;
40    int m_conn;
41 };
42
43 #endif /* _TEXTENTRY_H_ */