<br><br><div><span class="gmail_quote">2006/1/16, Kalle Vahlman &lt;<a href="mailto:kalle.vahlman@gmail.com">kalle.vahlman@gmail.com</a>&gt;:</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 &lt;<a href="mailto:donaggio@gmail.com">donaggio@gmail.com</a>&gt; wrote:<br>&gt; [code]<br>&gt;<br>&gt;&nbsp;&nbsp; main = HILDON_APPVIEW (hildon_appview_new (&quot;Main view&quot;));<br>&gt;&nbsp;&nbsp; hildon_appview_set_fullscreen_key_allowed(main, TRUE );
<br>&gt;&nbsp;&nbsp; gtk_widget_show (GTK_WIDGET (main));<br>&gt;&nbsp;&nbsp; main_icon_pixbuf = create_pixbuf (&quot;grsync.png&quot;);<br>&gt;&nbsp;&nbsp; if (main_icon_pixbuf)<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; {<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; gtk_window_set_icon (GTK_WINDOW (main), main_icon_pixbuf);
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; gdk_pixbuf_unref (main_icon_pixbuf);<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&gt;<br>&gt;&nbsp;&nbsp; viewport1 = gtk_viewport_new (NULL, NULL);<br>&gt;&nbsp;&nbsp; gtk_widget_show (viewport1);<br>&gt;&nbsp;&nbsp; hildon_appview_add_with_scrollbar(main, viewport1);
<br>&gt;<br>&gt; [/end code]<br>&gt;<br>&gt; It produces no compiler error, but by running it (inside scratchbox and on<br>&gt; the real device) produces only a blank window with no widget drawn.<br>&gt; 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>