tuikit/layouts/layout.py
changeset 93 c1e79acb9fcb
child 114 26c02bd94bd9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tuikit/layouts/layout.py	Thu Mar 27 08:03:51 2014 +0100
@@ -0,0 +1,12 @@
+class Layout:
+
+    def __init__(self):
+        self._managed_widgets = []
+
+    def add(self, widget):
+        self._managed_widgets.append(widget)
+
+    def resize(self):
+        pass
+
+