I'm Hildonizing a GTK2 application which uses ui_manager_* functions to build its menu and I'm having the following problem:<br>
<br>
each menu, upon its creation, is attached to a parent GtkMenuBar and It
seems that I can't re-assign it to the GtkMenu built in in my
HildonAppView. That's what I do:<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mainmenu = hildon_appview_get_menu (HILDON_APPVIEW (window));<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; gtk_menu_append (mainmenu, GTK_MENU (gtk_ui_manager_get_widget (ui, &quot;/MenuBar/FileMenu&quot;)));<br>
<br>
the app bilds just fine, but when I launch it:<br>
<br>
$ run-standalone.sh ./myapp<br>
<br>
GLIB WARNING ** Gtk - Can't set a parent on widget which has a parent<br>
<br>
and when I click on the app title to show the menu, it crashes and core dumps:<br>
<br>
myapp[28154]: GLIB CRITICAL ** Gtk - gtk_widget_realize: assertion
`GTK_WIDGET_ANCHORED (widget) || GTK_IS_INVISIBLE (widget)' failed<br>
myapp[28154]: GLIB CRITICAL ** Gtk - gtk_widget_realize: assertion
`GTK_WIDGET_ANCHORED (widget) || GTK_IS_INVISIBLE (widget)' failed<br>
myapp[28154]: GLIB CRITICAL ** Gtk - gtk_widget_real_map: assertion `GTK_WIDGET_REALIZED (widget) == TRUE' failed<br>
myapp[28154]: GLIB CRITICAL ** Gdk - gdk_window_invalidate_rect: assertion `window != NULL' failed<br>
myapp[28154]: GLIB CRITICAL ** Gtk - gtk_widget_realize: assertion
`GTK_WIDGET_ANCHORED (widget) || GTK_IS_INVISIBLE (widget)' failed<br>
myapp[28154]: GLIB CRITICAL ** Gtk - gtk_widget_real_map: assertion `GTK_WIDGET_REALIZED (widget) == TRUE' failed<br>
myapp[28154]: GLIB CRITICAL ** Gdk - gdk_window_invalidate_rect: assertion `window != NULL' failed<br>
myapp[28154]: GLIB CRITICAL ** Gdk - gdk_window_show: assertion `GDK_IS_WINDOW (window)' failed<br>
myapp[28154]: GLIB CRITICAL ** Gdk - gdk_window_invalidate_rect: assertion `window != NULL' failed<br>
myapp[28154]: GLIB CRITICAL ** Gdk - gdk_window_get_origin: assertion `window != NULL' failed<br>
myapp[28154]: GLIB CRITICAL ** Gdk - gdk_window_get_origin: assertion `window != NULL' failed<br>
myapp[28154]: GLIB WARNING ** Gtk - Menu not on screen<br>
myapp[28154]: GLIB CRITICAL ** Gtk - gtk_widget_event: assertion `WIDGET_REALIZED_FOR_EVENT (widget, event)' failed<br>
myapp[28154]: GLIB CRITICAL ** Gtk - gtk_widget_event: assertion `WIDGET_REALIZED_FOR_EVENT (widget, event)' failed<br>
myapp[28154]: GLIB CRITICAL ** Gtk - gtk_widget_event: assertion `WIDGET_REALIZED_FOR_EVENT (widget, event)' failed<br>
myapp[28154]: GLIB CRITICAL ** Gtk - gtk_widget_event: assertion `WIDGET_REALIZED_FOR_EVENT (widget, event)' failed<br>
myapp[28154]: GLIB ERROR ** Gtk - file gtkcontainer.c: line 2649
(gtk_container_propagate_expose): assertion failed: (child-&gt;parent
== GTK_WIDGET (container))<br>
aborting...<br>
/usr/bin/run-standalone.sh: line 16: 28154
Aborted&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
(core dumped) $*<br>
<br>
looking at the on-line tutorials on <a href="http://maemo.org">maemo.org</a>, it seems that ui_manager
method to build menu is supported, but it's not explained hot to get it
to work!<br>
<br>
Any idea, or does anyone has already used this method before?<br>
<br>
P.S.: adding toolbars created with this very same method works pretty well!<br>
<br>
Luca D.<br>