pidgin/gtkpounce.h

branch
next.minor
changeset 21217
c5dfa570daff
parent 21182
23cc39e90bf7
parent 21215
775a49fdc926
child 21223
6517e0eda8bc
child 21342
6d1d2ebd9277
equal deleted inserted replaced
21192:5aed2d7b9176 21217:c5dfa570daff
32 * Displays a New Buddy Pounce or Edit Buddy Pounce dialog. 32 * Displays a New Buddy Pounce or Edit Buddy Pounce dialog.
33 * 33 *
34 * @param account The optional account to use. 34 * @param account The optional account to use.
35 * @param name The optional name to pounce on. 35 * @param name The optional name to pounce on.
36 * @param cur_pounce The current buddy pounce, if editing an existing one. 36 * @param cur_pounce The current buddy pounce, if editing an existing one.
37 *
38 * @deprecated Use pidgin_pounce_editor_show_with_parent() instead.
37 */ 39 */
38 void pidgin_pounce_editor_show(PurpleAccount *account, const char *name, 40 void pidgin_pounce_editor_show(PurpleAccount *account, const char *name,
39 PurplePounce *cur_pounce); 41 PurplePounce *cur_pounce);
40 42
41 /** 43 /**
44 * Displays a New Buddy Pounce or Edit Buddy Pounce dialog.
45 *
46 * @param parent The parent window.
47 * @param account The optional account to use.
48 * @param name The optional name to pounce on.
49 * @param cur_pounce The current buddy pounce, if editing an existing one.
50 *
51 * @since 2.3.0
52 */
53 void pidgin_pounce_editor_show_with_parent(GtkWindow *parent, PurpleAccount *account, const char *name,
54 PurplePounce *cur_pounce);
55
56 /**
42 * Shows the pounces manager window. 57 * Shows the pounces manager window.
58 *
59 * @deprecated Use pidgin_pounces_manager_show_with_parent() instead.
43 */ 60 */
44 void pidgin_pounces_manager_show(void); 61 void pidgin_pounces_manager_show(void);
62
63 /**
64 * Shows the pounces manager window.
65 *
66 * @since 2.3.0
67 */
68 void pidgin_pounces_manager_show_with_parent(GtkWindow *parent);
45 69
46 /** 70 /**
47 * Hides the pounces manager window. 71 * Hides the pounces manager window.
48 */ 72 */
49 void pidgin_pounces_manager_hide(void); 73 void pidgin_pounces_manager_hide(void);

mercurial