Sun, 20 Dec 2020 00:51:00 -0600
Cleanup local IP getters
* Rename `purple_network_get_my_ip` to `purple_network_discover_my_ip`.
Nothing actually cares about what it returns, so stop returning anything.
* Use libnice to replace `purple_network_get_local_system_ip`.
Testing Done:
Compile only.
Reviewed at https://reviews.imfreedom.org/r/296/
|
20147
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
1 | /* pidgin |
| 11581 | 2 | * |
| 15572 | 3 | * Pidgin is the legal property of its developers, whose names are too numerous |
| 11581 | 4 | * to list here. Please refer to the COPYRIGHT file distributed with this |
| 5 | * source distribution. | |
| 6 | * | |
| 7 | * This program is free software; you can redistribute it and/or modify | |
| 8 | * it under the terms of the GNU General Public License as published by | |
| 9 | * the Free Software Foundation; either version 2 of the License, or | |
| 10 | * (at your option) any later version. | |
| 11 | * | |
| 12 | * This program is distributed in the hope that it will be useful, | |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 | * GNU General Public License for more details. | |
| 16 | * | |
| 17 | * You should have received a copy of the GNU General Public License | |
| 18 | * along with this program; if not, write to the Free Software | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
16254
diff
changeset
|
19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 11581 | 20 | */ |
|
35487
494f09f7f331
Move section blocks inside inclusion guards -- otherwise g-ir-scanner yells
Ankit Vani <a@nevitus.org>
parents:
35486
diff
changeset
|
21 | |
|
40502
875489636847
pidgin.h phase3: create pidgin.h and force its usage
Gary Kramlich <grim@reaperworld.com>
parents:
40496
diff
changeset
|
22 | #if !defined(PIDGIN_GLOBAL_HEADER_INSIDE) && !defined(PIDGIN_COMPILATION) |
|
875489636847
pidgin.h phase3: create pidgin.h and force its usage
Gary Kramlich <grim@reaperworld.com>
parents:
40496
diff
changeset
|
23 | # error "only <pidgin.h> may be included directly" |
|
875489636847
pidgin.h phase3: create pidgin.h and force its usage
Gary Kramlich <grim@reaperworld.com>
parents:
40496
diff
changeset
|
24 | #endif |
|
875489636847
pidgin.h phase3: create pidgin.h and force its usage
Gary Kramlich <grim@reaperworld.com>
parents:
40496
diff
changeset
|
25 | |
|
35487
494f09f7f331
Move section blocks inside inclusion guards -- otherwise g-ir-scanner yells
Ankit Vani <a@nevitus.org>
parents:
35486
diff
changeset
|
26 | #ifndef _PIDGIN_CONVERSATION_WINDOW_H_ |
|
494f09f7f331
Move section blocks inside inclusion guards -- otherwise g-ir-scanner yells
Ankit Vani <a@nevitus.org>
parents:
35486
diff
changeset
|
27 | #define _PIDGIN_CONVERSATION_WINDOW_H_ |
|
35451
206524351826
Add sections for finch and re-arrange its doc index
Ankit Vani <a@nevitus.org>
parents:
35415
diff
changeset
|
28 | /** |
|
206524351826
Add sections for finch and re-arrange its doc index
Ankit Vani <a@nevitus.org>
parents:
35415
diff
changeset
|
29 | * SECTION:gtkconvwin |
|
206524351826
Add sections for finch and re-arrange its doc index
Ankit Vani <a@nevitus.org>
parents:
35415
diff
changeset
|
30 | * @section_id: pidgin-gtkconvwin |
|
206524351826
Add sections for finch and re-arrange its doc index
Ankit Vani <a@nevitus.org>
parents:
35415
diff
changeset
|
31 | * @short_description: <filename>gtkconvwin.h</filename> |
|
206524351826
Add sections for finch and re-arrange its doc index
Ankit Vani <a@nevitus.org>
parents:
35415
diff
changeset
|
32 | * @title: Conversation Window API |
|
206524351826
Add sections for finch and re-arrange its doc index
Ankit Vani <a@nevitus.org>
parents:
35415
diff
changeset
|
33 | */ |
|
206524351826
Add sections for finch and re-arrange its doc index
Ankit Vani <a@nevitus.org>
parents:
35415
diff
changeset
|
34 | |
|
40496
6941fece679b
phase2 of pidgin.h: move existing file to pidgincore.h
Gary Kramlich <grim@reaperworld.com>
parents:
40477
diff
changeset
|
35 | #include <gtk/gtk.h> |
|
6941fece679b
phase2 of pidgin.h: move existing file to pidgincore.h
Gary Kramlich <grim@reaperworld.com>
parents:
40477
diff
changeset
|
36 | |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
37 | #define PIDGIN_TYPE_CONV_WINDOW (pidgin_conv_window_get_type()) |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
38 | |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
39 | typedef struct _PidginConvWindowMenu PidginConvWindowMenu; |
|
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
40 | typedef struct _PidginConvWindow PidginConvWindow; |
| 11581 | 41 | |
| 42 | ||
| 43 | /************************************************************************** | |
| 35472 | 44 | * Structures |
| 11581 | 45 | **************************************************************************/ |
| 46 | ||
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
47 | struct _PidginConvWindowMenu |
|
34973
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
48 | { |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
49 | GtkUIManager *ui; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
50 | GtkWidget *menubar; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
51 | |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
52 | GtkAction *view_log; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
53 | |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
54 | GtkAction *audio_call; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
55 | GtkAction *video_call; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
56 | GtkAction *audio_video_call; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
57 | |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
58 | GtkAction *send_file; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
59 | GtkAction *get_attention; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
60 | GtkAction *add_pounce; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
61 | GtkAction *get_info; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
62 | GtkAction *invite; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
63 | |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
64 | GtkAction *alias; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
65 | GtkAction *block; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
66 | GtkAction *unblock; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
67 | GtkAction *add; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
68 | GtkAction *remove; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
69 | |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
70 | GtkAction *insert_link; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
71 | GtkAction *insert_image; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
72 | |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
73 | GtkAction *logging; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
74 | GtkAction *show_formatting_toolbar; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
75 | |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
76 | GtkWidget *send_to; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
77 | |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
78 | GtkWidget *tray; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
79 | |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
80 | GtkWidget *typing_icon; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
81 | }; |
|
389cabbfe56a
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Ankit Vani <a@nevitus.org>
parents:
34659
diff
changeset
|
82 | |
| 11581 | 83 | /** |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
84 | * PidginConvWindow: |
|
35415
ba28be1a7611
Convert docs from doxygen to gtk-doc format for gtkaccount to gtkconvwin
Ankit Vani <a@nevitus.org>
parents:
35047
diff
changeset
|
85 | * @window: The window. |
|
ba28be1a7611
Convert docs from doxygen to gtk-doc format for gtkaccount to gtkconvwin
Ankit Vani <a@nevitus.org>
parents:
35047
diff
changeset
|
86 | * @notebook: The notebook of conversations. |
|
ba28be1a7611
Convert docs from doxygen to gtk-doc format for gtkaccount to gtkconvwin
Ankit Vani <a@nevitus.org>
parents:
35047
diff
changeset
|
87 | * @notebook_menu: The menu on the notebook. |
|
ba28be1a7611
Convert docs from doxygen to gtk-doc format for gtkaccount to gtkconvwin
Ankit Vani <a@nevitus.org>
parents:
35047
diff
changeset
|
88 | * @clicked_tab: The menu currently clicked. |
|
ba28be1a7611
Convert docs from doxygen to gtk-doc format for gtkaccount to gtkconvwin
Ankit Vani <a@nevitus.org>
parents:
35047
diff
changeset
|
89 | * |
| 11581 | 90 | * A GTK+ representation of a graphical window containing one or more |
| 91 | * conversations. | |
| 92 | */ | |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
93 | struct _PidginConvWindow |
| 11581 | 94 | { |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
95 | /*< private >*/ |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
96 | gint box_count; |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
97 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
98 | /*< public >*/ |
|
35415
ba28be1a7611
Convert docs from doxygen to gtk-doc format for gtkaccount to gtkconvwin
Ankit Vani <a@nevitus.org>
parents:
35047
diff
changeset
|
99 | GtkWidget *window; |
|
ba28be1a7611
Convert docs from doxygen to gtk-doc format for gtkaccount to gtkconvwin
Ankit Vani <a@nevitus.org>
parents:
35047
diff
changeset
|
100 | GtkWidget *notebook; |
|
ba28be1a7611
Convert docs from doxygen to gtk-doc format for gtkaccount to gtkconvwin
Ankit Vani <a@nevitus.org>
parents:
35047
diff
changeset
|
101 | PidginConversation *clicked_tab; |
| 11581 | 102 | GList *gtkconvs; |
| 103 | ||
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
104 | PidginConvWindowMenu *menu; |
| 11581 | 105 | |
| 106 | /* Tab dragging stuff. */ | |
| 107 | gboolean in_drag; | |
| 108 | gboolean in_predrag; | |
| 109 | ||
| 110 | gint drag_tab; | |
| 111 | ||
| 112 | gint drag_min_x, drag_max_x, drag_min_y, drag_max_y; | |
| 113 | ||
| 114 | gint drag_motion_signal; | |
| 115 | gint drag_leave_signal; | |
| 116 | }; | |
| 117 | ||
|
32790
b95c7c504118
Add G_BEGIN/END_DECLS to Pidgin public headers, most of which did
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
32696
diff
changeset
|
118 | G_BEGIN_DECLS |
|
b95c7c504118
Add G_BEGIN/END_DECLS to Pidgin public headers, most of which did
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
32696
diff
changeset
|
119 | |
| 11581 | 120 | /************************************************************************** |
| 35472 | 121 | * GTK+ Conversation Window API |
| 11581 | 122 | **************************************************************************/ |
| 123 | ||
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
124 | /** |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
125 | * pidgin_conv_window_get_type: |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
126 | * |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
127 | * Returns: The #GType for the #PidginConvWindow boxed structure. |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
128 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
129 | GType pidgin_conv_window_get_type(void); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
130 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
131 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
132 | * pidgin_conv_window_new: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
133 | * |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
134 | * Returns: A new #PidginConvWindow. |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
135 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
136 | PidginConvWindow * pidgin_conv_window_new(void); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
137 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
138 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
139 | * pidgin_conv_window_destroy: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
140 | * @win: The conversation window to destroy |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
141 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
142 | void pidgin_conv_window_destroy(PidginConvWindow *win); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
143 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
144 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
145 | * pidgin_conv_windows_get_list: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
146 | * |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
147 | * Returns: (transfer none) (element-type Pidgin.ConvWindow): The list of |
|
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
148 | * windows. |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
149 | */ |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15486
diff
changeset
|
150 | GList *pidgin_conv_windows_get_list(void); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
151 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
152 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
153 | * pidgin_conv_window_show: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
154 | * @win: The conversation window to show |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
155 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
156 | void pidgin_conv_window_show(PidginConvWindow *win); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
157 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
158 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
159 | * pidgin_conv_window_hide: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
160 | * @win: The conversation window to hide |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
161 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
162 | void pidgin_conv_window_hide(PidginConvWindow *win); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
163 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
164 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
165 | * pidgin_conv_window_raise: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
166 | * @win: The conversation window to raise |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
167 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
168 | void pidgin_conv_window_raise(PidginConvWindow *win); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
169 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
170 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
171 | * pidgin_conv_window_switch_gtkconv: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
172 | * @win: The conversation window |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
173 | * @gtkconv: The pidgin conversation to switch to |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
174 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
175 | void pidgin_conv_window_switch_gtkconv(PidginConvWindow *win, PidginConversation *gtkconv); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
176 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
177 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
178 | * pidgin_conv_window_add_gtkconv: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
179 | * @win: The conversation window |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
180 | * @gtkconv: The pidgin conversation to add |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
181 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
182 | void pidgin_conv_window_add_gtkconv(PidginConvWindow *win, PidginConversation *gtkconv); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
183 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
184 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
185 | * pidgin_conv_window_remove_gtkconv: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
186 | * @win: The conversation window |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
187 | * @gtkconv: The pidgin conversation to remove |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
188 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
189 | void pidgin_conv_window_remove_gtkconv(PidginConvWindow *win, PidginConversation *gtkconv); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
190 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
191 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
192 | * pidgin_conv_window_get_gtkconv_at_index: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
193 | * @win: The conversation window |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
194 | * @index: The index in the window to get the conversation from |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
195 | * |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
196 | * Returns: The conversation in @win at @index |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
197 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
198 | PidginConversation *pidgin_conv_window_get_gtkconv_at_index(const PidginConvWindow *win, int index); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
199 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
200 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
201 | * pidgin_conv_window_get_active_gtkconv: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
202 | * @win: The conversation window |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
203 | * |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
204 | * Returns: The active #PidginConversation in @win. |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
205 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
206 | PidginConversation *pidgin_conv_window_get_active_gtkconv(const PidginConvWindow *win); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
207 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
208 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
209 | * pidgin_conv_window_get_active_conversation: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
210 | * @win: The conversation window |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
211 | * |
|
38744
48a376346964
Lots of updates for Pidgin-3.0.gir
Gary Kramlich <grim@reaperworld.com>
parents:
37125
diff
changeset
|
212 | * Returns: (transfer none): The active #PurpleConversation in @win. |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
213 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
214 | PurpleConversation *pidgin_conv_window_get_active_conversation(const PidginConvWindow *win); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
215 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
216 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
217 | * pidgin_conv_window_is_active_conversation: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
218 | * @conv: The conversation |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
219 | * |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
220 | * Returns: %TRUE if @conv is the active conversation, %FALSE otherwise. |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
221 | */ |
| 15884 | 222 | gboolean pidgin_conv_window_is_active_conversation(const PurpleConversation *conv); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
223 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
224 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
225 | * pidgin_conv_window_has_focus: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
226 | * @win: The conversation window |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
227 | * |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
228 | * Returns: %TRUE if @win has focus, %FALSE otherwise. |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
229 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
230 | gboolean pidgin_conv_window_has_focus(PidginConvWindow *win); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
231 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
232 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
233 | * pidgin_conv_window_get_at_event: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
234 | * @event: The event |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
235 | * |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
236 | * Returns: The #PidginConvWindow on which @event occured. |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
237 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
238 | PidginConvWindow *pidgin_conv_window_get_at_event(GdkEvent *event); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
239 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
240 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
241 | * pidgin_conv_window_get_gtkconvs: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
242 | * @win: The conversation window |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
243 | * |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
244 | * Returns: (transfer none) (element-type Pidgin.Conversation): A list of |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
245 | * #PidginConversation's in @win. |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
246 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
247 | GList *pidgin_conv_window_get_gtkconvs(PidginConvWindow *win); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
248 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
249 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
250 | * pidgin_conv_window_get_gtkconv_count: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
251 | * @win: The conversation window |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
252 | * |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
253 | * Returns: The number of conversations in @win |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
254 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
255 | guint pidgin_conv_window_get_gtkconv_count(PidginConvWindow *win); |
| 11581 | 256 | |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
257 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
258 | * pidgin_conv_window_first_im: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
259 | * |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
260 | * Returns: The window which has the first IM, %NULL if no IM is found. |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
261 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
262 | PidginConvWindow *pidgin_conv_window_first_im(void); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
263 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
264 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
265 | * pidgin_conv_window_last_im: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
266 | * |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
267 | * Returns: The window which has the last IM, %NULL if no IM is found. |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
268 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
269 | PidginConvWindow *pidgin_conv_window_last_im(void); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
270 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
271 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
272 | * pidgin_conv_window_first_chat: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
273 | * |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
274 | * Returns: The window which has the first chat, %NULL if no chat is found. |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
275 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
276 | PidginConvWindow *pidgin_conv_window_first_chat(void); |
|
35609
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
277 | |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
278 | /** |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
279 | * pidgin_conv_window_last_chat: |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
280 | * |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
281 | * Returns: The window which has the last chat, %NULL if no chat is found. |
|
6bcd0955c8a4
Box PidginWindow and document its API
Ankit Vani <a@nevitus.org>
parents:
35487
diff
changeset
|
282 | */ |
|
35610
24b06c5e7760
Renamed PidginWindow to PidginConvWindow so that introspection associates it with pidgin_conv_window_* API
Ankit Vani <a@nevitus.org>
parents:
35609
diff
changeset
|
283 | PidginConvWindow *pidgin_conv_window_last_chat(void); |
| 11581 | 284 | |
|
40477
60fa624d000d
Remove the conversation placement preferences and code.
Gary Kramlich <grim@reaperworld.com>
parents:
40304
diff
changeset
|
285 | void pidgin_conv_placement_place(PidginConversation *conv); |
| 11581 | 286 | |
|
32790
b95c7c504118
Add G_BEGIN/END_DECLS to Pidgin public headers, most of which did
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
32696
diff
changeset
|
287 | G_END_DECLS |
|
b95c7c504118
Add G_BEGIN/END_DECLS to Pidgin public headers, most of which did
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
32696
diff
changeset
|
288 | |
| 15563 | 289 | #endif /* _PIDGIN_CONVERSATION_WINDOW_H_ */ |