]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/mediaedit/mediaedit.h
5856f3080165e3bde951e68dbe9b5360f3cd9c73
[bacula/bacula] / bacula / src / qt-console / mediaedit / mediaedit.h
1 #ifndef _MEDIAEDIT_H_
2 #define _MEDIAEDIT_H_
3 /*
4    Bacula(R) - The Network Backup Solution
5
6    Copyright (C) 2000-2016 Kern Sibbald
7
8    The original author of Bacula is Kern Sibbald, with contributions
9    from many others, a complete list can be found in the file AUTHORS.
10
11    You may use this file and others of this release according to the
12    license defined in the LICENSE file, which includes the Affero General
13    Public License, v3.0 ("AGPLv3") and some additional permissions and
14    terms pursuant to its AGPLv3 Section 7.
15
16    This notice must be preserved when any source code is 
17    conveyed and/or propagated.
18
19    Bacula(R) is a registered trademark of Kern Sibbald.
20 */
21 /*
22  *   Dirk Bartley, March 2007
23  */
24
25 #include <QtGui>
26 #include "ui_mediaedit.h"
27 #include "console.h"
28 #include "pages.h"
29
30 class MediaEdit : public Pages, public Ui::mediaEditForm
31 {
32    Q_OBJECT 
33
34 public:
35    MediaEdit(QTreeWidgetItem *parentWidget, QString &mediaId);
36
37 private slots:
38    void okButtonPushed();
39    void cancelButtonPushed();
40    void retentionChanged();
41    void durationChanged();
42    void useDurationChanged();
43    void setSpins(int value);
44    void retentionRadioPressed();
45    void useDurationRadioPressed();
46
47 private:
48    void connectSpins();
49    void disconnectSpins();
50    QString m_mediaName;
51    QString m_pool;
52    QString m_status;
53    int m_slot;
54    int m_retention;
55    int m_useDuration;
56    int m_maxVolJobs;
57    int m_maxVolFiles;
58    int m_maxVolBytes;
59    bool m_recycle;
60    bool m_enabled;
61    QString m_recyclePool;
62 };
63
64 #endif /* _MEDIAEDIT_H_ */