pidgin/pidginaccountchooser.h

changeset 42466
ca3374c1cdba
parent 42465
b7d530551c1b
child 42620
72178a341eb8
equal deleted inserted replaced
42465:b7d530551c1b 42466:ca3374c1cdba
48 * 48 *
49 * Returns: (transfer full): The account chooser combo box. 49 * Returns: (transfer full): The account chooser combo box.
50 * 50 *
51 * Since: 3.0.0 51 * Since: 3.0.0
52 */ 52 */
53 PIDGIN_AVAILABLE_IN_3_0
53 GtkWidget *pidgin_account_chooser_new(void); 54 GtkWidget *pidgin_account_chooser_new(void);
54 55
55 /** 56 /**
56 * pidgin_account_chooser_get_filter: 57 * pidgin_account_chooser_get_filter:
57 * @chooser: The chooser. 58 * @chooser: The chooser.
61 * Returns: (transfer none): Returns the #GtkFilter that is currently 62 * Returns: (transfer none): Returns the #GtkFilter that is currently
62 * displayed. 63 * displayed.
63 * 64 *
64 * Since: 3.0.0 65 * Since: 3.0.0
65 */ 66 */
67 PIDGIN_AVAILABLE_IN_3_0
66 GtkFilter *pidgin_account_chooser_get_filter(PidginAccountChooser *chooser); 68 GtkFilter *pidgin_account_chooser_get_filter(PidginAccountChooser *chooser);
67 69
68 /** 70 /**
69 * pidgin_account_chooser_set_filter: 71 * pidgin_account_chooser_set_filter:
70 * @chooser: The chooser. 72 * @chooser: The chooser.
72 * 74 *
73 * Sets the current list filter for the account chooser. 75 * Sets the current list filter for the account chooser.
74 * 76 *
75 * Since: 3.0.0 77 * Since: 3.0.0
76 */ 78 */
79 PIDGIN_AVAILABLE_IN_3_0
77 void pidgin_account_chooser_set_filter(PidginAccountChooser *chooser, GtkFilter *filter); 80 void pidgin_account_chooser_set_filter(PidginAccountChooser *chooser, GtkFilter *filter);
78 81
79 /** 82 /**
80 * pidgin_account_chooser_get_selected: 83 * pidgin_account_chooser_get_selected:
81 * @chooser: The chooser created by pidgin_account_chooser_new(). 84 * @chooser: The chooser created by pidgin_account_chooser_new().
85 * Returns: (transfer full): Returns the #PurpleAccount that is currently 88 * Returns: (transfer full): Returns the #PurpleAccount that is currently
86 * selected. 89 * selected.
87 * 90 *
88 * Since: 3.0.0 91 * Since: 3.0.0
89 */ 92 */
93 PIDGIN_AVAILABLE_IN_3_0
90 PurpleAccount *pidgin_account_chooser_get_selected(PidginAccountChooser *chooser); 94 PurpleAccount *pidgin_account_chooser_get_selected(PidginAccountChooser *chooser);
91 95
92 /** 96 /**
93 * pidgin_account_chooser_set_selected: 97 * pidgin_account_chooser_set_selected:
94 * @chooser: The chooser created by pidgin_account_chooser_new(). 98 * @chooser: The chooser created by pidgin_account_chooser_new().
96 * 100 *
97 * Sets the currently selected account for an account combo box. 101 * Sets the currently selected account for an account combo box.
98 * 102 *
99 * Since: 3.0.0 103 * Since: 3.0.0
100 */ 104 */
105 PIDGIN_AVAILABLE_IN_3_0
101 void pidgin_account_chooser_set_selected(PidginAccountChooser *chooser, 106 void pidgin_account_chooser_set_selected(PidginAccountChooser *chooser,
102 PurpleAccount *account); 107 PurpleAccount *account);
103 108
104 G_END_DECLS 109 G_END_DECLS
105 110

mercurial