1 /*
2    Bacula(R) - The Network Backup Solution
3 
4    Copyright (C) 2000-2020 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 #include "common.h"
21 #include "ui_sd-monitor.h"
22 #include "task.h"
23 #include "status.h"
24 
25 class SDStatus: public ResStatus
26 {
27    Q_OBJECT
28 
29 public:
30    Ui::sdStatus status;
31 
SDStatus(RESMON * d)32    SDStatus(RESMON *d):  ResStatus(d)
33    {
34       status.setupUi(this);
35       QObject::connect(status.pushButton, SIGNAL(clicked()), this, SLOT(doUpdate()),  Qt::QueuedConnection);
36    };
~SDStatus()37    ~SDStatus() {
38    };
39 public slots:
40    void doUpdate();
41    void taskDone(task *);
42 };
43