X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcolumn.h;h=d82c8cad65a8f0d351a3cd0211ccc0fd548570f7;hb=aa9b8db38efb9e97460c76e27cecc4d1591b23e5;hp=0e5f0040364d5c52055e1e44112670e84acb824a;hpb=2b70e8801c43875ed3f4135bdd0141265cff0312;p=libs%2Fgltk.git diff --git a/source/column.h b/source/column.h index 0e5f004..d82c8ca 100644 --- a/source/column.h +++ b/source/column.h @@ -1,24 +1,19 @@ #ifndef MSP_GLTK_COLUMN_H_ #define MSP_GLTK_COLUMN_H_ -#include "layout.h" +#include "lineararrangement.h" +#include "mspgltk_api.h" namespace Msp { namespace GLtk { -/** -Arranges widgets in a single column. -*/ -class Column: public Layout +class MSPGLTK_API Column: public LinearArrangement { -private: - bool uniform; - public: - Column(bool = false); + Column(Layout &); private: - virtual Slot *create_slot(Widget &); + void finish_widget(Widget &) override; }; } // namespace GLtk