Sun, 07 Jun 2020 02:39:43 -0500
closing merged branch
|
40363
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
1 | /* |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
2 | * pidgin |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
3 | * |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
4 | * Pidgin is the legal property of its developers, whose names are too numerous |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
5 | * to list here. Please refer to the COPYRIGHT file distributed with this |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
6 | * source distribution. |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
7 | * |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
8 | * This program is free software; you can redistribute it and/or modify |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
9 | * it under the terms of the GNU General Public License as published by |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
10 | * the Free Software Foundation; either version 2 of the License, or |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
11 | * (at your option) any later version. |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
12 | * |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
13 | * This program is distributed in the hope that it will be useful, |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
16 | * GNU General Public License for more details. |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
17 | * |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
18 | * You should have received a copy of the GNU General Public License |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
19 | * along with this program; if not, write to the Free Software |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
21 | */ |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
22 | #ifndef PIDGIN_ACTION_GROUP_H |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
23 | #define PIDGIN_ACTION_GROUP_H |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
24 | |
| 40386 | 25 | /** |
| 26 | * SECTION:pidginactiongroup | |
| 27 | * @section_id: pidgin-action-group | |
| 28 | * @short_description: An action group for Pidgin | |
| 29 | * @title: Action Group | |
| 30 | * | |
| 31 | * A #GSimpleActionGroup containing most of our actions. A lot of this will | |
| 32 | * need to be added to the #GtkApplication, but I didn't want to do that part | |
| 33 | * quite yet, so I created this instead. | |
| 34 | */ | |
| 35 | ||
|
40363
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
36 | #include <glib.h> |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
37 | |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
38 | #include <gio/gio.h> |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
39 | |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
40 | /** |
|
40388
3f2e9e346f6f
Fix a bunch of stuff that was found in review.
Gary Kramlich <grim@reaperworld.com>
parents:
40386
diff
changeset
|
41 | * PIDGIN_ACTION_ABOUT: |
|
40364
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
42 | * |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
43 | * A constant that represents the about action that shows the about window. |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
44 | */ |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
45 | #define PIDGIN_ACTION_ABOUT ("about") |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
46 | |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
47 | /** |
|
40371
0773c993abd8
Migrate add-chat and add-buddy to the new menu
Gary Kramlich <grim@reaperworld.com>
parents:
40368
diff
changeset
|
48 | * PIDGIN_ACTION_ADD_BUDDY: |
|
0773c993abd8
Migrate add-chat and add-buddy to the new menu
Gary Kramlich <grim@reaperworld.com>
parents:
40368
diff
changeset
|
49 | * |
|
0773c993abd8
Migrate add-chat and add-buddy to the new menu
Gary Kramlich <grim@reaperworld.com>
parents:
40368
diff
changeset
|
50 | * A constant that represents the add-buddy action to add a buddy to the |
|
0773c993abd8
Migrate add-chat and add-buddy to the new menu
Gary Kramlich <grim@reaperworld.com>
parents:
40368
diff
changeset
|
51 | * contact list. |
|
0773c993abd8
Migrate add-chat and add-buddy to the new menu
Gary Kramlich <grim@reaperworld.com>
parents:
40368
diff
changeset
|
52 | */ |
|
0773c993abd8
Migrate add-chat and add-buddy to the new menu
Gary Kramlich <grim@reaperworld.com>
parents:
40368
diff
changeset
|
53 | #define PIDGIN_ACTION_ADD_BUDDY ("add-buddy") |
|
0773c993abd8
Migrate add-chat and add-buddy to the new menu
Gary Kramlich <grim@reaperworld.com>
parents:
40368
diff
changeset
|
54 | |
|
0773c993abd8
Migrate add-chat and add-buddy to the new menu
Gary Kramlich <grim@reaperworld.com>
parents:
40368
diff
changeset
|
55 | /** |
|
0773c993abd8
Migrate add-chat and add-buddy to the new menu
Gary Kramlich <grim@reaperworld.com>
parents:
40368
diff
changeset
|
56 | * PIDGIN_ACTION_ADD_CHAT: |
|
0773c993abd8
Migrate add-chat and add-buddy to the new menu
Gary Kramlich <grim@reaperworld.com>
parents:
40368
diff
changeset
|
57 | * |
|
0773c993abd8
Migrate add-chat and add-buddy to the new menu
Gary Kramlich <grim@reaperworld.com>
parents:
40368
diff
changeset
|
58 | * A constant that represents the add-chat action to add a chat to the |
|
0773c993abd8
Migrate add-chat and add-buddy to the new menu
Gary Kramlich <grim@reaperworld.com>
parents:
40368
diff
changeset
|
59 | * contact list. |
|
0773c993abd8
Migrate add-chat and add-buddy to the new menu
Gary Kramlich <grim@reaperworld.com>
parents:
40368
diff
changeset
|
60 | */ |
|
0773c993abd8
Migrate add-chat and add-buddy to the new menu
Gary Kramlich <grim@reaperworld.com>
parents:
40368
diff
changeset
|
61 | #define PIDGIN_ACTION_ADD_CHAT ("add-chat") |
|
0773c993abd8
Migrate add-chat and add-buddy to the new menu
Gary Kramlich <grim@reaperworld.com>
parents:
40368
diff
changeset
|
62 | |
|
0773c993abd8
Migrate add-chat and add-buddy to the new menu
Gary Kramlich <grim@reaperworld.com>
parents:
40368
diff
changeset
|
63 | /** |
|
40364
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
64 | * PIDGIN_ACTION_ADD_GROUP: |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
65 | * |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
66 | * A constant that represents the add-group action to add a group to the |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
67 | * contact list. |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
68 | */ |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
69 | #define PIDGIN_ACTION_ADD_GROUP ("add-group") |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
70 | |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
71 | /** |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
72 | * PIDGIN_ACTION_BUDDY_POUNCES: |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
73 | * |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
74 | * A constant that represents the pounces action. |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
75 | */ |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
76 | #define PIDGIN_ACTION_BUDDY_POUNCES ("buddy-pounces") |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
77 | |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
78 | /** |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
79 | * PIDGIN_ACTION_CUSTOM_SMILEY: |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
80 | * |
|
40388
3f2e9e346f6f
Fix a bunch of stuff that was found in review.
Gary Kramlich <grim@reaperworld.com>
parents:
40386
diff
changeset
|
81 | * A constant that represents the custom-smiley action to toggle the visibility |
|
40364
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
82 | * of the smiley manager. |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
83 | */ |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
84 | #define PIDGIN_ACTION_CUSTOM_SMILEY ("custom-smiley") |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
85 | |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
86 | /** |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
87 | * PIDGIN_ACTION_DEBUG: |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
88 | * |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
89 | * A constant that represents the debug action to toggle the visibility of the |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
90 | * debug window. |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
91 | */ |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
92 | #define PIDGIN_ACTION_DEBUG ("debug") |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
93 | |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
94 | /** |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
95 | * PIDGIN_ACTION_FILE_TRANSFERS: |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
96 | * |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
97 | * A constant that represents the file-transfers action to toggle the |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
98 | * visibility of the file transfers window. |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
99 | */ |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
100 | #define PIDGIN_ACTION_FILE_TRANSFERS ("file-transfers") |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
101 | |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
102 | /** |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
103 | * PIDGIN_ACTION_GET_USER_INFO: |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
104 | * |
|
40378
9713b0ef6504
Move the join chat menu item to the new menu setup
Gary Kramlich <grim@reaperworld.com>
parents:
40373
diff
changeset
|
105 | * A constant that represents the get-user-info action. |
|
40364
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
106 | */ |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
107 | #define PIDGIN_ACTION_GET_USER_INFO ("get-user-info") |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
108 | |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
109 | /** |
|
40378
9713b0ef6504
Move the join chat menu item to the new menu setup
Gary Kramlich <grim@reaperworld.com>
parents:
40373
diff
changeset
|
110 | * PIDGIN_ACTION_JOIN_CHAT: |
|
9713b0ef6504
Move the join chat menu item to the new menu setup
Gary Kramlich <grim@reaperworld.com>
parents:
40373
diff
changeset
|
111 | * |
|
9713b0ef6504
Move the join chat menu item to the new menu setup
Gary Kramlich <grim@reaperworld.com>
parents:
40373
diff
changeset
|
112 | * A constant that represents the join-chat action. |
|
9713b0ef6504
Move the join chat menu item to the new menu setup
Gary Kramlich <grim@reaperworld.com>
parents:
40373
diff
changeset
|
113 | */ |
|
9713b0ef6504
Move the join chat menu item to the new menu setup
Gary Kramlich <grim@reaperworld.com>
parents:
40373
diff
changeset
|
114 | #define PIDGIN_ACTION_JOIN_CHAT ("join-chat") |
|
9713b0ef6504
Move the join chat menu item to the new menu setup
Gary Kramlich <grim@reaperworld.com>
parents:
40373
diff
changeset
|
115 | |
|
9713b0ef6504
Move the join chat menu item to the new menu setup
Gary Kramlich <grim@reaperworld.com>
parents:
40373
diff
changeset
|
116 | /** |
|
40366
5c78f6c9a36b
Implement mute sounds to prove out the action state code
Gary Kramlich <grim@reaperworld.com>
parents:
40364
diff
changeset
|
117 | * PIDGIN_ACTION_MUTE_SOUNDS: |
|
5c78f6c9a36b
Implement mute sounds to prove out the action state code
Gary Kramlich <grim@reaperworld.com>
parents:
40364
diff
changeset
|
118 | * |
|
40388
3f2e9e346f6f
Fix a bunch of stuff that was found in review.
Gary Kramlich <grim@reaperworld.com>
parents:
40386
diff
changeset
|
119 | * A constant that represents the mute-sounds action. |
|
40366
5c78f6c9a36b
Implement mute sounds to prove out the action state code
Gary Kramlich <grim@reaperworld.com>
parents:
40364
diff
changeset
|
120 | */ |
|
5c78f6c9a36b
Implement mute sounds to prove out the action state code
Gary Kramlich <grim@reaperworld.com>
parents:
40364
diff
changeset
|
121 | #define PIDGIN_ACTION_MUTE_SOUNDS ("mute-sounds") |
|
5c78f6c9a36b
Implement mute sounds to prove out the action state code
Gary Kramlich <grim@reaperworld.com>
parents:
40364
diff
changeset
|
122 | |
|
5c78f6c9a36b
Implement mute sounds to prove out the action state code
Gary Kramlich <grim@reaperworld.com>
parents:
40364
diff
changeset
|
123 | /** |
|
40363
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
124 | * PIDGIN_ACTION_NEW_MESSAGE: |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
125 | * |
|
40364
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
126 | * A constant that represents the new-message action. |
|
40363
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
127 | */ |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
128 | #define PIDGIN_ACTION_NEW_MESSAGE ("new-message") |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
129 | |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
130 | /** |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
131 | * PIDGIN_ACTION_ONLINE_HELP: |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
132 | * |
|
40364
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
133 | * A constant that represents the online-help action. |
|
40363
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
134 | */ |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
135 | #define PIDGIN_ACTION_ONLINE_HELP ("online-help") |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
136 | |
|
40364
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
137 | /** |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
138 | * PIDGIN_ACTION_PREFERENCES: |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
139 | * |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
140 | * A constant that represents the preferences action. |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
141 | */ |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
142 | #define PIDGIN_ACTION_PREFERENCES ("preferences") |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
143 | |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
144 | /** |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
145 | * PIDGIN_ACTION_PRIVACY: |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
146 | * |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
147 | * A constant that represents the privacy action. |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
148 | */ |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
149 | #define PIDGIN_ACTION_PRIVACY ("privacy") |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
150 | |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
151 | /** |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
152 | * PIDGIN_ACTION_QUIT: |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
153 | * |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
154 | * A constant that represents the quit action. |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
155 | */ |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
156 | #define PIDGIN_ACTION_QUIT ("quit") |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
157 | |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
158 | /** |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
159 | * PIDGIN_ACTION_ROOM_LIST: |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
160 | * |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
161 | * A constant that represents the room-list action. |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
162 | */ |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
163 | #define PIDGIN_ACTION_ROOM_LIST ("room-list") |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
164 | |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
165 | /** |
|
40385
c3e9a7d14e6f
Move the mood api to it's own files and remove the remaining bits of the old menu bar from gtkblist
Gary Kramlich <grim@reaperworld.com>
parents:
40379
diff
changeset
|
166 | * PIDGIN_ACTION_SET_MOOD: |
|
c3e9a7d14e6f
Move the mood api to it's own files and remove the remaining bits of the old menu bar from gtkblist
Gary Kramlich <grim@reaperworld.com>
parents:
40379
diff
changeset
|
167 | * |
|
c3e9a7d14e6f
Move the mood api to it's own files and remove the remaining bits of the old menu bar from gtkblist
Gary Kramlich <grim@reaperworld.com>
parents:
40379
diff
changeset
|
168 | * A constant that represents the set-mood action. |
|
c3e9a7d14e6f
Move the mood api to it's own files and remove the remaining bits of the old menu bar from gtkblist
Gary Kramlich <grim@reaperworld.com>
parents:
40379
diff
changeset
|
169 | */ |
|
c3e9a7d14e6f
Move the mood api to it's own files and remove the remaining bits of the old menu bar from gtkblist
Gary Kramlich <grim@reaperworld.com>
parents:
40379
diff
changeset
|
170 | #define PIDGIN_ACTION_SET_MOOD ("set-mood") |
|
c3e9a7d14e6f
Move the mood api to it's own files and remove the remaining bits of the old menu bar from gtkblist
Gary Kramlich <grim@reaperworld.com>
parents:
40379
diff
changeset
|
171 | |
|
c3e9a7d14e6f
Move the mood api to it's own files and remove the remaining bits of the old menu bar from gtkblist
Gary Kramlich <grim@reaperworld.com>
parents:
40379
diff
changeset
|
172 | /** |
|
40367
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
173 | * PIDGIN_ACTION_SHOW_BUDDY_ICONS: |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
174 | * |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
175 | * A constant that represents the show-buddy-icons action. |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
176 | */ |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
177 | #define PIDGIN_ACTION_SHOW_BUDDY_ICONS ("show-buddy-icons") |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
178 | |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
179 | /** |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
180 | * PIDGIN_ACTION_SHOW_EMPTY_GROUPS: |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
181 | * |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
182 | * A constant that represents the show-empty-groups action. |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
183 | */ |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
184 | #define PIDGIN_ACTION_SHOW_EMPTY_GROUPS ("show-empty-groups") |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
185 | |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
186 | /** |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
187 | * PIDGIN_ACTION_SHOW_IDLE_TIMES: |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
188 | * |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
189 | * A constant that represents the show-idle-times action. |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
190 | */ |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
191 | #define PIDGIN_ACTION_SHOW_IDLE_TIMES ("show-idle-times") |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
192 | |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
193 | /** |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
194 | * PIDGIN_ACTION_SHOW_OFFLINE_BUDDIES: |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
195 | * |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
196 | * A constant that represents the show-offline-buddies action. |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
197 | */ |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
198 | #define PIDGIN_ACTION_SHOW_OFFLINE_BUDDIES ("show-offline-buddies") |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
199 | |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
200 | /** |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
201 | * PIDGIN_ACTION_SHOW_PROTOCOL_ICONS: |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
202 | * |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
203 | * A constant that represents the show-protocol-icons action. |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
204 | */ |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
205 | #define PIDGIN_ACTION_SHOW_PROTOCOL_ICONS ("show-protocol-icons") |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
206 | |
|
3bd059ab9eb4
Finish porting the rest of the toggle actions to the new menubar widget
Gary Kramlich <grim@reaperworld.com>
parents:
40366
diff
changeset
|
207 | /** |
|
40368
cb9a81e8845a
Port the sort-method items to GMenu and GAction and display in the new menubar
Gary Kramlich <grim@reaperworld.com>
parents:
40367
diff
changeset
|
208 | * PIDGIN_ACTION_SORT_METHOD: |
|
cb9a81e8845a
Port the sort-method items to GMenu and GAction and display in the new menubar
Gary Kramlich <grim@reaperworld.com>
parents:
40367
diff
changeset
|
209 | * |
|
cb9a81e8845a
Port the sort-method items to GMenu and GAction and display in the new menubar
Gary Kramlich <grim@reaperworld.com>
parents:
40367
diff
changeset
|
210 | * A constant that represents the sort-method action to change the sorting |
|
cb9a81e8845a
Port the sort-method items to GMenu and GAction and display in the new menubar
Gary Kramlich <grim@reaperworld.com>
parents:
40367
diff
changeset
|
211 | * method of the buddy list. |
|
cb9a81e8845a
Port the sort-method items to GMenu and GAction and display in the new menubar
Gary Kramlich <grim@reaperworld.com>
parents:
40367
diff
changeset
|
212 | */ |
|
cb9a81e8845a
Port the sort-method items to GMenu and GAction and display in the new menubar
Gary Kramlich <grim@reaperworld.com>
parents:
40367
diff
changeset
|
213 | #define PIDGIN_ACTION_SORT_METHOD ("sort-method") |
|
cb9a81e8845a
Port the sort-method items to GMenu and GAction and display in the new menubar
Gary Kramlich <grim@reaperworld.com>
parents:
40367
diff
changeset
|
214 | |
|
cb9a81e8845a
Port the sort-method items to GMenu and GAction and display in the new menubar
Gary Kramlich <grim@reaperworld.com>
parents:
40367
diff
changeset
|
215 | /** |
|
40364
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
216 | * PIDGIN_ACTION_SYSTEM_LOG: |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
217 | * |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
218 | * A constant that represents the system-log action. |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
219 | */ |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
220 | #define PIDGIN_ACTION_SYSTEM_LOG ("system-log") |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
221 | |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
222 | /** |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
223 | * PIDGIN_ACTION_VIEW_USER_LOG: |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
224 | * |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
225 | * A constant that represents the view-user-log action. |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
226 | */ |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
227 | #define PIDGIN_ACTION_VIEW_USER_LOG ("view-user-log") |
|
55483ee6710f
Migrate the rest of the static menu items to the new PidginActionGroup
Gary Kramlich <grim@reaperworld.com>
parents:
40363
diff
changeset
|
228 | |
|
40363
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
229 | G_BEGIN_DECLS |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
230 | |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
231 | #define PIDGIN_TYPE_ACTION_GROUP (pidgin_action_group_get_type()) |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
232 | G_DECLARE_FINAL_TYPE(PidginActionGroup, pidgin_action_group, PIDGIN, |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
233 | ACTION_GROUP, GSimpleActionGroup) |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
234 | |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
235 | /** |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
236 | * pidgin_action_group_new: |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
237 | * |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
238 | * Creates a new #PidginActionGroup instance that contains all of the |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
239 | * #GAction's in Pidgin. |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
240 | * |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
241 | * Returns: (transfer full): The new #PidginActionGroup instance. |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
242 | */ |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
243 | GSimpleActionGroup *pidgin_action_group_new(void); |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
244 | |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
245 | G_END_DECLS |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
246 | |
|
c8b010d1d430
Start to migrate the buddy list from GtkActionEntry and UiManager to GActionEntry and a custom widget
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
247 | #endif /* PIDGIN_ACTION_GROUP_H */ |