summaryrefslogtreecommitdiff
path: root/text_input_dialog.h
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2009-12-30 04:30:25 +0100
committerJon Bergli Heier <snakebite@jvnv.net>2009-12-30 04:30:25 +0100
commit4bff733352f608744e86328deb443d68ce666f7d (patch)
treee4bd26c2152fb19fe696e25ffffdb5198a22a508 /text_input_dialog.h
parenta5a787eac52734a926d39e958d22b87a450d42aa (diff)
Basic adding and assigning of tags implemented.
Committing this before it gets out of hand. Only adding new tags is working atm. Created a text input dialog. Added a tag dialog. Other minor changes.
Diffstat (limited to 'text_input_dialog.h')
-rw-r--r--text_input_dialog.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/text_input_dialog.h b/text_input_dialog.h
new file mode 100644
index 0000000..6edf6ac
--- /dev/null
+++ b/text_input_dialog.h
@@ -0,0 +1,10 @@
+#ifndef _TEXT_INPUT_DIALOG_H_
+#define _TEXT_INPUT_DIALOG_H_
+
+#include <gtk/gtk.h>
+#include <glib.h>
+
+GtkDialog *text_input_dialog_new(GtkWidget*, const gchar*);
+gchar *text_input_dialog_get_text(GtkWidget*);
+
+#endif