Mercurial > pidgin
annotate finch/libgnt/gnt.h @ 16920:09f0bb67a87f
Traditional Pidgin doesn't make any sense. It was only ever the case for
Gaim. Since we're not speaking that name any more, I just removed it.
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Sun, 06 May 2007 00:43:29 +0000 |
parents | f00f2e283ffb |
children | 8410511f4dbb |
rev | line source |
---|---|
15817 | 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 | |
15928
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15817
diff
changeset
|
39 void gnt_set_clipboard_string(gchar *string); |