<br><br><div><span class="gmail_quote">2006/1/16, Kalle Vahlman <<a href="mailto:kalle.vahlman@gmail.com">kalle.vahlman@gmail.com</a>>:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
On 1/16/06, Luca Donaggio <<a href="mailto:donaggio@gmail.com">donaggio@gmail.com</a>> wrote:<br>> [code]<br>><br>> main = HILDON_APPVIEW (hildon_appview_new ("Main view"));<br>> hildon_appview_set_fullscreen_key_allowed(main, TRUE );
<br>> gtk_widget_show (GTK_WIDGET (main));<br>> main_icon_pixbuf = create_pixbuf ("grsync.png");<br>> if (main_icon_pixbuf)<br>> {<br>> gtk_window_set_icon (GTK_WINDOW (main), main_icon_pixbuf);
<br>> gdk_pixbuf_unref (main_icon_pixbuf);<br>> }<br>><br>> viewport1 = gtk_viewport_new (NULL, NULL);<br>> gtk_widget_show (viewport1);<br>> hildon_appview_add_with_scrollbar(main, viewport1);
<br>><br>> [/end code]<br>><br>> It produces no compiler error, but by running it (inside scratchbox and on<br>> the real device) produces only a blank window with no widget drawn.<br>> What am I doing wrong?
<br><br>My guess is that you don't do gtk_widget_show_all() on the HildonApp?<br>The add_with_scrollbar creates a ScrolledWindow but does not show()<br>it.<br><br>Btw, you don't need to use the viewport with add_with_scrollbar(), it
<br>does basically the same thing that your first code snippet (it's not<br>an error though).<br><br>--<br>Kalle Vahlman, <a href="mailto:zuh@iki.fi">zuh@iki.fi</a><br>Powered by <a href="http://movial.fi">http://movial.fi
</a><br>Interesting stuff at <a href="http://syslog.movial.fi">http://syslog.movial.fi</a><br></blockquote></div><br><br>Thanks Kalle,<br><br>you're right I just did a gtk_widget_sow() on the HildonApp!<br><br>Regarding the viewport, I think it acts like a container for all subsequent widgets in this app - to avoid using it I've to set up another container for those widgets and add_with_scrollbar() it to the appview. Or is there another way?
<br><br>Luca Donaggio<br>