00001 #ifndef AEDBOXSIZER_H 00002 #define AEDBOXSIZER_H 00003 00004 #include "aedSizer.h" 00005 00006 enum boxType 00007 { 00008 aedVERTICAL, 00009 aedHORIZONTAL 00010 }; 00011 00012 class DLLEXPORT aedBoxSizer:public aedSizer 00013 { 00014 public: 00015 aedBoxSizer(aedWidget * parent, boxType type); 00016 virtual void calculateSize(void); 00017 private: 00018 boxType m_BoxType; 00019 }; 00020 00021 #endif