]> git.tdb.fi Git - libs/gltk.git/blob - source/column.h
92919be7a597f34616f34115234eb07485b2f4ef
[libs/gltk.git] / source / column.h
1 /* $Id$
2
3 This file is part of libmspgltk
4 Copyright © 2011  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_GLTK_COLUMN_H_
9 #define MSP_GLTK_COLUMN_H_
10
11 #include "layout.h"
12
13 namespace Msp {
14 namespace GLtk {
15
16 /**
17 Arranges widgets in a single column.
18 */
19 class Column: public Layout
20 {
21 private:
22         bool uniform;
23
24 public:
25         Column(bool = false);
26
27 private:
28         virtual Slot *create_slot(Widget &);
29 };
30
31 } // namespace GLtk
32 } // namespace Msp
33
34 #endif