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 &lt;<a href="mailto:lauro.neto@openbossa.org">lauro.neto@openbossa.org</a>&gt; 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 &lt;<a href="mailto:matti.raty@gmail.com">matti.raty@gmail.com</a>&gt; wrote:<br>

&gt; Hi all,<br>
&gt;<br>
&gt; My question is about Python and Hildon UI. It might be pretty basic one but<br>
&gt; I haven&#39;t been able to find a solution.<br>
&gt;<br>
&gt; So, my problem is this. I am creating application with Python for Maemo but<br>
&gt; for some reason window title and toolbar remain hidden. I can add widgets to<br>
&gt; window and they work fine. So most likely I am missing just some minor<br>
&gt; thing. I am hoping someone could push me to the right direction :)<br>
&gt;<br>
&gt; Here is code snipset that I have :<br>
&gt;<br>
&gt; class MyApp(hildon.Program):<br>
&gt;<br>
&gt; &nbsp; &nbsp;def __init__(self):<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; hildon.Program.__init__(self)<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; self.window = hildon.Window()<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; self.window.set_title(&quot;Title, not seen.&quot;)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;self.window.connect(&quot;destroy&quot;, gtk.main_quit)<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; label = gtk.Label(&quot;Hello&quot;)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; self.window.add(label)<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; self._create_toolbar()<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; self.add_window(self.window)<br>
&gt;<br>
&gt; &nbsp; &nbsp;def _create_toolbar(self):<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; toolbar = gtk.Toolbar()<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; toolbar.set_border_width (3)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; toolbar.set_orientation (&#39;horizontal&#39;)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; toolbar.set_style (&#39;both-horiz&#39;)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;button = gtk.ToolButton (None, &quot;TB Button&quot;)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; toolbar.insert (button, -1)<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; button.show()<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; toolbar.show()<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; self.window.add_toolbar(toolbar)<br>
&gt;<br>
&gt; &nbsp; def run(self):<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; self.window.show_all()<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; gtk.main()<br>
&gt;<br>
&gt; run() is called when program is launched.<br>
&gt;<br>
&gt; So there it is. All pointers are very much welcome.<br>
&gt;<br>
<br>
</div></div>About the toolbar, that probably is a bug when using the set_style<br>
with both_horizontal. At [1] there&#39;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>