Tue, 13 May 2025 14:29:06 -0500
Create a Privacy preference page with the send typing notification preference
This only controls whether or not the conversation window will send typing
notifications, plugins can still do this on their own.
Testing Done:
Used ngrep to verify if the irc typing messages were being sent or not. Also manually modified the settings file and verified the ui update and vice versa.
Bugs closed: PIDGIN-17450
Reviewed at https://reviews.imfreedom.org/r/3999/
|
43251
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
1 | <?xml version="1.0" encoding="UTF-8"?> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
2 | <!-- |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
3 | Pidgin - Internet Messenger |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
4 | Copyright (C) Pidgin Developers <devel@pidgin.im> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
5 | |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
6 | This program is free software; you can redistribute it and/or |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
7 | modify it under the terms of the GNU General Public License |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
8 | as published by the Free Software Foundation; either version 2 |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
9 | of the License, or (at your option) any later version. |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
10 | |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
11 | This program is distributed in the hope that it will be useful, |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
14 | GNU General Public License for more details. |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
15 | |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
16 | You should have received a copy of the GNU General Public License |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
17 | along with this program; if not, see <https://www.gnu.org/licenses/>. |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
18 | --> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
19 | <interface> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
20 | <requires lib="gtk" version="4.0"/> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
21 | <requires lib="Adw" version="1.0"/> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
22 | <!-- interface-license-type gplv2 --> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
23 | <!-- interface-name Pidgin --> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
24 | <!-- interface-description Internet Messenger --> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
25 | <!-- interface-copyright Pidgin Developers <devel@pidgin.im> --> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
26 | <template class="PidginPrivacyPrefs" parent="AdwPreferencesPage"> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
27 | <property name="icon-name">preferences-system-privacy-symbolic</property> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
28 | <property name="title" translatable="yes">Privacy</property> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
29 | <child> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
30 | <object class="AdwPreferencesGroup"> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
31 | <property name="title" translatable="yes">Activity</property> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
32 | <child> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
33 | <object class="AdwSwitchRow" id="send_typing_notifications"> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
34 | <property name="title" translatable="yes">Send _Typing Notifications</property> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
35 | <property name="use-underline">true</property> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
36 | </object> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
37 | </child> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
38 | </object> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
39 | </child> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
40 | </template> |
|
8bd7eee2f178
Create a Privacy preference page with the send typing notification preference
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
41 | </interface> |