/* * GUI search bar header * * Copyright INOUE Seiichiro , licensed under the GPL. */ #ifndef __GDIFF_SEARCHBAR_H__ #define __GDIFF_SEARCHBAR_H__ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ /* Forward declarations of types */ typedef struct _GdiffSearchBar GdiffSearchBar; /* Global function declarations */ extern GdiffSearchBar* searchbar_new(GDiffWindow *gdwin); extern void searchbar_delete(GdiffSearchBar *searchbar); extern void searchbar_show(GdiffSearchBar *searchbar, gboolean to_show); extern void searchbar_grab_focus(GdiffSearchBar *searchbar); extern void searchbar_show_button(GdiffSearchBar *searchbar, int num); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __GDIFF_SEARCHBAR_H__ */