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
701 B
33 lines
701 B
#ifndef CATEGORYINTERFACE_H
|
|
#define CATEGORYINTERFACE_H
|
|
|
|
#include <ntqstring.h>
|
|
#include <ntqiconset.h>
|
|
#include <ntqobject.h>
|
|
|
|
class TQWidgetStack;
|
|
|
|
class CategoryInterface : public TQObject
|
|
{
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
CategoryInterface( TQWidgetStack *s ) : stack( s ) {}
|
|
virtual ~CategoryInterface() {}
|
|
virtual TQString name() const = 0;
|
|
virtual TQIconSet icon() const = 0;
|
|
virtual int numCategories() const = 0;
|
|
virtual TQString categoryName( int i ) const = 0;
|
|
virtual TQIconSet categoryIcon( int i ) const = 0;
|
|
virtual int categoryOffset() const = 0;
|
|
|
|
public slots:
|
|
virtual void setCurrentCategory( int i ) = 0;
|
|
|
|
protected:
|
|
TQWidgetStack *stack;
|
|
|
|
};
|
|
|
|
#endif
|