]> www.fi.muni.cz Git - evince.git/blobdiff - shell/ev-application.h
Add documentation notes
[evince.git] / shell / ev-application.h
index 8dcd2f7cc5869baddb36ef86a2748148a5f30444..880f0377a3c24bb476bd8661bf56eab7db970bb9 100644 (file)
 #include "ev-window.h"
 
 #include "egg-toolbars-model.h"
+#ifndef HAVE_GTK_RECENT
 #include "egg-recent-model.h"
+#endif
 
 G_BEGIN_DECLS
 
 typedef struct _EvApplication EvApplication;
 typedef struct _EvApplicationClass EvApplicationClass;
-typedef struct _EvApplicationPrivate EvApplicationPrivate;
 
 #define EV_TYPE_APPLICATION                    (ev_application_get_type ())
 #define EV_APPLICATION(object)                 (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_APPLICATION, EvApplication))
-#define EV_APPLICATION_CLASS(klass)            (G_TYPE_CHACK_CLASS_CAST((klass), EV_TYPE_APPLICATION, EvApplicationClass))
+#define EV_APPLICATION_CLASS(klass)            (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_APPLICATION, EvApplicationClass))
 #define EV_IS_APPLICATION(object)              (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_APPLICATION))
 #define EV_IS_APPLICATION_CLASS(klass)         (G_TYPE_CHECK_CLASS_TYPE((klass), EV_TYPE_APPLICATION))
 #define EV_APPLICATION_GET_CLASS(object)       (G_TYPE_INSTANCE_GET_CLASS((object), EV_TYPE_APPLICATION, EvApplicationClass))
@@ -52,7 +53,11 @@ struct _EvApplication {
        gchar *toolbars_file;
        
        EggToolbarsModel *toolbars_model;
+#ifndef HAVE_GTK_RECENT
        EggRecentModel  *recent_model;
+#endif
+       
+       gchar *last_chooser_uri;
 };
 
 struct _EvApplicationClass {
@@ -66,13 +71,18 @@ void                  ev_application_shutdown            (EvApplication   *application);
 
 
 gboolean          ev_application_open_window         (EvApplication   *application,
-                                                     guint32         timestamp,
+                                                     guint32          timestamp,
                                                      GError         **error);
 gboolean          ev_application_open_uri            (EvApplication   *application,
-                                                     const char      *uri,
-                                                     const char      *page_label,
-                                                     guint32         timestamp,
+                                                     const char      *uri,
+                                                     GHashTable      *args,
+                                                     guint            timestamp,
                                                      GError         **error);
+void              ev_application_open_uri_at_dest    (EvApplication   *application,
+                                                     const char      *uri,
+                                                     EvLinkDest      *dest,
+                                                     EvWindowRunMode  mode,
+                                                     guint32          timestamp);
 void             ev_application_open_uri_list       (EvApplication   *application,
                                                      GSList          *uri_list,
                                                      guint32          timestamp);
@@ -80,7 +90,12 @@ GList                 *ev_application_get_windows         (EvApplication   *application);
 
 EggToolbarsModel *ev_application_get_toolbars_model  (EvApplication   *application);
 void              ev_application_save_toolbars_model (EvApplication   *application);
+#ifndef HAVE_GTK_RECENT
 EggRecentModel   *ev_application_get_recent_model    (EvApplication   *application);
+#endif
+void             ev_application_set_chooser_uri     (EvApplication   *application, 
+                                                     const gchar     *uri);
+const gchar     *ev_application_get_chooser_uri     (EvApplication   *application);
 
 G_END_DECLS