diff finch/libgnt/gnt.h @ 15817:0e3a8505ebbe

renamed gaim-text to finch
author Sean Egan <seanegan@gmail.com>
date Sun, 18 Mar 2007 19:38:15 +0000
parents
children f00f2e283ffb
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/finch/libgnt/gnt.h	Sun Mar 18 19:38:15 2007 +0000
@@ -0,0 +1,41 @@
+#include <glib.h>
+#include "gntwidget.h"
+#include "gntclipboard.h"
+#include "gntcolors.h"
+#include "gntkeys.h"
+
+void gnt_init(void);
+
+void gnt_main(void);
+
+gboolean gnt_ascii_only(void);
+
+void gnt_screen_occupy(GntWidget *widget);
+
+void gnt_screen_release(GntWidget *widget);
+
+void gnt_screen_update(GntWidget *widget);
+
+void gnt_screen_take_focus(GntWidget *widget);
+
+void gnt_screen_resize_widget(GntWidget *widget, int width, int height);
+
+void gnt_screen_move_widget(GntWidget *widget, int x, int y);
+
+void gnt_screen_rename_widget(GntWidget *widget, const char *text);
+
+gboolean gnt_widget_has_focus(GntWidget *widget);
+
+void gnt_widget_set_urgent(GntWidget *widget);
+
+void gnt_register_action(const char *label, void (*callback)());
+
+gboolean gnt_screen_menu_show(gpointer menu);
+
+void gnt_quit(void);
+
+GntClipboard *gnt_get_clipboard(void);
+
+gchar *gnt_get_clipboard_string(void);
+
+void gnt_set_clipboard_string(gchar *);