KNewStuff
qprogressindicator.h
Go to the documentation of this file.00001 /* 00002 This file is part of KNewStuff2. 00003 Copyright (c) 2007 Josef Spillner <spillner@kde.org> 00004 Copyright (c) 2008 Jeremy Whiting <jeremy@scitools.com> 00005 00006 This library is free software; you can redistribute it and/or 00007 modify it under the terms of the GNU Library General Public 00008 License as published by the Free Software Foundation; either 00009 version 2 of the License, or (at your option) any later version. 00010 00011 This library is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 Library General Public License for more details. 00015 00016 You should have received a copy of the GNU Library General Public License 00017 along with this library; see the file COPYING.LIB. If not, write to 00018 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00019 Boston, MA 02110-1301, USA. 00020 */ 00021 00022 #ifndef KNEWSTUFF2_UI_QPROGRESSINDICATOR_H 00023 #define KNEWSTUFF2_UI_QPROGRESSINDICATOR_H 00024 00025 #include <QtGui/QFrame> 00026 #include <QtCore/QHash> 00027 00028 #include <QtCore/QString> 00029 00030 class QVBoxLayout; 00031 class QProgressBar; 00032 class QPushButton; 00033 00042 class QProgressIndicator : public QFrame 00043 { 00044 Q_OBJECT 00045 public: 00046 QProgressIndicator(QWidget *parent); 00047 void addProgress(const QString & message, int percentage); 00048 void removeProgress(const QString & message); 00049 public Q_SLOTS: 00050 void slotClicked(); 00051 signals: 00052 void signalJobCanceled(const QString & message); 00053 private: 00054 void calculateAverage(); 00055 00056 QHash<QString, int> m_progress; 00057 QHash<QString, QProgressBar*> m_progresswidgets; 00058 QWidget *m_details; 00059 QVBoxLayout *m_detailsvbox; 00060 QProgressBar *m_pb; 00061 QPushButton *m_pbdetails; 00062 }; 00063 00064 #endif