summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/progressloggerinterface.h
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilqt/progressloggerinterface.h')
-rw-r--r--rbutil/rbutilqt/progressloggerinterface.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/progressloggerinterface.h b/rbutil/rbutilqt/progressloggerinterface.h
new file mode 100644
index 0000000000..c2075a15f4
--- /dev/null
+++ b/rbutil/rbutilqt/progressloggerinterface.h
@@ -0,0 +1,51 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Copyright (C) 2007 by Dominik Wenger
10 * $Id: progressloggerinterface.h 14027 2007-07-27 17:42:49Z domonoky $
11 *
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.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19
20#ifndef PROGRESSLOGGERINTERFACE_H
21#define PROGRESSLOGGERINTERFACE_H
22
23#include <QtGui>
24
25class ProgressloggerInterface : public QObject
26{
27 Q_OBJECT
28
29public:
30 ProgressloggerInterface(QObject* parent) : QObject(parent) {}
31 virtual void addItem(QString text) =0 ; //adds a string to the list
32
33 virtual void setProgressValue(int value)=0;
34 virtual void setProgressMax(int max)=0;
35 virtual int getProgressMax()=0;
36
37signals:
38 virtual void aborted()=0;
39
40
41public slots:
42 virtual void abort()=0;
43 virtual void close()=0;
44 virtual void show()=0;
45
46private:
47
48};
49
50#endif
51