Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Activity.py
diff options
context:
space:
mode:
Diffstat (limited to 'Activity.py')
-rw-r--r--Activity.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/Activity.py b/Activity.py
index c41de1c..c4c1826 100644
--- a/Activity.py
+++ b/Activity.py
@@ -102,3 +102,22 @@ class Activity(activity.Activity):
self.set_canvas(canvas)
self.show_all()
+
+
+class Converter(gtk.VBox):
+ def __init__(self):
+ gtk.VBox.__init__(self)
+
+ self._hbox = gtk.VBox()
+
+ self.combo1 = gtk.Combo()
+
+ self.combo2 = gtk.Combo()
+
+ self.add(gtk.Label("Comvertir"))
+ self._hbox(gtk.Label("De "))
+ self._hbox.add(self.combo1)
+ self._hbox.add(gtk.Label(" a "))
+ self._hbox.add(self.combo2)
+
+ self.add(self._hbox)