]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/run/run.h
kes Implement bconsole memory command that prints current memory
[bacula/bacula] / bacula / src / qt-console / run / run.h
1
2 #ifndef _RUN_H_
3 #define _RUN_H_
4
5 #include <QtGui>
6 #include "ui_run.h"
7 #include "ui_runcmd.h"
8 #include "console.h"
9
10 class runPage : public Pages, public Ui::runForm
11 {
12    Q_OBJECT 
13
14 public:
15    runPage();
16
17 public slots:
18    void okButtonPushed();
19    void cancelButtonPushed();
20    void job_name_change(int index);
21
22 private:
23 };
24
25 class runCmdPage : public Pages, public Ui::runCmdForm
26 {
27    Q_OBJECT 
28
29 public:
30    runCmdPage();
31
32 public slots:
33    void okButtonPushed();
34    void cancelButtonPushed();
35
36 private:
37    void fill();
38 };
39
40
41 #endif /* _RUN_H_ */