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.
qt3/examples/demo/categoryinterface.h

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