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