]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/row.h
Implement mouse wheel scrolling in List
[libs/gltk.git] / source / row.h
index adc2a6e966c963cf4a119d049011ceac1468fc8c..4bf2d38d9e8d84918520715495789bff87d89732 100644 (file)
@@ -1,24 +1,18 @@
 #ifndef MSP_GLTK_ROW_H_
 #define MSP_GLTK_ROW_H_
 
-#include "layout.h"
+#include "lineararrangement.h"
 
 namespace Msp {
 namespace GLtk {
 
-/**
-Arranges widgets in a single row.
-*/
-class Row: public Layout
+class Row: public LinearArrangement
 {
-private:
-       bool uniform;
-
 public:
-       Row(bool = false);
+       Row(Layout &);
 
 private:
-       virtual Slot *create_slot(Widget &);
+       virtual void finish_widget(Widget &);
 };
 
 } // namespace GLtk