]> git.tdb.fi Git - libs/gltk.git/blob - source/row.h
Add some classes for automatically creating basic layouts
[libs/gltk.git] / source / row.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_ROW_H_
9 #define MSP_GLTK_ROW_H_
10
11 #include "layout.h"
12
13 namespace Msp {
14 namespace GLtk {
15
16 /**
17 Arranges widgets in a single row.
18 */
19 class Row: public Layout
20 {
21 private:
22         bool uniform;
23
24 public:
25         Row(bool = false);
26
27 private:
28         virtual Slot *create_slot(Widget &);
29 };
30
31 } // namespace GLtk
32 } // namespace Msp
33
34 #endif