X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Frow.h;h=4bf2d38d9e8d84918520715495789bff87d89732;hb=c8291177b545ec81930603a5915234a60296db51;hp=f8ebe6cc732ffd4c574380d8fbb899dec7f31fb5;hpb=a84c813859b6908c511b12ab7d82d6643f4f1a42;p=libs%2Fgltk.git diff --git a/source/row.h b/source/row.h index f8ebe6c..4bf2d38 100644 --- a/source/row.h +++ b/source/row.h @@ -1,31 +1,18 @@ -/* $Id$ - -This file is part of libmspgltk -Copyright © 2011 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef MSP_GLTK_ROW_H_ #define MSP_GLTK_ROW_H_ -#include "layout.h" +#include "lineararrangement.h" namespace Msp { namespace GLtk { -/** -Arranges widgets in a single row. -*/ -class Row: public Layout +class Row: public LinearArrangement { -private: - bool uniform; - public: - Row(bool = false); + Row(Layout &); private: - virtual Slot *create_slot(Widget &); + virtual void finish_widget(Widget &); }; } // namespace GLtk