Fix typos
[kdepim.git] / kmail / collectionquotapage_p.h
blobc3b2e1fe70455e8b30e8f0deb30516f2d6d87245
1 /**
2 * folderdialogquotatab_p.h
4 * Copyright (c) 2006 Till Adam <adam@kde.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * In addition, as a special exception, the copyright holders give
21 * permission to link the code of this program with any edition of
22 * the Qt library by Trolltech AS, Norway (or with modified versions
23 * of Qt that use the same license as Qt), and distribute linked
24 * combinations including the two. You must obey the GNU General
25 * Public License in all respects for all of the code used other than
26 * Qt. If you modify this file, you may extend this exception to
27 * your version of the file, but you are not obligated to do so. If
28 * you do not wish to do so, delete this exception statement from
29 * your version.
33 #ifndef COLLECTIONQUOTAPAGE_P_H
34 #define COLLECTIONQUOTAPAGE_P_H
37 #include <QWidget>
39 class QProgressBar;
40 class QLabel;
42 class QuotaWidget : public QWidget {
44 Q_OBJECT
45 public:
46 explicit QuotaWidget( QWidget* parent);
47 virtual ~QuotaWidget() { }
49 void setQuotaInfo( qint64 currentValue, qint64 maxValue );
51 private:
52 QProgressBar* mProgressBar;
53 QLabel *mUsage;
56 #endif /* COLLECTIONQUOTAPAGE_P_H */