Make addItem() a slot to be able adding items using a signal.
[Rockbox.git] / rbutil / rbutilqt / progressloggergui.h
blob41e7012df0410eb48d24b7d639db4e32cb3d3d0b
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2007 by Dominik Wenger
10 * $Id$
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
19 #ifndef PROGRESSLOGGERGUI_H
20 #define PROGRESSLOGGERGUI_H
22 #include <QtGui>
24 #include "progressloggerinterface.h"
25 #include "ui_progressloggerfrm.h"
27 class ProgressLoggerGui :public ProgressloggerInterface
29 Q_OBJECT
30 public:
31 ProgressLoggerGui(QWidget * parent);
33 virtual void setProgressValue(int value);
34 virtual void setProgressMax(int max);
35 virtual int getProgressMax();
37 signals:
38 virtual void aborted();
39 virtual void closed();
41 public slots:
42 virtual void addItem(const QString &text); //! add a string to the progress list
43 virtual void addItem(const QString &text, int flag); //! add a string to the list
45 virtual void abort();
46 virtual void undoAbort();
47 virtual void close();
48 virtual void show();
50 private:
51 Ui::ProgressLoggerFrm dp;
52 QDialog *downloadProgress;
56 #endif