| 25 #include <glib.h> |
25 #include <glib.h> |
| 26 |
26 |
| 27 #include <gio/gio.h> |
27 #include <gio/gio.h> |
| 28 |
28 |
| 29 /** |
29 /** |
| |
30 * PIDGIN_ACTION_ADD_ABOUT: |
| |
31 * |
| |
32 * A constant that represents the about action that shows the about window. |
| |
33 */ |
| |
34 #define PIDGIN_ACTION_ABOUT ("about") |
| |
35 |
| |
36 /** |
| |
37 * PIDGIN_ACTION_ADD_GROUP: |
| |
38 * |
| |
39 * A constant that represents the add-group action to add a group to the |
| |
40 * contact list. |
| |
41 */ |
| |
42 #define PIDGIN_ACTION_ADD_GROUP ("add-group") |
| |
43 |
| |
44 /** |
| |
45 * PIDGIN_ACTION_BUDDY_POUNCES: |
| |
46 * |
| |
47 * A constant that represents the pounces action. |
| |
48 */ |
| |
49 #define PIDGIN_ACTION_BUDDY_POUNCES ("buddy-pounces") |
| |
50 |
| |
51 /** |
| |
52 * PIDGIN_ACTION_CUSTOM_SMILEY: |
| |
53 * |
| |
54 * A constant that represents the smiley-action action to toggle the visibility |
| |
55 * of the smiley manager. |
| |
56 */ |
| |
57 #define PIDGIN_ACTION_CUSTOM_SMILEY ("custom-smiley") |
| |
58 |
| |
59 /** |
| |
60 * PIDGIN_ACTION_DEBUG: |
| |
61 * |
| |
62 * A constant that represents the debug action to toggle the visibility of the |
| |
63 * debug window. |
| |
64 */ |
| |
65 #define PIDGIN_ACTION_DEBUG ("debug") |
| |
66 |
| |
67 /** |
| |
68 * PIDGIN_ACTION_FILE_TRANSFERS: |
| |
69 * |
| |
70 * A constant that represents the file-transfers action to toggle the |
| |
71 * visibility of the file transfers window. |
| |
72 */ |
| |
73 #define PIDGIN_ACTION_FILE_TRANSFERS ("file-transfers") |
| |
74 |
| |
75 /** |
| |
76 * PIDGIN_ACTION_GET_USER_INFO: |
| |
77 * |
| |
78 * A constant that represents the get-user info action. |
| |
79 */ |
| |
80 #define PIDGIN_ACTION_GET_USER_INFO ("get-user-info") |
| |
81 |
| |
82 /** |
| |
83 * PIDGIN_ACTION_MANAGE_ACCOUNTS: |
| |
84 * |
| |
85 * A constatnt that preresents the manage-accounts action to displays the |
| |
86 * manage accounts window. |
| |
87 */ |
| |
88 #define PIDGIN_ACTION_MANAGE_ACCOUNTS ("manage-accounts") |
| |
89 |
| |
90 /** |
| 30 * PIDGIN_ACTION_NEW_MESSAGE: |
91 * PIDGIN_ACTION_NEW_MESSAGE: |
| 31 * |
92 * |
| 32 * A constant that represents the new message action. |
93 * A constant that represents the new-message action. |
| 33 */ |
94 */ |
| 34 #define PIDGIN_ACTION_NEW_MESSAGE ("new-message") |
95 #define PIDGIN_ACTION_NEW_MESSAGE ("new-message") |
| 35 |
96 |
| 36 /** |
97 /** |
| 37 * PIDGIN_ACTION_ONLINE_HELP: |
98 * PIDGIN_ACTION_ONLINE_HELP: |
| 38 * |
99 * |
| 39 * A constant that represents the online help action. |
100 * A constant that represents the online-help action. |
| 40 */ |
101 */ |
| 41 #define PIDGIN_ACTION_ONLINE_HELP ("online-help") |
102 #define PIDGIN_ACTION_ONLINE_HELP ("online-help") |
| |
103 |
| |
104 /** |
| |
105 * PIDGIN_ACTION_PLUGINS: |
| |
106 * |
| |
107 * A constant that represents the plugins action. |
| |
108 */ |
| |
109 #define PIDGIN_ACTION_PLUGINS ("plugins") |
| |
110 |
| |
111 /** |
| |
112 * PIDGIN_ACTION_PREFERENCES: |
| |
113 * |
| |
114 * A constant that represents the preferences action. |
| |
115 */ |
| |
116 #define PIDGIN_ACTION_PREFERENCES ("preferences") |
| |
117 |
| |
118 /** |
| |
119 * PIDGIN_ACTION_PRIVACY: |
| |
120 * |
| |
121 * A constant that represents the privacy action. |
| |
122 */ |
| |
123 #define PIDGIN_ACTION_PRIVACY ("privacy") |
| |
124 |
| |
125 /** |
| |
126 * PIDGIN_ACTION_QUIT: |
| |
127 * |
| |
128 * A constant that represents the quit action. |
| |
129 */ |
| |
130 #define PIDGIN_ACTION_QUIT ("quit") |
| |
131 |
| |
132 /** |
| |
133 * PIDGIN_ACTION_ROOM_LIST: |
| |
134 * |
| |
135 * A constant that represents the room-list action. |
| |
136 */ |
| |
137 #define PIDGIN_ACTION_ROOM_LIST ("room-list") |
| |
138 |
| |
139 /** |
| |
140 * PIDGIN_ACTION_SYSTEM_LOG: |
| |
141 * |
| |
142 * A constant that represents the system-log action. |
| |
143 */ |
| |
144 #define PIDGIN_ACTION_SYSTEM_LOG ("system-log") |
| |
145 |
| |
146 /** |
| |
147 * PIDGIN_ACTION_VIEW_USER_LOG: |
| |
148 * |
| |
149 * A constant that represents the view-user-log action. |
| |
150 */ |
| |
151 #define PIDGIN_ACTION_VIEW_USER_LOG ("view-user-log") |
| 42 |
152 |
| 43 G_BEGIN_DECLS |
153 G_BEGIN_DECLS |
| 44 |
154 |
| 45 #define PIDGIN_TYPE_ACTION_GROUP (pidgin_action_group_get_type()) |
155 #define PIDGIN_TYPE_ACTION_GROUP (pidgin_action_group_get_type()) |
| 46 G_DECLARE_FINAL_TYPE(PidginActionGroup, pidgin_action_group, PIDGIN, |
156 G_DECLARE_FINAL_TYPE(PidginActionGroup, pidgin_action_group, PIDGIN, |