Sat, 29 Oct 2022 02:05:16 -0500
Convert the dynamic fields of PidginAccountEditor to AdwEntryRow
This includes usersplits and account options for strings and integers.
Testing Done:
Created and XMPP account and set a bunch of settings and verified they were saved and loaded properly.
Reviewed at https://reviews.imfreedom.org/r/2000/
|
41483
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
1 | <?xml version="1.0" encoding="UTF-8"?> |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
2 | <!-- Generated with glade 3.38.2 |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
3 | |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
4 | Pidgin - Internet Messenger |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
5 | Copyright (C) Pidgin Developers <devel@pidgin.im> |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
6 | |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
7 | This program is free software; you can redistribute it and/or |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
8 | modify it under the terms of the GNU General Public License |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
9 | as published by the Free Software Foundation; either version 2 |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
10 | of the License, or (at your option) any later version. |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
11 | |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
12 | This program is distributed in the hope that it will be useful, |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
15 | GNU General Public License for more details. |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
16 | |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
17 | You should have received a copy of the GNU General Public License |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
18 | along with this program; if not, see <https://www.gnu.org/licenses/>. |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
19 | |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
20 | --> |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
21 | <interface> |
|
41688
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
22 | <requires lib="Adw" version="1.0"/> |
|
41576
f8771a229df1
Port account manager to GTK4
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41483
diff
changeset
|
23 | <requires lib="gtk" version="4.0"/> |
|
41483
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
24 | <requires lib="pidgin" version="3.0"/> |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
25 | <!-- interface-license-type gplv2 --> |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
26 | <!-- interface-name Pidgin --> |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
27 | <!-- interface-description Internet Messenger --> |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
28 | <!-- interface-copyright Pidgin Developers <devel@pidgin.im> --> |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
29 | <template class="PidginAccountEditor" parent="GtkDialog"> |
|
41688
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
30 | <property name="resizable">0</property> |
|
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
31 | <property name="default-height">600</property> |
|
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
32 | <property name="default-width">400</property> |
|
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
33 | <property name="title" translatable="1">Edit Account</property> |
|
41483
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
34 | <signal name="response" handler="pidgin_account_editor_response_cb" swapped="no"/> |
|
41576
f8771a229df1
Port account manager to GTK4
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41483
diff
changeset
|
35 | <child internal-child="content_area"> |
|
41483
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
36 | <object class="GtkBox"> |
|
41688
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
37 | <property name="vexpand">1</property> |
|
41576
f8771a229df1
Port account manager to GTK4
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41483
diff
changeset
|
38 | <child> |
|
41737
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
39 | <object class="AdwPreferencesPage"> |
|
41688
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
40 | <property name="vexpand">1</property> |
|
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
41 | <property name="hexpand">1</property> |
|
41737
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
42 | <child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
43 | <object class="AdwPreferencesGroup" id="login_options"> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
44 | <property name="title" translatable="1">Login Options</property> |
|
41688
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
45 | <child> |
|
41737
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
46 | <object class="PidginProtocolChooser" id="protocol"> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
47 | <property name="title" translatable="1">Pro_tocol</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
48 | <property name="use-underline">1</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
49 | <signal name="notify::protocol" handler="pidgin_account_editor_protocol_changed_cb" object="PidginAccountEditor" swapped="no"/> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
50 | </object> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
51 | </child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
52 | <child> |
|
41776
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
53 | <object class="AdwPreferencesRow"> |
|
41780
1247cc856233
Remove extra focus targets from Account Editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41776
diff
changeset
|
54 | <property name="focusable">0</property> |
|
41688
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
55 | <child> |
|
41776
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
56 | <object class="GtkListBox" id="user_splits"> |
|
41780
1247cc856233
Remove extra focus targets from Account Editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41776
diff
changeset
|
57 | <property name="focusable">0</property> |
|
41776
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
58 | <child> |
|
41863
0067a0ff5b74
Convert the dynamic fields of PidginAccountEditor to AdwEntryRow
Gary Kramlich <grim@reaperworld.com>
parents:
41858
diff
changeset
|
59 | <object class="AdwEntryRow" id="username"> |
|
41780
1247cc856233
Remove extra focus targets from Account Editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41776
diff
changeset
|
60 | <property name="focusable">0</property> |
|
41776
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
61 | <property name="title" translatable="1">_Username</property> |
|
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
62 | <property name="use-underline">1</property> |
|
41863
0067a0ff5b74
Convert the dynamic fields of PidginAccountEditor to AdwEntryRow
Gary Kramlich <grim@reaperworld.com>
parents:
41858
diff
changeset
|
63 | <signal name="changed" handler="pidgin_account_editor_username_changed_cb" object="PidginAccountEditor" swapped="no"/> |
|
41776
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
64 | </object> |
|
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
65 | </child> |
|
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
66 | </object> |
|
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
67 | </child> |
|
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
68 | </object> |
|
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
69 | </child> |
|
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
70 | <child> |
|
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
71 | <object class="AdwActionRow" id="require_password_row"> |
|
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
72 | <property name="activatable-widget">avatar</property> |
|
41780
1247cc856233
Remove extra focus targets from Account Editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41776
diff
changeset
|
73 | <property name="focusable">0</property> |
|
41776
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
74 | <property name="title" translatable="1">Require _password</property> |
|
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
75 | <property name="subtitle" translatable="1">This account has an optional password, setting this will make it required</property> |
|
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
76 | <property name="use-underline">1</property> |
|
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
77 | <property name="visible">0</property> |
|
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
78 | <child type="suffix"> |
|
3dc254c25eeb
Add the require password option to PidginAccountEditor
Gary Kramlich <grim@reaperworld.com>
parents:
41737
diff
changeset
|
79 | <object class="GtkSwitch" id="require_password"> |
|
41737
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
80 | <property name="valign">center</property> |
|
41688
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
81 | </object> |
|
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
82 | </child> |
|
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
83 | </object> |
|
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
84 | </child> |
|
41737
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
85 | </object> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
86 | </child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
87 | <child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
88 | <object class="AdwPreferencesGroup"> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
89 | <property name="title" translatable="1">User Options</property> |
|
41688
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
90 | <child> |
|
41858
38e61d11b89f
Migrate the static fields in PidginAccountEditor to AdwEntryRow
Gary Kramlich <grim@reaperworld.com>
parents:
41780
diff
changeset
|
91 | <object class="AdwEntryRow" id="alias"> |
|
41780
1247cc856233
Remove extra focus targets from Account Editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41776
diff
changeset
|
92 | <property name="focusable">0</property> |
|
41737
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
93 | <property name="title" translatable="1">_Local alias</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
94 | <property name="use-underline">1</property> |
|
41576
f8771a229df1
Port account manager to GTK4
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41483
diff
changeset
|
95 | </object> |
|
41688
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
96 | </child> |
|
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
97 | <child> |
|
41737
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
98 | <object class="AdwActionRow" id="avatar_row"> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
99 | <property name="activatable-widget">avatar</property> |
|
41780
1247cc856233
Remove extra focus targets from Account Editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41776
diff
changeset
|
100 | <property name="focusable">0</property> |
|
41737
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
101 | <property name="title" translatable="1">Use custom _avatar</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
102 | <property name="use-underline">1</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
103 | <property name="visible">0</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
104 | <child type="prefix"> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
105 | <object class="GtkSwitch" id="use_custom_avatar"> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
106 | <property name="valign">center</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
107 | </object> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
108 | </child> |
|
41688
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
109 | <child> |
|
41737
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
110 | <object class="GtkButton"> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
111 | <property name="css-classes">flat</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
112 | <property name="valign">center</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
113 | <binding name="sensitive"> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
114 | <lookup name="active">use_custom_avatar</lookup> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
115 | </binding> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
116 | <child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
117 | <object class="GtkImage" id="avatar"> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
118 | <property name="icon-name">select-avatar</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
119 | <property name="icon-size">large</property> |
|
41688
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
120 | </object> |
|
41737
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
121 | </child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
122 | <signal name="clicked" handler="pidgin_account_editor_avatar_set_clicked_cb" object="PidginAccountEditor" swapped="no"/> |
|
41688
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
123 | </object> |
|
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
124 | </child> |
|
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
125 | <child> |
|
41737
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
126 | <object class="GtkButton" id="remove"> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
127 | <property name="label" translatable="1">_Remove</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
128 | <property name="use-underline">1</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
129 | <property name="valign">center</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
130 | <binding name="sensitive"> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
131 | <lookup name="active">use_custom_avatar</lookup> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
132 | </binding> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
133 | <signal name="clicked" handler="pidgin_account_editor_avatar_remove_clicked_cb" object="PidginAccountEditor" swapped="no"/> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
134 | </object> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
135 | </child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
136 | </object> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
137 | </child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
138 | </object> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
139 | </child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
140 | <child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
141 | <object class="AdwPreferencesGroup" id="advanced_group"> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
142 | <property name="title" translatable="1">Advanced Options</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
143 | <property name="description" translatable="1">Additional options for this account.</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
144 | <property name="visible">0</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
145 | <child type="header-suffix"> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
146 | <object class="GtkSwitch" id="advanced_toggle"> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
147 | <property name="active">0</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
148 | <property name="valign">center</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
149 | </object> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
150 | </child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
151 | </object> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
152 | </child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
153 | <child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
154 | <object class="AdwPreferencesGroup"> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
155 | <property name="title" translatable="1">Proxy</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
156 | <child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
157 | <object class="AdwComboRow" id="proxy_type"> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
158 | <property name="title" translatable="1">Proxy t_ype</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
159 | <property name="use-underline">1</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
160 | <property name="use-subtitle">1</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
161 | <property name="model"> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
162 | <object class="GtkStringList"> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
163 | <items> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
164 | <item>global</item> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
165 | <item>none</item> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
166 | <item>socks4</item> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
167 | <item>socks5</item> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
168 | <item>tor</item> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
169 | <item>http</item> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
170 | <item>envvar</item> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
171 | </items> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
172 | </object> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
173 | </property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
174 | <property name="expression"> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
175 | <closure type="gchararray" function="pidgin_account_editor_proxy_type_expression_cb"/> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
176 | </property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
177 | <signal name="notify::selected" handler="pidgin_account_editor_proxy_type_changed_cb" object="PidginAccountEditor" swapped="no"/> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
178 | </object> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
179 | </child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
180 | <child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
181 | <object class="AdwPreferencesRow" id="proxy_options"> |
|
41780
1247cc856233
Remove extra focus targets from Account Editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41776
diff
changeset
|
182 | <property name="focusable">0</property> |
|
41737
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
183 | <property name="visible">0</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
184 | <child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
185 | <object class="GtkListBox"> |
|
41780
1247cc856233
Remove extra focus targets from Account Editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41776
diff
changeset
|
186 | <property name="focusable">0</property> |
|
41688
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
187 | <child> |
|
41858
38e61d11b89f
Migrate the static fields in PidginAccountEditor to AdwEntryRow
Gary Kramlich <grim@reaperworld.com>
parents:
41780
diff
changeset
|
188 | <object class="AdwEntryRow" id="proxy_host"> |
|
41780
1247cc856233
Remove extra focus targets from Account Editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41776
diff
changeset
|
189 | <property name="focusable">0</property> |
|
41737
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
190 | <property name="title" translatable="1">_Host</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
191 | <property name="use-underline">1</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
192 | </object> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
193 | </child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
194 | <child> |
|
41858
38e61d11b89f
Migrate the static fields in PidginAccountEditor to AdwEntryRow
Gary Kramlich <grim@reaperworld.com>
parents:
41780
diff
changeset
|
195 | <object class="AdwEntryRow" id="proxy_port"> |
|
41780
1247cc856233
Remove extra focus targets from Account Editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41776
diff
changeset
|
196 | <property name="focusable">0</property> |
|
41737
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
197 | <property name="title" translatable="1">P_ort</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
198 | <property name="use-underline">1</property> |
|
41858
38e61d11b89f
Migrate the static fields in PidginAccountEditor to AdwEntryRow
Gary Kramlich <grim@reaperworld.com>
parents:
41780
diff
changeset
|
199 | <property name="input-purpose">number</property> |
|
41737
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
200 | </object> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
201 | </child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
202 | <child> |
|
41858
38e61d11b89f
Migrate the static fields in PidginAccountEditor to AdwEntryRow
Gary Kramlich <grim@reaperworld.com>
parents:
41780
diff
changeset
|
203 | <object class="AdwEntryRow" id="proxy_username"> |
|
41780
1247cc856233
Remove extra focus targets from Account Editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41776
diff
changeset
|
204 | <property name="focusable">0</property> |
|
41737
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
205 | <property name="title" translatable="1">User_name</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
206 | <property name="use-underline">1</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
207 | </object> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
208 | </child> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
209 | <child> |
|
41858
38e61d11b89f
Migrate the static fields in PidginAccountEditor to AdwEntryRow
Gary Kramlich <grim@reaperworld.com>
parents:
41780
diff
changeset
|
210 | <object class="AdwPasswordEntryRow" id="proxy_password"> |
|
41780
1247cc856233
Remove extra focus targets from Account Editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41776
diff
changeset
|
211 | <property name="focusable">0</property> |
|
41737
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
212 | <property name="title" translatable="1">Pa_ssword</property> |
|
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
213 | <property name="use-underline">1</property> |
|
41688
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
214 | </object> |
|
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
215 | </child> |
|
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
216 | </object> |
|
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
217 | </child> |
|
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
218 | </object> |
|
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
219 | </child> |
|
41483
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
220 | </object> |
|
41737
657b634379ab
Remove extraneous scrolled window in account editor
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41691
diff
changeset
|
221 | </child> |
|
41483
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
222 | </object> |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
223 | </child> |
|
41576
f8771a229df1
Port account manager to GTK4
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41483
diff
changeset
|
224 | </object> |
|
f8771a229df1
Port account manager to GTK4
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41483
diff
changeset
|
225 | </child> |
|
f8771a229df1
Port account manager to GTK4
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41483
diff
changeset
|
226 | <child type="action"> |
|
f8771a229df1
Port account manager to GTK4
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41483
diff
changeset
|
227 | <object class="GtkButton" id="button1"> |
|
f8771a229df1
Port account manager to GTK4
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41483
diff
changeset
|
228 | <property name="label" translatable="1">_Cancel</property> |
|
f8771a229df1
Port account manager to GTK4
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41483
diff
changeset
|
229 | <property name="receives-default">1</property> |
|
f8771a229df1
Port account manager to GTK4
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41483
diff
changeset
|
230 | <property name="use-underline">1</property> |
|
f8771a229df1
Port account manager to GTK4
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41483
diff
changeset
|
231 | </object> |
|
f8771a229df1
Port account manager to GTK4
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41483
diff
changeset
|
232 | </child> |
|
f8771a229df1
Port account manager to GTK4
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41483
diff
changeset
|
233 | <child type="action"> |
|
f8771a229df1
Port account manager to GTK4
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41483
diff
changeset
|
234 | <object class="GtkButton" id="button2"> |
|
f8771a229df1
Port account manager to GTK4
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41483
diff
changeset
|
235 | <property name="label" translatable="1">_Save</property> |
|
f8771a229df1
Port account manager to GTK4
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41483
diff
changeset
|
236 | <property name="receives-default">1</property> |
|
41688
6ccdb4116ca2
Modernize the AccountEditor.
Gary Kramlich <grim@reaperworld.com>
parents:
41576
diff
changeset
|
237 | <property name="sensitive">0</property> |
|
41576
f8771a229df1
Port account manager to GTK4
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41483
diff
changeset
|
238 | <property name="use-underline">1</property> |
|
41483
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
239 | </object> |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
240 | </child> |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
241 | <action-widgets> |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
242 | <action-widget response="-6">button1</action-widget> |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
243 | <action-widget response="-10">button2</action-widget> |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
244 | </action-widgets> |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
245 | </template> |
|
e3bd18c1769d
The start of the new account editor.
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
246 | </interface> |