X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=shell%2Fev-window.h;h=1173390b88e0bdc541b7d2b0ff48d02213e7cdb1;hb=cf38056739ba5eb0c15322d27f6e8a23c82d90c5;hp=9c8d28f37bccf2e0c6a71644bce1dfc922d0c7b5;hpb=1bc11bf9ca800edd4469d5e8c8aeb605d3037bc7;p=evince.git diff --git a/shell/ev-window.h b/shell/ev-window.h index 9c8d28f3..1173390b 100644 --- a/shell/ev-window.h +++ b/shell/ev-window.h @@ -17,34 +17,43 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef EV_WINDOW_H #define EV_WINDOW_H -#include -#include +#include +#include #include "ev-link.h" -#include "ev-page-cache.h" G_BEGIN_DECLS typedef enum { EV_WINDOW_MODE_NORMAL, EV_WINDOW_MODE_FULLSCREEN, - EV_WINDOW_MODE_PRESENTATION, - EV_WINDOW_MODE_PREVIEW + EV_WINDOW_MODE_PRESENTATION } EvWindowRunMode; +typedef struct { + gint start; + gint end; +} EvPrintRange; + +typedef enum { + EV_PRINT_PAGE_SET_ALL, + EV_PRINT_PAGE_SET_EVEN, + EV_PRINT_PAGE_SET_ODD +} EvPrintPageSet; + typedef struct _EvWindow EvWindow; typedef struct _EvWindowClass EvWindowClass; typedef struct _EvWindowPrivate EvWindowPrivate; #define EV_TYPE_WINDOW (ev_window_get_type()) #define EV_WINDOW(object) (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_WINDOW, EvWindow)) -#define EV_WINDOW_CLASS(klass) (G_TYPE_CHACK_CLASS_CAST((klass), EV_TYPE_WINDOW, EvWindowClass)) +#define EV_WINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_WINDOW, EvWindowClass)) #define EV_IS_WINDOW(object) (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_WINDOW)) #define EV_IS_WINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), EV_TYPE_WINDOW)) #define EV_WINDOW_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS((object), EV_TYPE_WINDOW, EvWindowClass)) @@ -59,22 +68,26 @@ struct _EvWindowClass { GtkWindowClass base_class; }; -GType ev_window_get_type (void); -GtkWidget *ev_window_new (void); -const char *ev_window_get_uri (EvWindow *ev_window); -void ev_window_open_uri (EvWindow *ev_window, - const char *uri, - EvLinkDest *dest, - EvWindowRunMode mode); -void ev_window_goto_dest (EvWindow *ev_window, - EvLinkDest *dest); -gboolean ev_window_is_empty (const EvWindow *ev_window); -#ifdef WITH_PRINT -void ev_window_print_range (EvWindow *ev_window, - int first_page, - int last_page); -#endif +GType ev_window_get_type (void) G_GNUC_CONST; +GtkWidget *ev_window_new (void); +const char *ev_window_get_uri (EvWindow *ev_window); +void ev_window_open_uri (EvWindow *ev_window, + const char *uri, + EvLinkDest *dest, + EvWindowRunMode mode, + const gchar *search_string); +void ev_window_open_document (EvWindow *ev_window, + EvDocument *document, + EvLinkDest *dest, + EvWindowRunMode mode, + const gchar *search_string); +gboolean ev_window_is_empty (const EvWindow *ev_window); +void ev_window_print_range (EvWindow *ev_window, + int first_page, + int last_page); +const gchar * ev_window_get_dbus_object_path (EvWindow *ev_window); + + G_END_DECLS #endif /* !EV_WINDOW_H */ -