Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Speak.activity/port/combobox.py
diff options
context:
space:
mode:
Diffstat (limited to 'Speak.activity/port/combobox.py')
-rw-r--r--Speak.activity/port/combobox.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/Speak.activity/port/combobox.py b/Speak.activity/port/combobox.py
index bb1a65a..c68efc0 100644
--- a/Speak.activity/port/combobox.py
+++ b/Speak.activity/port/combobox.py
@@ -22,6 +22,8 @@ STABLE.
import gobject
import gtk
+from sugar.graphics import style
+
class ComboBox(gtk.ComboBox):
def __init__(self):
gtk.ComboBox.__init__(self)
@@ -177,3 +179,40 @@ class ComboBox(gtk.ComboBox):
if silent_cb:
self.connect('changed', silent_cb)
break
+
+class ToolComboBox(gtk.ToolItem):
+ __gproperties__ = {
+ 'label-text' : (str, None, None, None,
+ gobject.PARAM_WRITABLE),
+ }
+
+ def __init__(self, combo=None, **kwargs):
+ self.label = None
+ self._label_text = ''
+
+ gobject.GObject.__init__(self, **kwargs)
+
+ self.set_border_width(style.DEFAULT_PADDING)
+
+ hbox = gtk.HBox(False, style.DEFAULT_SPACING)
+
+ self.label = gtk.Label(self._label_text)
+ hbox.pack_start(self.label, False)
+ self.label.show()
+
+ if combo:
+ self.combo = combo
+ else:
+ self.combo = ComboBox()
+
+ hbox.pack_start(self.combo)
+ self.combo.show()
+
+ self.add(hbox)
+ hbox.show()
+
+ def do_set_property(self, pspec, value):
+ if pspec.name == 'label-text':
+ self._label_text = value
+ if self.label:
+ self.label.set_text(self._label_text)