Sat, 14 Nov 2020 03:15:43 -0600
Create a new ContactList that will eventually fully replace PidginBuddyList
Create a new PidginContactList window and move the application actions to PidginApplication.
Testing Done:
* Verified menus are properly disabled while offline
* Verified menu items that require a protocol with chats enables the chat menu items as well as the room list menu items
* Verified that the menu items can become enabled while the menus are opened
* Verified that the application actions are activatable via dbus
* Verified that the plugin manager action was migrated successfully
* Verified that the account manager action was migrated successfully
Reviewed at https://reviews.imfreedom.org/r/174/
|
39498
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
1 | /* pidgin |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
2 | * |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
3 | * Pidgin is the legal property of its developers, whose names are too numerous |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
4 | * to list here. Please refer to the COPYRIGHT file distributed with this |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
5 | * source distribution. |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
6 | * |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
7 | * This program is free software; you can redistribute it and/or modify |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
8 | * it under the terms of the GNU General Public License as published by |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
9 | * the Free Software Foundation; either version 2 of the License, or |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
10 | * (at your option) any later version. |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
11 | * |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
12 | * This program is distributed in the hope that it will be useful, |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
15 | * GNU General Public License for more details. |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
16 | * |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
17 | * You should have received a copy of the GNU General Public License |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
18 | * along with this program; if not, write to the Free Software |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
20 | */ |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
21 | |
|
40502
875489636847
pidgin.h phase3: create pidgin.h and force its usage
Gary Kramlich <grim@reaperworld.com>
parents:
39500
diff
changeset
|
22 | #if !defined(PIDGIN_GLOBAL_HEADER_INSIDE) && !defined(PIDGIN_COMPILATION) |
|
875489636847
pidgin.h phase3: create pidgin.h and force its usage
Gary Kramlich <grim@reaperworld.com>
parents:
39500
diff
changeset
|
23 | # error "only <pidgin.h> may be included directly" |
|
875489636847
pidgin.h phase3: create pidgin.h and force its usage
Gary Kramlich <grim@reaperworld.com>
parents:
39500
diff
changeset
|
24 | #endif |
|
875489636847
pidgin.h phase3: create pidgin.h and force its usage
Gary Kramlich <grim@reaperworld.com>
parents:
39500
diff
changeset
|
25 | |
|
39498
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
26 | #ifndef PIDGIN_ICON_H |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
27 | #define PIDGIN_ICON_H |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
28 | |
|
39499
cbf89a92d224
Remove pidgin stock instances from the screencap plugin
Gary Kramlich <grim@reaperworld.com>
parents:
39498
diff
changeset
|
29 | #define PIDGIN_ICON_CAMERA_PHOTO "camera-photo" |
|
39500
f8a87f89c735
remove PIDGIN_STOCK from gtkdocklet-win32.c
Gary Kramlich <grim@reaperworld.com>
parents:
39499
diff
changeset
|
30 | #define PIDGIN_ICON_CONNECT "pidgin-connect" |
|
f8a87f89c735
remove PIDGIN_STOCK from gtkdocklet-win32.c
Gary Kramlich <grim@reaperworld.com>
parents:
39499
diff
changeset
|
31 | #define PIDGIN_ICON_DIALOG_INFO "pidgin-dialog-info" |
|
f8a87f89c735
remove PIDGIN_STOCK from gtkdocklet-win32.c
Gary Kramlich <grim@reaperworld.com>
parents:
39499
diff
changeset
|
32 | #define PIDGIN_ICON_MAIL_NEW "mail-message-new" |
|
f8a87f89c735
remove PIDGIN_STOCK from gtkdocklet-win32.c
Gary Kramlich <grim@reaperworld.com>
parents:
39499
diff
changeset
|
33 | #define PIDGIN_ICON_MESSAGE_NEW "pidgin-im-message-new" |
|
39498
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
34 | |
|
51e0448a7ae8
Move relnot to not using STOCK and start the transition layer
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
35 | #endif /* PIDGIN_ICON_H */ |