You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
686 B
33 lines
686 B
#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
|