<br><br><div><span class="gmail_quote">2006/1/19, 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/19/06, Luca Donaggio &lt;<a href="mailto:donaggio@gmail.com">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">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>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><br>Luca Donaggio<br>