summaryrefslogtreecommitdiff
path: root/interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'interface.h')
-rw-r--r--interface.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/interface.h b/interface.h
index 2a2cb18..2b444ea 100644
--- a/interface.h
+++ b/interface.h
@@ -19,6 +19,19 @@
#ifndef INTERFACE_H
#define INTERFACE_H
-GtkWidget *create_main_window();
+#include <gtk/gtk.h>
+#include "listview.h"
+
+GtkWidget *main_window;
+void create_main_window();
+void add_sentence(char *);
+void clear_sentences();
+void search_sentences(const gchar *);
+void enable_search();
+void change_search_navigation_state(gboolean);
+void set_find_text(gchar *);
+void clear_search_tags();
+void find_next(const gchar *word);
+void find_prev(const gchar *word);
#endif /*INTERFACE_H*/