]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/column.h
Add API declarations
[libs/gltk.git] / source / column.h
index c7efd3b503e63769477a92c85eadc3384fa31650..6d6acd6148aae1960018955977bcec81f18d9ac2 100644 (file)
@@ -1,28 +1,19 @@
 #ifndef MSP_GLTK_COLUMN_H_
 #define MSP_GLTK_COLUMN_H_
 
-#include "arrangement.h"
+#include "lineararrangement.h"
+#include "mspgltk_api.h"
 
 namespace Msp {
 namespace GLtk {
 
-class Column: public Arrangement
+class MSPGLTK_API Column: public LinearArrangement
 {
-private:
-       Edge next_bottom;
-       bool first;
-       bool split_here;
-       int gravity;
-
 public:
        Column(Layout &);
 
-       void split();
-
 private:
-       virtual void process_widget(Widget &, Side, bool);
        virtual void finish_widget(Widget &);
-       virtual void finish_slot();
 };
 
 } // namespace GLtk