2007-07-29 18:07:31 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Dominik Wenger
|
2007-08-23 22:11:50 +00:00
|
|
|
* $Id$
|
2007-07-29 18:07:31 +00:00
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef PROGRESSLOGGERGUI_H
|
|
|
|
#define PROGRESSLOGGERGUI_H
|
2007-09-15 22:13:41 +00:00
|
|
|
|
2007-07-29 18:07:31 +00:00
|
|
|
#include <QtGui>
|
|
|
|
|
|
|
|
#include "progressloggerinterface.h"
|
2008-03-28 17:30:37 +00:00
|
|
|
#include "ui_progressloggerfrm.h"
|
2007-07-29 18:07:31 +00:00
|
|
|
|
2007-09-15 22:13:41 +00:00
|
|
|
class ProgressLoggerGui :public ProgressloggerInterface
|
2007-07-29 18:07:31 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2008-05-10 17:53:15 +00:00
|
|
|
ProgressLoggerGui(QWidget * parent);
|
2007-09-15 22:13:41 +00:00
|
|
|
|
|
|
|
virtual void addItem(const QString &text); //adds a string to the list
|
|
|
|
|
|
|
|
virtual void addItem(const QString &text, int flag); //adds a string to the list
|
|
|
|
|
2007-07-29 18:07:31 +00:00
|
|
|
virtual void setProgressValue(int value);
|
|
|
|
virtual void setProgressMax(int max);
|
|
|
|
virtual int getProgressMax();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
virtual void aborted();
|
|
|
|
virtual void closed();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
virtual void abort();
|
2007-08-26 19:06:40 +00:00
|
|
|
virtual void undoAbort();
|
2007-07-29 18:07:31 +00:00
|
|
|
virtual void close();
|
|
|
|
virtual void show();
|
2007-09-15 22:13:41 +00:00
|
|
|
|
|
|
|
private:
|
2008-03-28 17:30:37 +00:00
|
|
|
Ui::ProgressLoggerFrm dp;
|
2007-07-29 18:07:31 +00:00
|
|
|
QDialog *downloadProgress;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|