<br><br><div><span class="gmail_quote">2006/1/20, Luca Donaggio &lt;<a href="mailto:donaggio@gmail.com">donaggio@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;">
<br><br><div><span class="q"><span class="gmail_quote">2006/1/19, Kalle Vahlman &lt;<a href="mailto:kalle.vahlman@gmail.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">kalle.vahlman@gmail.com</a>
&gt;:</span></span><div><span class="e" id="q_108e7d79a066289d_2"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
On 1/19/06, Luca Donaggio &lt;<a href="mailto:donaggio@gmail.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">donaggio@gmail.com</a>&gt; wrote:<br>[Finding the AppView from a menu reference]<br>
&gt; I'm tryng to port grsync to maemo, it's almost done really, but for this
<br>&gt; menu related issue. Grsync has been made with Glade and Glade uses a<br>&gt; lookup_widget() function to retrieve widgets programmatically by their<br>&gt; names.<br><br>And that's exactly where it fails since it traverses the widget
<br>hierarchy which the menu is not a part of. It's own hierarchy looks<br>something like:<br><br>GtkWindow<br>&nbsp;&nbsp; \- GtkMenu<br>&nbsp;&nbsp;&nbsp;&nbsp;\- (multiple GtkMenuItems)<br><br>Looking at the code, the GtkWindow is the menu's toplevel window (the
<br>menu itself derives from GtkMenuShell which is in turn a GtkContainer<br>so it can not be onscreen otherwise) and thus it is in it's own<br>hierarchy.<br><br>This coupled with the fact that the glade function has no reference to
<br>menu hierarchy (as it is created by the AppView) makes it impossible<br>to find with the standard lookup method.<br><br>From the other mail:<br>&gt;That would not be a big issue, as this app has only one AppView and a
<br>simple call<br>&gt;to hildon_app_get_appview() would do the trick, but ... it doesn't<br>work for me! It<br>&gt;seems to return the same value I got before: ie a reference to a GtkWindow<br>&gt; (probably the window in which the app itself is displayed ?) and not a pointer to
<br>&gt; the HildonApp object.<br><br>This sounds a bit strange, since the HildonApp is a GtkWindow (though<br>the type and name should state HildonApp of course) which has multiple<br>HildonAppViews (derives from GtkBin) as it's children (although it
<br>only shows one at a time).<br><br>--<br>Kalle Vahlman, <a href="mailto:zuh@iki.fi" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">zuh@iki.fi</a><br>Powered by <a href="http://movial.fi" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
http://movial.fi</a><br>Interesting stuff at <a href="http://syslog.movial.fi" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
http://syslog.movial.fi</a><br></blockquote></span></div></div><br><br>I&nbsp; understand. So the GtkWindow, which is the top level widget of an HildonAppView's own menu, is not in any way referrable to the HildonApp to which that HildonAppView is attached?
<br>If this is the case, I don't see any other way to solve the problem apart from maintaining a global reference for the HildonApp and modifying the glade lookup function to get the right pointer to the HildonAppView through that reference directly, without traversing one object's hierarchy anymore.
<br><span class="sg"><br>Luca Donaggio<br>

</span></blockquote></div><br>Ok, i finally managed to solve this issue, next week I'm planning to have the packaging work finished too and to release an hildonized version of grsync for all you rsync-lovers !<br><br>For those interested (if any ;-)):
<br><br>-first I had to manually add a reference to the HildonAppView to its GtkMenu context:<br><br>[code]<br>GLADE_HOOKUP_OBJECT_NO_REF (GTK_WIDGET (menu1), main, &quot;main&quot;);<br><br>[/end code]<br><br>- secondly, this is the working modified version of the original glade function lookup_widget():
<br><br>[code]<br>GtkWidget*<br>lookup_widget&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (GtkWidget&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *widget,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; const gchar&nbsp;&nbsp;&nbsp;&nbsp; *widget_name)<br>{<br>&nbsp; GtkWidget *parent, *found_widget;<br><br>
&nbsp; for (;;)<br>&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (GTK_IS_MENU (widget)) {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; parent = (GtkWidget*) g_object_get_data (G_OBJECT (widget), &quot;main&quot;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } else if (HILDON_IS_APPVIEW (widget))<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; break;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; parent = widget-&gt;parent;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (!parent)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; parent = (GtkWidget*) g_object_get_data (G_OBJECT (widget), &quot;GladeParentKey&quot;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (parent == NULL)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; break;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; widget = parent;
<br>&nbsp;&nbsp;&nbsp; }<br><br>&nbsp; found_widget = (GtkWidget*) g_object_get_data (G_OBJECT (widget),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; widget_name);<br>&nbsp; if (!found_widget)<br>&nbsp;&nbsp;&nbsp; g_warning (&quot;Widget not found: %s&quot;, widget_name);
<br>&nbsp; return found_widget;<br>}<br>[/end code]<br><br>Thanks Fred and Kalle for all your helpful suggestions!<br><br>Luca Donaggio.<br>