comparison pidgin/gtkpounce.h @ 21300:abbf74f4732b

propagate from branch 'im.pidgin.pidgin' (head e3fd21e6dabb99e5604e8337380353fcbe1a7279) to branch 'im.pidgin.elb.make' (head 7422b9a549f752c05cc75f0c8e56fdd2bced034a)
author Stu Tomlinson <stu@nosnilmot.com>
date Sat, 10 Nov 2007 16:17:54 +0000
parents aabe638f56d9
children 998cf5d0b401 dccfd999ffe7
comparison
equal deleted inserted replaced
21132:f2dcad9572b2 21300:abbf74f4732b
26 #ifndef _PIDGINPOUNCE_H_ 26 #ifndef _PIDGINPOUNCE_H_
27 #define _PIDGINPOUNCE_H_ 27 #define _PIDGINPOUNCE_H_
28 28
29 #include "pounce.h" 29 #include "pounce.h"
30 30
31 #ifndef PURPLE_DISABLE_DEPRECATED
31 /** 32 /**
32 * Displays a New Buddy Pounce or Edit Buddy Pounce dialog. 33 * Displays a New Buddy Pounce or Edit Buddy Pounce dialog.
33 * 34 *
34 * @param account The optional account to use. 35 * @param account The optional account to use.
35 * @param name The optional name to pounce on. 36 * @param name The optional name to pounce on.
36 * @param cur_pounce The current buddy pounce, if editing an existing one. 37 * @param cur_pounce The current buddy pounce, if editing an existing one.
38 *
39 * @deprecated Use pidgin_pounce_editor_show_with_parent() instead.
37 */ 40 */
38 void pidgin_pounce_editor_show(PurpleAccount *account, const char *name, 41 void pidgin_pounce_editor_show(PurpleAccount *account, const char *name,
39 PurplePounce *cur_pounce); 42 PurplePounce *cur_pounce);
43 #endif
44
45 /**
46 * Displays a New Buddy Pounce or Edit Buddy Pounce dialog.
47 *
48 * @param parent The parent window.
49 * @param account The optional account to use.
50 * @param name The optional name to pounce on.
51 * @param cur_pounce The current buddy pounce, if editing an existing one.
52 *
53 * @since 2.3.0
54 */
55 void pidgin_pounce_editor_show_with_parent(GtkWindow *parent, PurpleAccount *account, const char *name,
56 PurplePounce *cur_pounce);
57
58 #ifndef PURPLE_DISABLE_DEPRECATED
59 /**
60 * Shows the pounces manager window.
61 *
62 * @deprecated Use pidgin_pounces_manager_show_with_parent() instead.
63 */
64 void pidgin_pounces_manager_show(void);
65 #endif
40 66
41 /** 67 /**
42 * Shows the pounces manager window. 68 * Shows the pounces manager window.
69 *
70 * @since 2.3.0
43 */ 71 */
44 void pidgin_pounces_manager_show(void); 72 void pidgin_pounces_manager_show_with_parent(GtkWindow *parent);
45 73
46 /** 74 /**
47 * Hides the pounces manager window. 75 * Hides the pounces manager window.
48 */ 76 */
49 void pidgin_pounces_manager_hide(void); 77 void pidgin_pounces_manager_hide(void);