<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/18/06, Fred Lefévère-Laaoide &lt;<a href="mailto:Fred@lefevere-laoide.net">Fred@lefevere-laoide.net</a>&gt; wrote:<br>&gt; Have you try gtk_widget_get_toplevel ?<br><br>That would give the HildonApp, as AppViews are not toplevels. You
<br>could then of course iterate over the list of appviews and check which<br>has the menu...<br><br>&gt; Luca Donaggio wrote:<br>&gt; &gt; How can I get a reference to the parent AppView giving a pointer to its<br>&gt; &gt; GtkMenu?
<br><br>...but best would be to determine if there was a way around it. What<br>exactly is the use case?<br><br>&gt; &gt; gtk_menu_get_attach_widget() doesn't work and gtk_widget_get_parent()<br>&gt; &gt; returns a pointer to some unknown object (I checked it).
<br><br>The menu is not attached to any widget, nor is it strictly tied to the<br>AppView. I'm a bit surprised thet the get_parent() actually returns<br>anything, as menus should be toplevel widgets. You could print the<br>
name of the widget with gtk_widget_name() and the type with<br>G_OBJECT_TYPE_NAME() to see what it is.<br><br>As you see, the menu has no good connection to the view it belongs to,<br>so it's probably better to rethink what you are doing in a different
<br>way if possible.<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>_______________________________________________<br>maemo-developers mailing list<br><a href="mailto:maemo-developers@maemo.org">maemo-developers@maemo.org</a><br><a href="https://maemo.org/mailman/listinfo/maemo-developers">
https://maemo.org/mailman/listinfo/maemo-developers</a><br></blockquote></div><br>gtk_widget_get_name() returns &quot;GtkWindow&quot; as well as G_OBJECT_TYPE_NAME().<br><br>I'm
tryng to port grsync to maemo, it's almost done really, but for this
menu related issue. Grsync has been made with Glade and Glade uses a
lookup_widget() function to retrieve widgets programmatically by their
names. It takes two input parameters: a GtkWidget reference and a
string with the name of the widget to look for. the widget reference
can be ANY widget, so the first thing it does is trying to get the &quot;top
level&quot; widget - ie the widget which has been used as a container of all
the others in all the g_object_set_data and g_object_set_data_full
previous calls, which in my case is the (only one) HildonAppView.
<br>If lookup_widget is invoked from one of the menu items, it first
gets a reference of its parent menu and then a reference to this
&quot;phantom&quot; GtkWindow (which has no parent) and that's all - no reference
to the AppView.
<br>Here is lookup_widget() code (I tweaked it a little to recognize a HildonAppView and stop looking further):<br><br>[code]<br><br>GtkWidget*<br>lookup_widget&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<div id="mb_3">&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 = gtk_menu_get_attach_widget (GTK_MENU (widget)); // &lt;- THIS DOESN'T WORK<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; parent = gtk_widget_get_parent(widget); // &lt;- THIS RETURNS A REFERENCE TO A GtkWindow
<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><br>[/end code]</div><br>Luca Donaggio<br>