X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=shell%2Fev-application.h;h=e0d068a17eb6ef988757cee832b25f4a3bb668b1;hb=7b6b60092efb2c318a60b7c6b472de1697ac3663;hp=e6a3cf51d17dbcd7fac10ba005fcfb6d19a80f3d;hpb=c3e1500a4815225f08e1b20dd066559e8c92c280;p=evince.git diff --git a/shell/ev-application.h b/shell/ev-application.h index e6a3cf51..e0d068a1 100644 --- a/shell/ev-application.h +++ b/shell/ev-application.h @@ -23,20 +23,29 @@ #ifndef EV_APPLICATION_H #define EV_APPLICATION_H +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include "ev-window.h" +#include "egg-toolbars-model.h" +#ifndef HAVE_GTK_RECENT +#include "egg-recent-model.h" +#endif +#include "totem-scrsaver.h" + 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)) @@ -44,21 +53,65 @@ typedef struct _EvApplicationPrivate EvApplicationPrivate; #define EV_APP (ev_application_get_instance ()) struct _EvApplication { - GObject base_instance; - EvApplicationPrivate *priv; + GObject base_instance; + + gchar *toolbars_file; + + EggToolbarsModel *toolbars_model; + EggToolbarsModel *preview_toolbars_model; + +#ifndef HAVE_GTK_RECENT + EggRecentModel *recent_model; +#endif + + TotemScrsaver *scr_saver; + + gchar *last_chooser_uri; }; struct _EvApplicationClass { - GObjectClass base_class; + GObjectClass base_class; }; -GType ev_application_get_type (void); -EvApplication *ev_application_get_instance (void); -void ev_application_open (EvApplication *application, - GError *err); -EvWindow *ev_application_new_window (EvApplication *application); -EvWindow * ev_application_get_empty_window (EvApplication *application); +GType ev_application_get_type (void); +EvApplication *ev_application_get_instance (void); +gboolean ev_application_register_service (EvApplication *application); +void ev_application_shutdown (EvApplication *application); + + +gboolean ev_application_open_window (EvApplication *application, + GHashTable *args, + guint32 timestamp, + GError **error); +gboolean ev_application_open_uri (EvApplication *application, + const char *uri, + GHashTable *args, + guint timestamp, + GError **error); +void ev_application_open_uri_at_dest (EvApplication *application, + const char *uri, + GdkScreen *screen, + EvLinkDest *dest, + EvWindowRunMode mode, + gboolean unlink_temp_file, + guint32 timestamp); +void ev_application_open_uri_list (EvApplication *application, + GSList *uri_list, + GdkScreen *screen, + guint32 timestamp); +GList *ev_application_get_windows (EvApplication *application); +EggToolbarsModel *ev_application_get_toolbars_model (EvApplication *application, + gboolean preview); +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); +void ev_application_screensaver_enable (EvApplication *application); +void ev_application_screensaver_disable (EvApplication *application); G_END_DECLS #endif /* !EV_APPLICATION_H */