[maemo-developers] Python and Hildon: Toolbar and window title remain hidden
From: Matti Räty matti.raty at gmail.comDate: Sun Mar 23 00:00:36 EET 2008
- Previous message: Python and Hildon: Toolbar and window title remain hidden
- Next message: Python and Hildon: Toolbar and window title remain hidden
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi, Thanks, now it works :) Actually all the settings of style and orientation were not needed. Now I am only left with app title not working.. -Matti On Sat, Mar 22, 2008 at 10:54 PM, Lauro Moura <lauro.neto at openbossa.org> wrote: > On Sat, Mar 22, 2008 at 2:38 PM, Matti Räty <matti.raty at gmail.com> wrote: > > Hi all, > > > > My question is about Python and Hildon UI. It might be pretty basic one > but > > I haven't been able to find a solution. > > > > 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 :) > > > > Here is code snipset that I have : > > > > class MyApp(hildon.Program): > > > > def __init__(self): > > hildon.Program.__init__(self) > > > > self.window = hildon.Window() > > > > self.window.set_title("Title, not seen.") > > self.window.connect("destroy", gtk.main_quit) > > > > label = gtk.Label("Hello") > > self.window.add(label) > > > > self._create_toolbar() > > > > self.add_window(self.window) > > > > def _create_toolbar(self): > > toolbar = gtk.Toolbar() > > toolbar.set_border_width (3) > > toolbar.set_orientation ('horizontal') > > toolbar.set_style ('both-horiz') > > button = gtk.ToolButton (None, "TB Button") > > toolbar.insert (button, -1) > > > > button.show() > > toolbar.show() > > > > self.window.add_toolbar(toolbar) > > > > def run(self): > > self.window.show_all() > > gtk.main() > > > > run() is called when program is launched. > > > > So there it is. All pointers are very much welcome. > > > > About the toolbar, that probably is a bug when using the set_style > with both_horizontal. At [1] there's a C code example. > > [1] http://pastebin.com/m3a52df8b > > > -- > Lauro Moura > INdT - Instituto Nokia de Tecnologia > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.maemo.org/pipermail/maemo-developers/attachments/20080323/8ba7f50b/attachment.htm
- Previous message: Python and Hildon: Toolbar and window title remain hidden
- Next message: Python and Hildon: Toolbar and window title remain hidden
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]