]> git.tdb.fi Git - libs/gltk.git/blob - source/column.h
0e5f0040364d5c52055e1e44112670e84acb824a
[libs/gltk.git] / source / column.h
1 #ifndef MSP_GLTK_COLUMN_H_
2 #define MSP_GLTK_COLUMN_H_
3
4 #include "layout.h"
5
6 namespace Msp {
7 namespace GLtk {
8
9 /**
10 Arranges widgets in a single column.
11 */
12 class Column: public Layout
13 {
14 private:
15         bool uniform;
16
17 public:
18         Column(bool = false);
19
20 private:
21         virtual Slot *create_slot(Widget &);
22 };
23
24 } // namespace GLtk
25 } // namespace Msp
26
27 #endif