]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/util/fmtwidgetitem.h
bat: Use green/red bullet for InChanger in mediview
[bacula/bacula] / bacula / src / qt-console / util / fmtwidgetitem.h
1 #ifndef _FMTWIDGETITEM_H_
2 #define _FMTWIDGETITEM_H_
3 /*
4    Bacula® - The Network Backup Solution
5
6    Copyright (C) 2007-2007 Free Software Foundation Europe e.V.
7
8    The main author of Bacula is Kern Sibbald, with contributions from
9    many others, a complete list can be found in the file AUTHORS.
10    This program is Free Software; you can redistribute it and/or
11    modify it under the terms of version two of the GNU General Public
12    License as published by the Free Software Foundation and included
13    in the file LICENSE.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25    Bacula® is a registered trademark of Kern Sibbald.
26    The licensor of Bacula is the Free Software Foundation Europe
27    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
28    Switzerland, email:ftf@fsfeurope.org.
29 */
30 /*
31  *   Version $Id$
32  *
33  *   TreeView formatting helpers - Riccardo Ghetta, May 2008 
34  */
35
36 class QWidget;
37 class QTreeWidgetItem;
38 class QTableWidget;
39 class QTableWidgetItem;
40 class QString;
41 class QBrush;
42
43
44 /*
45  * common conversion routines
46  *
47  */
48 QString convertJobStatus(const QString &sts);
49
50 /* bytes formatted as power-of-two with IEC suffixes (KiB, MiB, and so on) */
51 QString convertBytesIEC(qint64 fld);
52
53 /* bytes formatted as power-of-ten with SI suffixes (kB, MB, and so on) */
54 QString convertBytesSI(qint64 fld);
55
56 /*
57  * disable widget updating
58  */
59 class Freeze
60 {
61 private:
62    QWidget *qw;
63
64  public:
65    Freeze(QWidget &q);
66    ~Freeze();
67 };
68
69
70
71 /*
72  * base class for formatters
73  *
74  */
75 class ItemFormatterBase
76 {
77 public:
78    enum BYTES_CONVERSION {
79       BYTES_CONVERSION_NONE,
80       BYTES_CONVERSION_IEC,
81       BYTES_CONVERSION_SI,
82    };
83
84 public:
85    virtual ~ItemFormatterBase(); 
86
87    /* Prints Yes if fld is != 0, No otherwise. Centers field if center true*/
88    void setBoolFld(int index, const QString &fld, bool center = true);
89    void setBoolFld(int index, int fld, bool center = true);
90
91    /* Normal text field. Centers field if center true*/
92    void setTextFld(int index, const QString &fld, bool center = false);
93
94    /* Right-aligned text field. */
95    void setRightFld(int index, const QString &fld);
96
97    /* Numeric field - sorted as numeric type */
98    void setNumericFld(int index, const QString &fld);
99    void setNumericFld(int index, const QString &fld, const QVariant &sortVal);
100
101    /* fld value interpreted as bytes and formatted with size suffixes */
102    void setBytesFld(int index, const QString &fld);
103
104    /* fld value interpreted as seconds and formatted with y,m,w,h suffixes */
105    void setDurationFld(int index, const QString &fld);
106
107    /* fld value interpreted as volume status. Colored accordingly */
108    void setVolStatusFld(int index, const QString &fld, bool center = true);
109   
110    /* fld value interpreted as job status. Colored accordingly */
111    void setJobStatusFld(int index, const QString &status, bool center = true);
112   
113    /* fld value interpreted as job type. */
114    void setJobTypeFld(int index, const QString &fld, bool center = false);
115   
116    /* fld value interpreted as job level. */
117    void setJobLevelFld(int index, const QString &fld, bool center = false);
118
119    /* fld value interpreted as Online/Offline */
120    void setInChanger(int index, const QString &InChanger);
121   
122    static void setBytesConversion(BYTES_CONVERSION b) {
123       cnvFlag = b;
124    }
125    static BYTES_CONVERSION getBytesConversion() {
126       return cnvFlag;
127    }
128
129 protected:
130    /* only derived classes can create one of these */
131    ItemFormatterBase();
132
133    virtual void setText(int index, const QString &fld) = 0;
134    virtual void setTextAlignment(int index, int align) = 0;
135    virtual void setBackground(int index, const QBrush &) = 0;
136    virtual void setPixmap(int index, const QPixmap &pix) = 0;
137
138    /* sets the *optional* value used for sorting */
139    virtual void setSortValue(int index, const QVariant &value) = 0;
140
141 private:
142    static BYTES_CONVERSION cnvFlag;
143 };
144
145 /*
146  * This class can be used instead of QTreeWidgetItem (it allocates one internally,
147  * to format data fields.
148  * All setXXXFld routines receive a column index and the unformatted string value.
149  */
150 class TreeItemFormatter : public ItemFormatterBase
151 {
152 public:
153
154    TreeItemFormatter(QTreeWidgetItem &parent, int indent_level);
155
156    /* access internal widget */
157    QTreeWidgetItem *widget() { return wdg; }
158    const QTreeWidgetItem *widget() const { return wdg; }
159
160 protected:
161    virtual void setText(int index, const QString &fld);
162    virtual void setTextAlignment(int index, int align);
163    virtual void setBackground(int index, const QBrush &);
164    virtual void setSortValue(int index, const QVariant &value);
165    virtual void setPixmap(int index, const QPixmap &pix);
166
167 private:
168    QTreeWidgetItem *wdg;
169    int level;
170 };
171
172 /*
173  * This class can be used instead of QTableWidgetItem (it allocates one internally,
174  * to format data fields.
175  * All setXXXFld routines receive the column and the unformatted string value.
176  */
177 class TableItemFormatter : public ItemFormatterBase
178 {
179 private:
180
181    /* specialized widget item - allows an optional data property for sorting */ 
182    class BatSortingTableItem : public QTableWidgetItem
183    {
184    private:
185       static const int SORTDATA_ROLE = Qt::UserRole + 100;
186    public:
187       BatSortingTableItem();
188       
189       /* uses the sort data if available, reverts to default behavior othervise */
190       virtual bool operator< ( const QTableWidgetItem & o ) const;
191
192       /* set the value used for sorting - MUST BE A NUMERIC TYPE */
193       void setSortData(const QVariant &d);
194    };
195
196 public:
197
198    TableItemFormatter(QTableWidget &parent, int row);
199
200    /* access internal widget at column col*/
201    QTableWidgetItem *widget(int col);
202    const QTableWidgetItem *widget(int col) const;
203
204 protected:
205    virtual void setText(int index, const QString &fld);
206    virtual void setTextAlignment(int index, int align);
207    virtual void setBackground(int index, const QBrush &);
208    virtual void setSortValue(int index, const QVariant &value);
209    virtual void setPixmap(int index, const QPixmap &pix);
210
211 private:
212    QTableWidget *parent;
213    int row;
214    BatSortingTableItem  *last;
215 };
216
217 #endif /* _FMTWIDGETITEM_H_ */