]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/run/run.h
A bug was introduced in with commit 5727. Restoretree and restore were
[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 "ui_estimate.h"
9 #include "ui_prune.h"
10 #include "console.h"
11
12 class runPage : public Pages, public Ui::runForm
13 {
14    Q_OBJECT 
15
16 public:
17    runPage(const QString &defJob);
18
19 public slots:
20    void okButtonPushed();
21    void cancelButtonPushed();
22    void job_name_change(int index);
23
24 private:
25 };
26
27 class runCmdPage : public Pages, public Ui::runCmdForm
28 {
29    Q_OBJECT 
30
31 public:
32    runCmdPage();
33
34 public slots:
35    void okButtonPushed();
36    void cancelButtonPushed();
37
38 private:
39    void fill();
40 };
41
42 class estimatePage : public Pages, public Ui::estimateForm
43 {
44    Q_OBJECT 
45
46 public:
47    estimatePage();
48
49 public slots:
50    void okButtonPushed();
51    void cancelButtonPushed();
52    void job_name_change(int index);
53
54 private:
55 };
56
57 class prunePage : public Pages, public Ui::pruneForm
58 {
59    Q_OBJECT 
60
61 public:
62    prunePage(const QString &volume, const QString &client);
63
64 public slots:
65    void okButtonPushed();
66    void cancelButtonPushed();
67    void volumeChanged();
68    void clientChanged();
69
70 private:
71 };
72
73 #endif /* _RUN_H_ */