Ok... I know we've talked about this, but I forgot what the change were, and if they have already happened... I am now compiling our app using GTK+-2.20 (used the website script) in 10.5 i386 mode (can't get our app to work in 64bit), and I even have double made sure I have the ige-mac-integration via jhbuild, but my menu is showing up in my window, instead of being integrated into menu bar. I know there has been a lot of talk about GTKApplication (which I support greatly) did I miss the boat. Did the implementation for the integration change, and I did not catch it? What am I missing, the website still looks the same. I'm still using the old: #ifdef MAC_INTEGRATION void isi_display_activate_quartz(IsiDisplay *self){ /* Sanity Check */ g_return_val_if_fail(self != NULL, NULL); /* Check for valid toolbar */ if ( self->priv->menubar == NULL ) self->priv->menubar = gtk_menu_bar_new(); gtk_widget_hide(self->priv->menubar); ige_mac_menu_set_menu_bar(GTK_MENU_SHELL(self->priv->menubar)); GtkMenuItem * quit_item = gtk_menu_item_new_with_label ("Quit"); g_signal_connect (quit_item, "activate", G_CALLBACK (isi_display_widget_quit), self); ige_mac_menu_set_quit_menu_item (GTK_MENU_ITEM (quit_item)); self->priv->igedock = ige_mac_dock_new (); g_signal_connect (self->priv->igedock, "clicked", G_CALLBACK ( isi_display_diconify ), self); g_signal_connect (self->priv->igedock, "quit-activate", G_CALLBACK (isi_display_widget_quit), self); return;} #endif /* TESTING: IMAC Quarts integration */ void self_foo_function(){ #ifdef MAC_INTEGRATION isi_display_activate_quartz(self->display); #endif return } ------------------------------------------------------------------------------ Start uncovering the many advantages of virtual appliances and start using them to simplify application deployment and accelerate your shift to cloud computing. http://p.sf.net/sfu/novell-sfdev2dev _______________________________________________ Gtk-osx-users mailing list Gtk-osx-users lists sourceforge net https://lists.sourceforge.net/lists/listinfo/gtk-osx-users |
------------------------------------------------------------------------------ Start uncovering the many advantages of virtual appliances and start using them to simplify application deployment and accelerate your shift to cloud computing. http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________ Gtk-osx-users mailing list Gtk-osx-users lists sourceforge net https://lists.sourceforge.net/lists/listinfo/gtk-osx-users