]> www.fi.muni.cz Git - evince.git/blobdiff - pdf/xpdf/gpdf.cc
Completely synched with Xpdf 0.90
[evince.git] / pdf / xpdf / gpdf.cc
index d8d0010b33ca1b0df3e8abf19682764a8ba674de..a4f64a2e059c8fcf4f26dadaef3fda83990453a4 100644 (file)
@@ -4,6 +4,7 @@
  * Author:
  *   Michael Meeks <michael@imaginator.com>
  */
+#include "config.h"
 #include <stdio.h>
 #include <stdlib.h>
 #include <stddef.h>
@@ -19,7 +20,6 @@ extern "C" {
 #include <bonobo.h>
 #undef  GString 
 }
-#include "config.h"
 #include "bonobo-application-x-pdf.h"
 
 poptContext ctx;
@@ -37,7 +37,7 @@ typedef struct _Container Container;
    is due to how much MDI sucks; unutterably */
 struct _Container {
        BonoboItemContainer *container;
-       BonoboUIHandler     *uih;
+       BonoboUIComponent   *ui_component;
   
        GtkWidget           *app;
        GtkWidget           *slot;
@@ -49,7 +49,7 @@ struct  _Component {
        Container         *container;
 
        BonoboClientSite   *client_site;
-       BonoboViewFrame   *view_frame;
+       BonoboViewFrame    *view_frame;
        BonoboObjectClient *server;
 };
 
@@ -64,41 +64,26 @@ extern "C" {
   static void       container_close_cmd (GtkWidget *widget, Container *container);
   static void       container_exit_cmd  (void);
   static void       container_about_cmd (GtkWidget *widget, Container *container);
+  static void       container_dump_cmd  (GtkWidget *widget, Container *container);
   static Component *container_activate_component (Container *container, char *component_goad_id);
 }
 
 /*
  * The menus.
  */
-static GnomeUIInfo container_file_menu [] = {
-       GNOMEUIINFO_MENU_OPEN_ITEM (container_open_cmd, NULL),
-       GNOMEUIINFO_SEPARATOR,
-       GNOMEUIINFO_MENU_CLOSE_ITEM(container_close_cmd, NULL),
-       GNOMEUIINFO_SEPARATOR,
-       GNOMEUIINFO_MENU_EXIT_ITEM (container_exit_cmd, NULL),
-       GNOMEUIINFO_END
-};
+BonoboUIVerb verbs [] = {
+       BONOBO_UI_UNSAFE_VERB ("FileOpen",  container_open_cmd),
+       BONOBO_UI_UNSAFE_VERB ("FileClose", container_close_cmd),
+       BONOBO_UI_UNSAFE_VERB ("FileExit",  container_exit_cmd),
 
-static GnomeUIInfo container_help_menu [] = {
-        GNOMEUIINFO_MENU_ABOUT_ITEM(container_about_cmd, NULL),
-       GNOMEUIINFO_END
-};
-
-static GnomeUIInfo container_main_menu [] = {
-       GNOMEUIINFO_MENU_FILE_TREE (container_file_menu),
-       GNOMEUIINFO_MENU_HELP_TREE (container_help_menu),
-       GNOMEUIINFO_END
-};
+       BONOBO_UI_UNSAFE_VERB ("HelpAbout", container_about_cmd),
 
-static GnomeUIInfo container_toolbar [] = {
-       GNOMEUIINFO_ITEM_STOCK (
-               N_("Open"), N_("Opens an existing workbook"),
-               container_open_cmd, GNOME_STOCK_PIXMAP_OPEN),
+       BONOBO_UI_UNSAFE_VERB ("DebugDumpXml", container_dump_cmd),
 
-       GNOMEUIINFO_SEPARATOR,
-       GNOMEUIINFO_END
+       BONOBO_UI_VERB_END
 };
 
+
 extern "C" {
   static gboolean
   open_pdf (Container *container, const char *name)
@@ -113,7 +98,7 @@ extern "C" {
     g_return_val_if_fail (container->view_widget == NULL, FALSE);
 
     comp = container_activate_component (
-           container, "OAFIID:gpdf_component:892f2727-e2ec-423c-91ad-6f7b75fec6c8");
+           container, "OAFIID:GNOME_XPDF_Embeddable");
 
     if (!comp || !(object = comp->server)) {
       gnome_error_dialog (_("Could not launch bonobo object."));
@@ -121,7 +106,7 @@ extern "C" {
     }
     
     CORBA_exception_init (&ev);
-    persist = Bonobo_Unknown_query_interface (
+    persist = Bonobo_Unknown_queryInterface (
       bonobo_object_corba_objref (BONOBO_OBJECT (object)),
       "IDL:Bonobo/PersistStream:1.0", &ev);
     
@@ -131,10 +116,10 @@ extern "C" {
       return FALSE;
     }
     
-    stream = bonobo_stream_fs_open (name, Bonobo_Storage_READ);
+    stream = bonobo_stream_open (BONOBO_IO_DRIVER_FS, name, Bonobo_Storage_READ, 0);
     
     if (stream == NULL) {
-      char *err = g_strconcat (_("Could not open "), name, NULL);
+      char *err = g_strdup_printf (_("Could not open %s"), name);
       gnome_error_dialog_parented (err, GTK_WINDOW(container->app));
       g_free (err);
       return FALSE;
@@ -211,7 +196,7 @@ extern "C" {
        g_free (fname);
       } else {
        GtkWidget *dialog;
-       dialog = gnome_message_box_new ("Can't open a directory",
+       dialog = gnome_message_box_new (_("Can't open a directory"),
                                        GNOME_MESSAGE_BOX_ERROR,
                                        GNOME_STOCK_BUTTON_OK, NULL);
        gnome_dialog_set_parent (GNOME_DIALOG (dialog),
@@ -302,6 +287,12 @@ extern "C" {
       container_destroy ((Container *)containers->data);
   }
 
+static void
+container_dump_cmd (GtkWidget *widget, Container *container)
+{
+       bonobo_window_dump (BONOBO_WINDOW(container->app), "on demand");
+}
+
 static void
 container_about_cmd (GtkWidget *widget, Container *container)
 {
@@ -343,7 +334,7 @@ container_set_view (Container *container, Component *component)
         */
        view_frame = bonobo_client_site_new_view (
                component->client_site,
-               bonobo_ui_compat_get_container (container->uih));
+               bonobo_ui_component_get_container (container->ui_component));
 
        component->view_frame = view_frame;
 
@@ -392,13 +383,6 @@ container_launch_component (BonoboClientSite    *client_site,
                return NULL;
        }
 
-       /*
-        * The BonoboContainer object maintains a list of the
-        * ClientSites which it manages.  Here we add the new
-        * ClientSite to that list.
-        */
-       bonobo_item_container_add (container, BONOBO_OBJECT (client_site));
-
        return object_server;
 }
 
@@ -475,33 +459,6 @@ extern "C" {
       tmp_list = g_list_next (tmp_list);
     }
   }
-
-}  
-
-static void
-container_create_menus (Container *container)
-{
-       BonoboUIHandlerMenuItem *menu_list;
-
-       bonobo_ui_handler_create_menubar (container->uih);
-
-       /*
-        * Create the basic menus out of UIInfo structures.
-        */
-       menu_list = bonobo_ui_handler_menu_parse_uiinfo_list_with_data (container_main_menu, container);
-       bonobo_ui_handler_menu_add_list (container->uih, "/", menu_list);
-       bonobo_ui_handler_menu_free_list (menu_list);
-}
-
-static void
-container_create_toolbar (Container *container)
-{
-       BonoboUIHandlerToolbarItem *toolbar;
-
-       bonobo_ui_handler_create_toolbar (container->uih, "pdf");
-       toolbar = bonobo_ui_handler_toolbar_parse_uiinfo_list_with_data (container_toolbar, container);
-       bonobo_ui_handler_toolbar_add_list (container->uih, "/pdf/", toolbar);
-       bonobo_ui_handler_toolbar_free_list (toolbar);
 }
 
 static Container *
@@ -513,11 +470,12 @@ container_new (const char *fname)
          { "text/uri-list", 0, 0 },
        };
        static gint n_drag_types = sizeof (drag_types) / sizeof (drag_types [0]);
+       BonoboUIContainer *ui_container;
        
        container = g_new0 (Container, 1);
 
-       container->app = bonobo_win_new ("pdf-viewer",
-                                        "GNOME PDF viewer");
+       container->app = bonobo_window_new ("pdf-viewer",
+                                        _("GNOME PDF viewer"));
 
        gtk_drag_dest_set (container->app,
                           GTK_DEST_DEFAULT_ALL,
@@ -537,26 +495,28 @@ container_new (const char *fname)
        container->slot = gtk_event_box_new ();
        gtk_widget_show (container->slot);
 
-       bonobo_win_set_contents (BONOBO_WIN (container->app),
+       bonobo_window_set_contents (BONOBO_WINDOW(container->app),
                                 GTK_WIDGET (container->slot));
+       gtk_widget_show_all (container->slot);
 
        gtk_object_set_data (GTK_OBJECT (container->app), "container_data", container);
        gtk_signal_connect  (GTK_OBJECT (container->app), "delete_event",
                             GTK_SIGNAL_FUNC (container_destroy_cb), container);
 
-       /*
-        * Create the BonoboUIHandler object which will be used to
-        * create the container's menus and toolbars.  The UIHandler
-        * also creates a CORBA server which embedded components use
-        * to do menu/toolbar merging.
-        */
-       container->uih = bonobo_ui_handler_new ();
-       bonobo_ui_handler_set_app (container->uih, BONOBO_WIN (container->app));
+       ui_container = bonobo_ui_container_new ();
+       bonobo_ui_container_set_win (ui_container, BONOBO_WINDOW(container->app));
 
-       container_create_menus   (container);
-       container_create_toolbar (container);
+       container->ui_component = bonobo_ui_component_new ("gpdf");
+       bonobo_ui_component_set_container (
+               container->ui_component,
+               bonobo_object_corba_objref (BONOBO_OBJECT (ui_container)));
 
-       gtk_widget_show_all (container->app);
+       bonobo_ui_component_add_verb_list_with_data (
+               container->ui_component, verbs, container);
+
+       bonobo_ui_util_set_ui (container->ui_component, DATADIR, "gpdf-ui.xml", "gpdf");
+
+       gtk_widget_show (container->app);
 
        containers = g_list_append (containers, container);
 
@@ -566,7 +526,7 @@ container_new (const char *fname)
            return NULL;
          }
 
-       gtk_widget_show_all (container->app);
+       gtk_widget_show (container->app);
 
        return container;
 }
@@ -574,46 +534,49 @@ container_new (const char *fname)
 int
 main (int argc, char **argv)
 {
-  CORBA_Environment ev;
-  CORBA_ORB         orb;
-  const char      **view_files = NULL;
-  gboolean          loaded;
-  int               i;
-  
-  CORBA_exception_init (&ev);
-  
-
-  gnomelib_register_popt_table (oaf_popt_options, "OAF");
-  gnome_init_with_popt_table("PDFViewer", "0.0.1",
-                            argc, argv,
-                            gpdf_popt_options, 0, &ctx); 
-  orb = oaf_init (argc, argv);
-
-  CORBA_exception_free (&ev);
-
-  if (bonobo_init (orb, NULL, NULL) == FALSE)
-    g_error (_("Could not initialize Bonobo!\n"));
-  bonobo_activate ();
-
-  view_files = poptGetArgs (ctx);
-
-  /* Load files */
-  i = 0;
-  loaded = FALSE;
-  if (view_files) {
-    for (i = 0; view_files[i]; i++)
-      if (container_new (view_files[i])) {
-       loaded = TRUE;
-       while (gtk_events_pending ())
-         gtk_main_iteration ();
-      }
-  }
-  if ((i == 0) || !loaded)
-    container_new (NULL);
-  
-  poptFreeContext (ctx);
-
-  gtk_main ();
+       CORBA_Environment ev;
+       CORBA_ORB         orb;
+       const char      **view_files = NULL;
+       gboolean          loaded;
+       int               i;
+
+       bindtextdomain (PACKAGE, GNOMELOCALEDIR);
+       textdomain (PACKAGE);
+       setlocale (LC_ALL, "");
+       
+       CORBA_exception_init (&ev);
+       
+       gnomelib_register_popt_table (oaf_popt_options, "OAF");
+       gnome_init_with_popt_table("PDFViewer", "0.0.1",
+                                  argc, argv,
+                                  gpdf_popt_options, 0, &ctx); 
+       orb = oaf_init (argc, argv);
+       
+       CORBA_exception_free (&ev);
+       
+       if (bonobo_init (orb, NULL, NULL) == FALSE)
+               g_error (_("Could not initialize Bonobo!\n"));
+       bonobo_activate ();
+       
+       view_files = poptGetArgs (ctx);
+       
+       /* Load files */
+       i = 0;
+       loaded = FALSE;
+       if (view_files) {
+               for (i = 0; view_files[i]; i++)
+                       if (container_new (view_files[i])) {
+                               loaded = TRUE;
+                               while (gtk_events_pending ())
+                                       gtk_main_iteration ();
+                       }
+       }
+       if ((i == 0) || !loaded)
+               container_new (NULL);
+       
+       poptFreeContext (ctx);
+       
+       gtk_main ();
        
-  return 0;
+       return 0;
 }