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