What is the big deal ??? The GtkMozEmbed is a graphical widget as any other. 
Have you tried something like this (not tested):


 /* QUOTED */
// hildon stuff currentPageView = HILDON_APPVIEW (hildon_appview_new(NULL));

 hildon_app_set_appview(yourHildonApp, currentPageView);


   // creating the engine
   GtkWidget yourMozEngine = gtk_moz_embed_new ();
g_object_ref(yourMozEngine); // adding the engine widget in current page view
   gtk_container_add (GTK_CONTAINER(currentPageView),
         GTK_WIDGET (yourMozEngine));

   gtk_container_set_focus_child (GTK_CONTAINER (currentPageView),
                 GTK_WIDGET(yourMozEngine));
   gtk_widget_show(GTK_WIDGET(yourMozEngine));


regards

Now I create moz = gtk_moz_embed_new(), how can I show it in the HildonAppView ?

_______________________________________________
maemo-developers mailing list
[email protected]
https://maemo.org/mailman/listinfo/maemo-developers

Reply via email to