comparison 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
comparison
equal deleted inserted replaced
15816:317e7613e581 15817:0e3a8505ebbe
1 #include <glib.h>
2 #include "gntwidget.h"
3 #include "gntclipboard.h"
4 #include "gntcolors.h"
5 #include "gntkeys.h"
6
7 void gnt_init(void);
8
9 void gnt_main(void);
10
11 gboolean gnt_ascii_only(void);
12
13 void gnt_screen_occupy(GntWidget *widget);
14
15 void gnt_screen_release(GntWidget *widget);
16
17 void gnt_screen_update(GntWidget *widget);
18
19 void gnt_screen_take_focus(GntWidget *widget);
20
21 void gnt_screen_resize_widget(GntWidget *widget, int width, int height);
22
23 void gnt_screen_move_widget(GntWidget *widget, int x, int y);
24
25 void gnt_screen_rename_widget(GntWidget *widget, const char *text);
26
27 gboolean gnt_widget_has_focus(GntWidget *widget);
28
29 void gnt_widget_set_urgent(GntWidget *widget);
30
31 void gnt_register_action(const char *label, void (*callback)());
32
33 gboolean gnt_screen_menu_show(gpointer menu);
34
35 void gnt_quit(void);
36
37 GntClipboard *gnt_get_clipboard(void);
38
39 gchar *gnt_get_clipboard_string(void);
40
41 void gnt_set_clipboard_string(gchar *);