Mon, 07 Aug 2023 23:19:00 -0500
Remove the notify plugin
This hasn't been building by default for a while and depends on a whole bunch
of old conversation window api that it is the only consumer of. Also most people
nowadays are used to just getting a badge which is what we're planning on doing in
the near future. For all these reasons, we should just delete this.
Testing Done:
Ran `ninja turtles` without issue.
Reviewed at https://reviews.imfreedom.org/r/2537/
|
41268
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
1 | <?xml version="1.0" encoding="UTF-8"?> |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
2 | <!-- Generated with glade 3.38.2 |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
3 | |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
4 | Pidgin - Internet Messenger |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
5 | Copyright (C) Pidgin Developers <devel@pidgin.im> |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
6 | |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
7 | This program is free software; you can redistribute it and/or |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
8 | modify it under the terms of the GNU General Public License |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
9 | as published by the Free Software Foundation; either version 2 |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
10 | of the License, or (at your option) any later version. |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
11 | |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
12 | This program is distributed in the hope that it will be useful, |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
15 | GNU General Public License for more details. |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
16 | |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
17 | You should have received a copy of the GNU General Public License |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
18 | along with this program; if not, see <https://www.gnu.org/licenses/>. |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
19 | |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
20 | --> |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
21 | <interface> |
|
41584
a90849d63f9e
Port PidginStatusPrimitiveChooser to GTK4
Gary Kramlich <grim@reaperworld.com>
parents:
41268
diff
changeset
|
22 | <requires lib="gtk" version="4.0"/> |
|
41268
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
23 | <!-- interface-license-type gplv2 --> |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
24 | <!-- interface-name Pidgin --> |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
25 | <!-- interface-description Internet Messenger --> |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
26 | <!-- interface-copyright Pidgin Developers <devel@pidgin.im> --> |
|
42189
4784cd60a1f8
Use Adwaita widgets in status editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41925
diff
changeset
|
27 | <template class="PidginStatusPrimitiveChooser" parent="AdwComboRow"> |
|
4784cd60a1f8
Use Adwaita widgets in status editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41925
diff
changeset
|
28 | <property name="factory"> |
|
4784cd60a1f8
Use Adwaita widgets in status editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41925
diff
changeset
|
29 | <object class="GtkBuilderListItemFactory"> |
|
4784cd60a1f8
Use Adwaita widgets in status editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41925
diff
changeset
|
30 | <property name="bytes"> |
|
41925
103594fbcf6b
Convert PidginStatusPrimitiveChooser to a GtkDropDown
Gary Kramlich <grim@reaperworld.com>
parents:
41584
diff
changeset
|
31 | <![CDATA[ |
|
103594fbcf6b
Convert PidginStatusPrimitiveChooser to a GtkDropDown
Gary Kramlich <grim@reaperworld.com>
parents:
41584
diff
changeset
|
32 | <?xml version="1.0" encoding="UTF-8"?> |
|
103594fbcf6b
Convert PidginStatusPrimitiveChooser to a GtkDropDown
Gary Kramlich <grim@reaperworld.com>
parents:
41584
diff
changeset
|
33 | <interface> |
|
103594fbcf6b
Convert PidginStatusPrimitiveChooser to a GtkDropDown
Gary Kramlich <grim@reaperworld.com>
parents:
41584
diff
changeset
|
34 | <template class="GtkListItem"> |
|
103594fbcf6b
Convert PidginStatusPrimitiveChooser to a GtkDropDown
Gary Kramlich <grim@reaperworld.com>
parents:
41584
diff
changeset
|
35 | <property name="child"> |
|
42198
4df23def5fe0
Add a widget for displaying statuses
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42189
diff
changeset
|
36 | <object class="PidginStatusDisplay"> |
|
4df23def5fe0
Add a widget for displaying statuses
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42189
diff
changeset
|
37 | <binding name="primitive"> |
|
4df23def5fe0
Add a widget for displaying statuses
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42189
diff
changeset
|
38 | <closure type="PurpleStatusPrimitive" function="pidgin_status_primitive_chooser_primitive_cb"> |
|
4df23def5fe0
Add a widget for displaying statuses
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42189
diff
changeset
|
39 | <lookup name="item">GtkListItem</lookup> |
|
4df23def5fe0
Add a widget for displaying statuses
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42189
diff
changeset
|
40 | </closure> |
|
4df23def5fe0
Add a widget for displaying statuses
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42189
diff
changeset
|
41 | </binding> |
|
41925
103594fbcf6b
Convert PidginStatusPrimitiveChooser to a GtkDropDown
Gary Kramlich <grim@reaperworld.com>
parents:
41584
diff
changeset
|
42 | </object> |
|
103594fbcf6b
Convert PidginStatusPrimitiveChooser to a GtkDropDown
Gary Kramlich <grim@reaperworld.com>
parents:
41584
diff
changeset
|
43 | </property> |
|
41268
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
44 | </template> |
|
4adf517478fc
Create new widget and store for choosing status primitives
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
45 | </interface> |
|
41925
103594fbcf6b
Convert PidginStatusPrimitiveChooser to a GtkDropDown
Gary Kramlich <grim@reaperworld.com>
parents:
41584
diff
changeset
|
46 | ]]> |
|
103594fbcf6b
Convert PidginStatusPrimitiveChooser to a GtkDropDown
Gary Kramlich <grim@reaperworld.com>
parents:
41584
diff
changeset
|
47 | </property> |
|
42189
4784cd60a1f8
Use Adwaita widgets in status editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41925
diff
changeset
|
48 | </object> |
|
4784cd60a1f8
Use Adwaita widgets in status editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41925
diff
changeset
|
49 | </property> |
|
4784cd60a1f8
Use Adwaita widgets in status editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41925
diff
changeset
|
50 | <property name="model"> |
|
4784cd60a1f8
Use Adwaita widgets in status editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41925
diff
changeset
|
51 | <object class="GtkStringList"> |
|
4784cd60a1f8
Use Adwaita widgets in status editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41925
diff
changeset
|
52 | <items> |
|
4784cd60a1f8
Use Adwaita widgets in status editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41925
diff
changeset
|
53 | <item>offline</item> |
|
4784cd60a1f8
Use Adwaita widgets in status editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41925
diff
changeset
|
54 | <item>available</item> |
|
4784cd60a1f8
Use Adwaita widgets in status editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41925
diff
changeset
|
55 | <item>unavailable</item> |
|
4784cd60a1f8
Use Adwaita widgets in status editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41925
diff
changeset
|
56 | <item>invisible</item> |
|
4784cd60a1f8
Use Adwaita widgets in status editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41925
diff
changeset
|
57 | <item>away</item> |
|
42198
4df23def5fe0
Add a widget for displaying statuses
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42189
diff
changeset
|
58 | <item>extended_away</item> |
|
42189
4784cd60a1f8
Use Adwaita widgets in status editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41925
diff
changeset
|
59 | </items> |
|
41925
103594fbcf6b
Convert PidginStatusPrimitiveChooser to a GtkDropDown
Gary Kramlich <grim@reaperworld.com>
parents:
41584
diff
changeset
|
60 | </object> |
|
103594fbcf6b
Convert PidginStatusPrimitiveChooser to a GtkDropDown
Gary Kramlich <grim@reaperworld.com>
parents:
41584
diff
changeset
|
61 | </property> |
|
103594fbcf6b
Convert PidginStatusPrimitiveChooser to a GtkDropDown
Gary Kramlich <grim@reaperworld.com>
parents:
41584
diff
changeset
|
62 | </template> |
|
103594fbcf6b
Convert PidginStatusPrimitiveChooser to a GtkDropDown
Gary Kramlich <grim@reaperworld.com>
parents:
41584
diff
changeset
|
63 | </interface> |