Hi,<br><br>Thanks, now it works :) Actually all the settings of style and orientation were not needed.<br><br>Now I am only left with app title not working..<br><br>-Matti<br><br><div class="gmail_quote">On Sat, Mar 22, 2008 at 10:54 PM, Lauro Moura <<a href="mailto:lauro.neto@openbossa.org">lauro.neto@openbossa.org</a>> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div><div></div><div class="Wj3C7c">On Sat, Mar 22, 2008 at 2:38 PM, Matti Räty <<a href="mailto:matti.raty@gmail.com">matti.raty@gmail.com</a>> wrote:<br>
> Hi all,<br>
><br>
> My question is about Python and Hildon UI. It might be pretty basic one but<br>
> 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<br>
> for some reason window title and toolbar remain hidden. I can add widgets to<br>
> window and they work fine. So most likely I am missing just some minor<br>
> 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>
<br>
</div></div>About the toolbar, that probably is a bug when using the set_style<br>
with both_horizontal. At [1] there's a C code example.<br>
<br>
[1] <a href="http://pastebin.com/m3a52df8b" target="_blank">http://pastebin.com/m3a52df8b</a><br>
<font color="#888888"><br>
<br>
--<br>
Lauro Moura<br>
INdT - Instituto Nokia de Tecnologia<br>
</font></blockquote></div><br><br>