Mercurial > pidgin.yaz
annotate finch/libgnt/gnt.h @ 16093:ca6798ec1d70
Add shlomi to the COPYRIGHT file. He wrote the RTL patch, which is apparently
slightly broken and needs some work for Yahoo and IRC. I'll either get that
fixed tonight, or revert it.
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Fri, 13 Apr 2007 21:35:30 +0000 |
parents | f00f2e283ffb |
children | 8410511f4dbb |
rev | line source |
---|---|
15818 | 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_resize_widget(GntWidget *widget, int width, int height); | |
20 | |
21 void gnt_screen_move_widget(GntWidget *widget, int x, int y); | |
22 | |
23 void gnt_screen_rename_widget(GntWidget *widget, const char *text); | |
24 | |
25 gboolean gnt_widget_has_focus(GntWidget *widget); | |
26 | |
27 void gnt_widget_set_urgent(GntWidget *widget); | |
28 | |
29 void gnt_register_action(const char *label, void (*callback)()); | |
30 | |
31 gboolean gnt_screen_menu_show(gpointer menu); | |
32 | |
33 void gnt_quit(void); | |
34 | |
35 GntClipboard *gnt_get_clipboard(void); | |
36 | |
37 gchar *gnt_get_clipboard_string(void); | |
38 | |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15818
diff
changeset
|
39 void gnt_set_clipboard_string(gchar *string); |