X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=shell%2Fev-view.h;h=e57371aa4da698f59b854e8038cb427e71f79165;hb=d3ea391eeabb901a8dfe269edc5980f0f800aa65;hp=97eb983631903ae00372ecfc070892e707b0a3a9;hpb=dbe299f7b2412d318f0eda7c401feba68c8663e3;p=evince.git diff --git a/shell/ev-view.h b/shell/ev-view.h index 97eb9836..e57371aa 100644 --- a/shell/ev-view.h +++ b/shell/ev-view.h @@ -32,7 +32,6 @@ G_BEGIN_DECLS #define EV_VIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EV_TYPE_VIEW, EvView)) #define EV_IS_VIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EV_TYPE_VIEW)) - typedef struct _EvView EvView; typedef struct _EvViewClass EvViewClass; @@ -48,7 +47,9 @@ void ev_view_copy (EvView *view); void ev_view_select_all (EvView *view); /* Navigation */ +gboolean ev_view_can_go_back (EvView *view); void ev_view_go_back (EvView *view); +gboolean ev_view_can_go_forward (EvView *view); void ev_view_go_forward (EvView *view); void ev_view_go_to_link (EvView *view, EvLink *link); @@ -63,7 +64,9 @@ void ev_view_normal_size (EvView *view); void ev_view_best_fit (EvView *view); void ev_view_fit_width (EvView *view); -char* ev_view_get_find_status_message (EvView *view); +/* Status */ +const char *ev_view_get_status (EvView *view); +const char *ev_view_get_find_status (EvView *view); G_END_DECLS