]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/select/textinput.h
Implement .bvfs_versions command to display all file versions for a client
[bacula/bacula] / bacula / src / qt-console / select / textinput.h
1
2 #ifndef _TEXTENTRY_H_
3 #define _TEXTENTRY_H_
4
5 #include <QtGui>
6 #include "ui_textinput.h"
7 #include "console.h"
8
9 class textInputDialog : public QDialog, public Ui::textInputForm
10 {
11    Q_OBJECT 
12
13 public:
14    textInputDialog(Console *console, int conn);
15
16 public slots:
17    void accept();
18    void reject();
19
20 private:
21    Console *m_console;
22    int m_conn;
23 };
24
25 #endif /* _TEXTENTRY_H_ */