Hi all,<br><br>My question is about Python and Hildon UI. It might be pretty basic one but I haven't been able to find a solution. <br><br>So, my problem is this. I am creating application with Python for Maemo but for some reason window title and toolbar remain hidden. I can add widgets to window and they work fine. So most likely I am missing just some minor thing. I am hoping someone could push me to the right direction :)<br>
<br>Here is code snipset that I have : <br><br>class MyApp(hildon.Program):<br><br> def __init__(self):<br> hildon.Program.__init__(self)<br> <br> self.window = hildon.Window()<br> <br> self.window.set_title("Title, not seen.")<br>
self.window.connect("destroy", gtk.main_quit)<br> <br> label = gtk.Label("Hello")<br> self.window.add(label)<br> <br> self._create_toolbar()<br> <br> self.add_window(self.window)<br>
<br> def _create_toolbar(self):<br> toolbar = gtk.Toolbar()<br> toolbar.set_border_width (3)<br> toolbar.set_orientation ('horizontal')<br> toolbar.set_style ('both-horiz')<br>
button = gtk.ToolButton (None, "TB Button")<br> toolbar.insert (button, -1)<br> <br> button.show()<br> toolbar.show()<br> <br> self.window.add_toolbar(toolbar)<br>
<br> def run(self): <br> self.window.show_all()<br> gtk.main()<br><br>run() is called when program is launched.<br><br>So there it is. All pointers are very much welcome.<br> <br clear="all">
Thanks in advance, <br><br>-- <br>-Matti<br><a href="mailto:maemo-developers@maemo.org"></a><br>