]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/console/console.h
Update
[bacula/bacula] / bacula / src / qt-console / console / console.h
1
2 #ifndef _CONSOLE_H_
3 #define _CONSOLE_H_
4
5 #include <QtGui>
6
7 class DIRRES;
8 class BSOCK;
9 class JCR;
10 class CONRES;
11
12 class Console : public QWidget
13 {
14    Q_OBJECT 
15
16 public:
17    Console();
18    void set_text(const char *buf);
19    void set_text(const QString buf);
20    void set_textf(const char *fmt, ...);
21    void update_cursor(void);
22    void write_dir(const char *buf);
23    bool authenticate_director(JCR *jcr, DIRRES *director, CONRES *cons);
24    bool is_connected() { return m_sock != NULL; };
25
26 public slots:
27    void connect(void);
28    void read_dir(int fd);
29    void status_dir(void);
30
31 private:
32    QTextEdit *m_textEdit;
33    DIRRES *m_dir;
34    BSOCK *m_sock;   
35    bool m_at_prompt;
36    QSocketNotifier *m_notifier;
37    QTextCursor *m_cursor;
38    QTreeWidgetItem *m_consoleItem;
39 };
40
41 #endif /* _CONSOLE_H_ */