00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef TOOLBARITEM_HH
00026 #define TOOLBARITEM_HH
00027
00029 class ToolbarItem {
00030 public:
00032 enum Type {
00033 FIXED,
00034 RELATIVE
00035 };
00036
00037 explicit ToolbarItem(Type type);
00038 virtual ~ToolbarItem();
00039
00040 virtual void move(int x, int y) = 0;
00041 virtual void resize(unsigned int width, unsigned int height) = 0;
00042 virtual void moveResize(int x, int y,
00043 unsigned int width, unsigned int height) = 0;
00044
00045 virtual void show() = 0;
00046 virtual void hide() = 0;
00047 virtual unsigned int width() const = 0;
00048 virtual unsigned int height() const = 0;
00049 virtual unsigned int borderWidth() const = 0;
00050
00051 virtual bool active() { return true; }
00052
00053 void setType(Type type) { m_type = type; }
00054 Type type() const { return m_type; }
00055
00056 private:
00057 Type m_type;
00058 };
00059
00060 #endif // TOOLBARITEM_HH