| 21 */ |
21 */ |
| 22 |
22 |
| 23 #ifndef PIDGIN_ACCOUNT_STORE_H |
23 #ifndef PIDGIN_ACCOUNT_STORE_H |
| 24 #define PIDGIN_ACCOUNT_STORE_H |
24 #define PIDGIN_ACCOUNT_STORE_H |
| 25 |
25 |
| |
26 #include <gtk/gtk.h> |
| |
27 |
| |
28 #include <purple.h> |
| |
29 |
| 26 /** |
30 /** |
| 27 * SECTION:pidginaccountstore |
31 * PidginAccountStore: |
| 28 * @section_id: pidgin-account-store |
|
| 29 * @short_description: A GtkListStore that keeps track of accounts |
|
| 30 * @title: Account Store |
|
| 31 * |
32 * |
| 32 * #PidginAccountStore is a #GtkListStore that automatically keeps track of |
33 * #PidginAccountStore is a #GtkListStore that automatically keeps track of |
| 33 * what accounts are currently available in libpurple. It's intended to be |
34 * what accounts are currently available in libpurple. It's intended to be |
| 34 * used any time that you need to present an account selection to the user. |
35 * used any time that you need to present an account selection to the user. |
| |
36 * |
| |
37 * Since: 3.0.0 |
| 35 */ |
38 */ |
| 36 |
|
| 37 #include <gtk/gtk.h> |
|
| 38 |
|
| 39 #include <purple.h> |
|
| 40 |
39 |
| 41 /** |
40 /** |
| 42 * PidginAccountStoreColumn: |
41 * PidginAccountStoreColumn: |
| 43 * @PIDGIN_ACCOUNT_STORE_COLUMN_ACCOUNT: This column holds a reference to the |
42 * @PIDGIN_ACCOUNT_STORE_COLUMN_ACCOUNT: This column holds a reference to the |
| 44 * #PurpleAccount. |
43 * #PurpleAccount. |