summaryrefslogtreecommitdiffstats
path: root/examples/demo/categoryinterface.h
blob: 422881f481ce2d52bab84ca546a24bb234b76005 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef CATEGORYINTERFACE_H
#define CATEGORYINTERFACE_H

#include <qstring.h>
#include <qiconset.h>
#include <qobject.h>

class QWidgetStack;

class CategoryInterface : public QObject
{
    Q_OBJECT

public:
    CategoryInterface( QWidgetStack *s ) : stack( s ) {}
    virtual ~CategoryInterface() {}
    virtual QString name() const = 0;
    virtual QIconSet icon() const = 0;
    virtual int numCategories() const = 0;
    virtual QString categoryName( int i ) const = 0;
    virtual QIconSet categoryIcon( int i ) const = 0;
    virtual int categoryOffset() const = 0;

public slots:
    virtual void setCurrentCategory( int i ) = 0;

protected:
    QWidgetStack *stack;

};

#endif