X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcolumn.h;h=d82c8cad65a8f0d351a3cd0211ccc0fd548570f7;hb=6d9570c97584758e3cfcac6827d439b7fb844cf4;hp=c7efd3b503e63769477a92c85eadc3384fa31650;hpb=646af3dd91a6ca981572a5b69a0f0bd205d9af49;p=libs%2Fgltk.git diff --git a/source/column.h b/source/column.h index c7efd3b..d82c8ca 100644 --- a/source/column.h +++ b/source/column.h @@ -1,28 +1,19 @@ #ifndef MSP_GLTK_COLUMN_H_ #define MSP_GLTK_COLUMN_H_ -#include "arrangement.h" +#include "lineararrangement.h" +#include "mspgltk_api.h" namespace Msp { namespace GLtk { -class Column: public Arrangement +class MSPGLTK_API Column: public LinearArrangement { -private: - Edge next_bottom; - bool first; - bool split_here; - int gravity; - public: Column(Layout &); - void split(); - private: - virtual void process_widget(Widget &, Side, bool); - virtual void finish_widget(Widget &); - virtual void finish_slot(); + void finish_widget(Widget &) override; }; } // namespace GLtk