X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Frow.h;h=678a3853cc2023b399286b628d3330ea6f0fce21;hb=d10d1de6d17c285c63d7b3cea549017aaa1ddb01;hp=adc2a6e966c963cf4a119d049011ceac1468fc8c;hpb=2b70e8801c43875ed3f4135bdd0141265cff0312;p=libs%2Fgltk.git diff --git a/source/row.h b/source/row.h index adc2a6e..678a385 100644 --- a/source/row.h +++ b/source/row.h @@ -1,24 +1,19 @@ #ifndef MSP_GLTK_ROW_H_ #define MSP_GLTK_ROW_H_ -#include "layout.h" +#include "lineararrangement.h" +#include "mspgltk_api.h" namespace Msp { namespace GLtk { -/** -Arranges widgets in a single row. -*/ -class Row: public Layout +class MSPGLTK_API Row: public LinearArrangement { -private: - bool uniform; - public: - Row(bool = false); + Row(Layout &); private: - virtual Slot *create_slot(Widget &); + void finish_widget(Widget &) override; }; } // namespace GLtk