Main Page | Class Hierarchy | Alphabetical List | Data Structures | Directories | File List | Data Fields | Globals

HBox.h

Go to the documentation of this file.
00001 #ifndef HEADER_HBOX_H
00002 #define HEADER_HBOX_H
00003 
00004 #include "WiBox.h"
00005 
00006 /**
00007  * Horizontal box.
00008  */
00009 class HBox : public WiBox {
00010     private:
00011         int m_w;
00012         int m_h;
00013     public:
00014         HBox();
00015         virtual int getW() const { return m_w; }
00016         virtual int getH() const { return m_h; }
00017         virtual void addWidget(IWidget *new_widget);
00018         virtual void setShift(const V2 &shift);
00019 };
00020 
00021 #endif

Generated on Wed Jun 1 09:54:31 2005 for Fish Fillets - Next Generation by  doxygen 1.4.2