X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=shell%2Feggfindbar.h;h=49e2b9d34f0d8ad8bfdc07bd61cdbda420c78de3;hb=65c06150e05948eb7b056b0ec5cb9c364b652cfe;hp=217a180f94c086607efb63b900b88be2775bbeb9;hpb=1f7e03f2861f4b8d2bb75bd220754b7a89b7847e;p=evince.git diff --git a/shell/eggfindbar.h b/shell/eggfindbar.h index 217a180f..49e2b9d3 100644 --- a/shell/eggfindbar.h +++ b/shell/eggfindbar.h @@ -32,19 +32,24 @@ G_BEGIN_DECLS typedef struct _EggFindBar EggFindBar; typedef struct _EggFindBarClass EggFindBarClass; +typedef struct _EggFindBarPrivate EggFindBarPrivate; struct _EggFindBar { GtkBin parent_instance; /*< private >*/ - gpointer private_data; + EggFindBarPrivate *priv; }; struct _EggFindBarClass { GtkBinClass parent_class; + void (* next) (EggFindBar *find_bar); + void (* previous) (EggFindBar *find_bar); + void (* close) (EggFindBar *find_bar); + /* Padding for future expansion */ void (*_gtk_reserved1) (void); void (*_gtk_reserved2) (void); @@ -65,8 +70,6 @@ void egg_find_bar_get_all_matches_color (EggFindBar *find_bar, GdkColor *color); void egg_find_bar_get_current_match_color (EggFindBar *find_bar, GdkColor *color); -void egg_find_bar_grab_focus (EggFindBar *find_bar); - void egg_find_bar_set_status_text (EggFindBar *find_bar, const char *text);