blob: faf412e272467a5cf5462bb18c673762ddcc56c2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*=======================================*\
| ____ ____ |
| / \ /\ | |
| \____ / \ |____ |
| \ /____\ | |
| \____/prite / \nimation |____ditor |
| |
| Copyleft Vasily_Makarov 2011 |
| |
\*=======================================*/
#ifndef SEARCH_H
#define SEARCH_H
#include <gtk/gtk.h>
#include <gtksourceview/gtksourceview.h>
#include "common.h"
void search_init(GtkWidget *text_view);
gboolean search_find_text(gchar *text);
gboolean search_find_next();
void search_find_dialog_response_callback(GtkWidget *dialog,
gint response_id,
gpointer entry);
#endif
|