| 25 #endif |
25 #endif |
| 26 |
26 |
| 27 #ifndef PIDGIN_ACCOUNTS_MENU_H |
27 #ifndef PIDGIN_ACCOUNTS_MENU_H |
| 28 #define PIDGIN_ACCOUNTS_MENU_H |
28 #define PIDGIN_ACCOUNTS_MENU_H |
| 29 |
29 |
| |
30 #include <gtk/gtk.h> |
| |
31 |
| |
32 G_BEGIN_DECLS |
| |
33 |
| 30 /** |
34 /** |
| 31 * SECTION:pidginaccountsmenu |
35 * PidginAccountsMenu: |
| 32 * @section_id: pidgin-accounts-menu |
|
| 33 * @short_description: A menu for managing accounts and their actions |
|
| 34 * @title: Accounts Menu |
|
| 35 * |
36 * |
| 36 * #PidginAccountsMenu is a #GtkMenu that provides an interface to users to open |
37 * #PidginAccountsMenu is a #GtkMenu that provides an interface to users to open |
| 37 * the account manager as well as activate account actions. |
38 * the account manager as well as activate account actions. |
| 38 * |
39 * |
| 39 * It manages itself as accounts are created/deleted and enabled/disabled and |
40 * It manages itself as accounts are created/deleted and enabled/disabled and |
| 40 * can be added as a submenu to any #GtkMenuItem. |
41 * can be added as a submenu to any #GtkMenuItem. |
| |
42 * |
| |
43 * Since: 3.0.0 |
| 41 */ |
44 */ |
| 42 |
|
| 43 #include <gtk/gtk.h> |
|
| 44 |
|
| 45 G_BEGIN_DECLS |
|
| 46 |
45 |
| 47 #define PIDGIN_TYPE_ACCOUNTS_MENU (pidgin_accounts_menu_get_type()) |
46 #define PIDGIN_TYPE_ACCOUNTS_MENU (pidgin_accounts_menu_get_type()) |
| 48 G_DECLARE_FINAL_TYPE(PidginAccountsMenu, pidgin_accounts_menu, PIDGIN, |
47 G_DECLARE_FINAL_TYPE(PidginAccountsMenu, pidgin_accounts_menu, PIDGIN, |
| 49 ACCOUNTS_MENU, GtkMenu) |
48 ACCOUNTS_MENU, GtkMenu) |
| 50 |
49 |