]> git.tdb.fi Git - libs/gltk.git/blob - source/floatingarrangement.h
Support floating widgets in layouts
[libs/gltk.git] / source / floatingarrangement.h
1 #ifndef FLOATINGARRANGEMENT_H_
2 #define FLOATINGARRANGEMENT_H_
3
4 #include "arrangement.h"
5
6 namespace Msp {
7 namespace GLtk {
8
9 class FloatingArrangement: public Arrangement
10 {
11 public:
12         FloatingArrangement(Layout &);
13
14 private:
15         virtual void process_widget(Widget &, Side, bool) { }
16         virtual void finish_widget(Widget &);
17         virtual void finish_slot() { }
18 };
19
20 } // namespace GLtk
21 } // namespace Msp
22
23 #endif