X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flineararrangement.h;h=ce49b34edf38c99d9618a2f424cbcc73bafb2adb;hb=d2491d05fe17541a01bd7f3264e693fad616f2d9;hp=571e279af3cccc4093736dab6e994d48cae585da;hpb=32539688068fad9614291159b069da10ead10f47;p=libs%2Fgltk.git diff --git a/source/lineararrangement.h b/source/lineararrangement.h index 571e279..ce49b34 100644 --- a/source/lineararrangement.h +++ b/source/lineararrangement.h @@ -15,7 +15,10 @@ public: public: Loader(LinearArrangement &); private: + void expand(); + void spacing(unsigned); void split(); + void uniform(bool); }; protected: @@ -25,15 +28,22 @@ protected: bool first; bool split_here; Side gravity; + bool internal_aligned; + bool uniform; + Widget *uniform_ref; + int next_spacing; LinearArrangement(Layout &, Side); public: + void set_uniform(bool); void split(); void expand(); + void spacing(unsigned); protected: virtual void process_widget(Widget &, Side, bool); + virtual void finish_widget(Widget &); virtual void finish_slot(); };