Sat, 09 Jun 2018 01:43:48 +0000
Merged in CMaiku/pidgin (pull request #367)
gtkdebug: Fix initial filter level of debug window
Approved-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
Approved-by: Eion Robb <eionrobb@gmail.com>
Approved-by: Gary Kramlich <grim@reaperworld.com>
| 38659 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
|
39055
13beb864adec
Set the event box to not expand/fill
Gary Kramlich <grim@reaperworld.com>
parents:
38674
diff
changeset
|
2 | <!-- Generated with glade 3.22.1 --> |
| 38659 | 3 | <interface> |
| 4 | <requires lib="gtk+" version="3.10"/> | |
|
38660
d6a4308481c7
Get the meson arguments working
Gary Kramlich <grim@reaperworld.com>
parents:
38659
diff
changeset
|
5 | <object class="GtkTreeStore" id="build_info_store"> |
|
d6a4308481c7
Get the meson arguments working
Gary Kramlich <grim@reaperworld.com>
parents:
38659
diff
changeset
|
6 | <columns> |
|
d6a4308481c7
Get the meson arguments working
Gary Kramlich <grim@reaperworld.com>
parents:
38659
diff
changeset
|
7 | <!-- column-name title --> |
|
d6a4308481c7
Get the meson arguments working
Gary Kramlich <grim@reaperworld.com>
parents:
38659
diff
changeset
|
8 | <column type="gchararray"/> |
|
d6a4308481c7
Get the meson arguments working
Gary Kramlich <grim@reaperworld.com>
parents:
38659
diff
changeset
|
9 | <!-- column-name value --> |
|
d6a4308481c7
Get the meson arguments working
Gary Kramlich <grim@reaperworld.com>
parents:
38659
diff
changeset
|
10 | <column type="gchararray"/> |
|
d6a4308481c7
Get the meson arguments working
Gary Kramlich <grim@reaperworld.com>
parents:
38659
diff
changeset
|
11 | </columns> |
|
d6a4308481c7
Get the meson arguments working
Gary Kramlich <grim@reaperworld.com>
parents:
38659
diff
changeset
|
12 | </object> |
| 38662 | 13 | <object class="GtkTreeStore" id="developers_store"> |
| 14 | <columns> | |
| 15 | <!-- column-name markup --> | |
| 16 | <column type="gchararray"/> | |
| 17 | <!-- column-name align --> | |
| 18 | <column type="gfloat"/> | |
| 19 | </columns> | |
| 20 | </object> | |
| 21 | <object class="GtkTreeStore" id="translators_store"> | |
| 38659 | 22 | <columns> |
| 23 | <!-- column-name markup --> | |
| 24 | <column type="gchararray"/> | |
| 25 | <!-- column-name align --> | |
| 26 | <column type="gfloat"/> | |
| 27 | </columns> | |
| 28 | </object> | |
| 29 | <template class="PidginAboutDialog" parent="GtkDialog"> | |
| 30 | <property name="can_focus">False</property> | |
| 31 | <property name="border_width">5</property> | |
| 32 | <property name="resizable">False</property> | |
| 33 | <property name="window_position">center</property> | |
| 34 | <property name="type_hint">dialog</property> | |
|
39055
13beb864adec
Set the event box to not expand/fill
Gary Kramlich <grim@reaperworld.com>
parents:
38674
diff
changeset
|
35 | <child> |
|
13beb864adec
Set the event box to not expand/fill
Gary Kramlich <grim@reaperworld.com>
parents:
38674
diff
changeset
|
36 | <placeholder/> |
|
13beb864adec
Set the event box to not expand/fill
Gary Kramlich <grim@reaperworld.com>
parents:
38674
diff
changeset
|
37 | </child> |
| 38659 | 38 | <child internal-child="vbox"> |
| 39 | <object class="GtkBox"> | |
| 40 | <property name="can_focus">False</property> | |
| 41 | <property name="orientation">vertical</property> | |
| 42 | <property name="spacing">2</property> | |
| 43 | <child internal-child="action_area"> | |
| 44 | <object class="GtkButtonBox"> | |
| 45 | <property name="can_focus">False</property> | |
| 46 | <property name="layout_style">spread</property> | |
| 47 | <child> | |
|
38673
743b0df28288
replace the toggle buttons with a GtkStackSwitcher which simplifies the code quite a bit
Gary Kramlich <grim@reaperworld.com>
parents:
38666
diff
changeset
|
48 | <object class="GtkStackSwitcher" id="switcher"> |
| 38662 | 49 | <property name="visible">True</property> |
|
38673
743b0df28288
replace the toggle buttons with a GtkStackSwitcher which simplifies the code quite a bit
Gary Kramlich <grim@reaperworld.com>
parents:
38666
diff
changeset
|
50 | <property name="can_focus">False</property> |
|
743b0df28288
replace the toggle buttons with a GtkStackSwitcher which simplifies the code quite a bit
Gary Kramlich <grim@reaperworld.com>
parents:
38666
diff
changeset
|
51 | <property name="stack">stack</property> |
| 38662 | 52 | </object> |
| 53 | <packing> | |
| 54 | <property name="expand">True</property> | |
| 55 | <property name="fill">True</property> | |
| 56 | <property name="position">0</property> | |
| 57 | </packing> | |
| 58 | </child> | |
| 59 | <child> | |
|
38666
c0bf67926a79
Wire up the close button
Gary Kramlich <grim@reaperworld.com>
parents:
38664
diff
changeset
|
60 | <object class="GtkButton" id="close_button"> |
| 38659 | 61 | <property name="label" translatable="yes">Close</property> |
| 62 | <property name="visible">True</property> | |
| 63 | <property name="can_focus">True</property> | |
| 64 | <property name="receives_default">True</property> | |
| 65 | </object> | |
| 66 | <packing> | |
| 67 | <property name="expand">True</property> | |
| 68 | <property name="fill">True</property> | |
|
38673
743b0df28288
replace the toggle buttons with a GtkStackSwitcher which simplifies the code quite a bit
Gary Kramlich <grim@reaperworld.com>
parents:
38666
diff
changeset
|
69 | <property name="position">1</property> |
| 38659 | 70 | </packing> |
| 71 | </child> | |
| 72 | </object> | |
| 73 | <packing> | |
| 74 | <property name="expand">False</property> | |
| 75 | <property name="fill">False</property> | |
| 76 | <property name="position">0</property> | |
| 77 | </packing> | |
| 78 | </child> | |
| 79 | <child> | |
| 80 | <object class="GtkBox"> | |
| 81 | <property name="visible">True</property> | |
| 82 | <property name="can_focus">False</property> | |
| 83 | <property name="border_width">12</property> | |
| 84 | <property name="orientation">vertical</property> | |
| 85 | <property name="spacing">5</property> | |
| 86 | <child> | |
| 87 | <object class="GtkEventBox" id="event-box"> | |
| 88 | <property name="visible">True</property> | |
| 89 | <property name="can_focus">False</property> | |
| 90 | <property name="above_child">True</property> | |
| 91 | <child> | |
| 92 | <object class="GtkImage" id="logo"> | |
| 93 | <property name="visible">True</property> | |
| 94 | <property name="can_focus">False</property> | |
| 95 | <property name="resource">/im/pidgin/Pidgin/logo.png</property> | |
| 96 | <property name="icon_size">6</property> | |
| 97 | </object> | |
| 98 | </child> | |
| 99 | </object> | |
| 100 | <packing> | |
|
39055
13beb864adec
Set the event box to not expand/fill
Gary Kramlich <grim@reaperworld.com>
parents:
38674
diff
changeset
|
101 | <property name="expand">False</property> |
|
13beb864adec
Set the event box to not expand/fill
Gary Kramlich <grim@reaperworld.com>
parents:
38674
diff
changeset
|
102 | <property name="fill">False</property> |
| 38659 | 103 | <property name="position">0</property> |
| 104 | </packing> | |
| 105 | </child> | |
| 106 | <child> | |
|
38664
253a9bbc3317
Clean up the main page on the about dialog
Gary Kramlich <grim@reaperworld.com>
parents:
38662
diff
changeset
|
107 | <object class="GtkLabel" id="application_name"> |
| 38659 | 108 | <property name="visible">True</property> |
| 109 | <property name="can_focus">False</property> | |
| 110 | <property name="label" translatable="yes">Pidgin</property> | |
| 111 | <property name="justify">center</property> | |
| 112 | <property name="selectable">True</property> | |
| 113 | <attributes> | |
| 114 | <attribute name="weight" value="bold"/> | |
| 115 | </attributes> | |
| 116 | </object> | |
| 117 | <packing> | |
| 118 | <property name="expand">False</property> | |
| 119 | <property name="fill">True</property> | |
| 120 | <property name="position">1</property> | |
| 121 | </packing> | |
| 122 | </child> | |
| 123 | <child> | |
| 124 | <object class="GtkStack" id="stack"> | |
| 125 | <property name="width_request">400</property> | |
| 126 | <property name="height_request">150</property> | |
| 127 | <property name="visible">True</property> | |
| 128 | <property name="can_focus">False</property> | |
| 129 | <property name="margin_bottom">2</property> | |
| 130 | <property name="transition_type">slide-up</property> | |
| 131 | <child> | |
|
38664
253a9bbc3317
Clean up the main page on the about dialog
Gary Kramlich <grim@reaperworld.com>
parents:
38662
diff
changeset
|
132 | <object class="GtkScrolledWindow" id="main_scrolled_window"> |
| 38659 | 133 | <property name="visible">True</property> |
|
38664
253a9bbc3317
Clean up the main page on the about dialog
Gary Kramlich <grim@reaperworld.com>
parents:
38662
diff
changeset
|
134 | <property name="can_focus">True</property> |
|
253a9bbc3317
Clean up the main page on the about dialog
Gary Kramlich <grim@reaperworld.com>
parents:
38662
diff
changeset
|
135 | <property name="hscrollbar_policy">never</property> |
|
253a9bbc3317
Clean up the main page on the about dialog
Gary Kramlich <grim@reaperworld.com>
parents:
38662
diff
changeset
|
136 | <property name="shadow_type">in</property> |
| 38659 | 137 | <child> |
|
38664
253a9bbc3317
Clean up the main page on the about dialog
Gary Kramlich <grim@reaperworld.com>
parents:
38662
diff
changeset
|
138 | <placeholder/> |
| 38659 | 139 | </child> |
| 140 | </object> | |
| 141 | <packing> | |
| 142 | <property name="name">main</property> | |
|
38673
743b0df28288
replace the toggle buttons with a GtkStackSwitcher which simplifies the code quite a bit
Gary Kramlich <grim@reaperworld.com>
parents:
38666
diff
changeset
|
143 | <property name="title" translatable="yes">General</property> |
| 38659 | 144 | </packing> |
| 145 | </child> | |
| 146 | <child> | |
| 38662 | 147 | <object class="GtkScrolledWindow" id="developers_page"> |
| 38659 | 148 | <property name="visible">True</property> |
| 149 | <property name="can_focus">True</property> | |
| 150 | <property name="hscrollbar_policy">never</property> | |
| 151 | <property name="shadow_type">in</property> | |
| 152 | <child> | |
| 38662 | 153 | <object class="GtkTreeView" id="developers_treeview"> |
| 38659 | 154 | <property name="visible">True</property> |
| 155 | <property name="can_focus">True</property> | |
| 38662 | 156 | <property name="model">developers_store</property> |
| 38659 | 157 | <property name="headers_visible">False</property> |
| 158 | <property name="show_expanders">False</property> | |
| 159 | <child internal-child="selection"> | |
| 160 | <object class="GtkTreeSelection"/> | |
| 161 | </child> | |
| 162 | <child> | |
| 38662 | 163 | <object class="GtkTreeViewColumn" id="developers_column"> |
| 38659 | 164 | <property name="resizable">True</property> |
| 165 | <property name="sizing">autosize</property> | |
| 166 | <child> | |
| 38662 | 167 | <object class="GtkCellRendererText" id="developers_cell_renderer"/> |
| 38659 | 168 | <attributes> |
| 169 | <attribute name="xalign">1</attribute> | |
| 170 | <attribute name="markup">0</attribute> | |
| 171 | </attributes> | |
| 172 | </child> | |
| 173 | </object> | |
| 174 | </child> | |
| 175 | </object> | |
| 176 | </child> | |
| 177 | </object> | |
| 178 | <packing> | |
| 38662 | 179 | <property name="name">developers</property> |
|
38673
743b0df28288
replace the toggle buttons with a GtkStackSwitcher which simplifies the code quite a bit
Gary Kramlich <grim@reaperworld.com>
parents:
38666
diff
changeset
|
180 | <property name="title" translatable="yes">Developers</property> |
|
743b0df28288
replace the toggle buttons with a GtkStackSwitcher which simplifies the code quite a bit
Gary Kramlich <grim@reaperworld.com>
parents:
38666
diff
changeset
|
181 | <property name="position">1</property> |
| 38659 | 182 | </packing> |
| 183 | </child> | |
| 184 | <child> | |
| 38662 | 185 | <object class="GtkScrolledWindow" id="translators_page"> |
| 186 | <property name="visible">True</property> | |
| 187 | <property name="can_focus">True</property> | |
| 188 | <property name="shadow_type">in</property> | |
| 189 | <child> | |
| 190 | <object class="GtkTreeView" id="translators_treeview"> | |
| 191 | <property name="visible">True</property> | |
| 192 | <property name="can_focus">True</property> | |
| 193 | <property name="model">translators_store</property> | |
| 194 | <property name="headers_visible">False</property> | |
| 195 | <property name="show_expanders">False</property> | |
| 196 | <child internal-child="selection"> | |
| 197 | <object class="GtkTreeSelection"/> | |
| 198 | </child> | |
| 199 | <child> | |
| 200 | <object class="GtkTreeViewColumn" id="translators_column"> | |
| 201 | <child> | |
| 202 | <object class="GtkCellRendererText" id="translators_cell_renderer"/> | |
| 203 | <attributes> | |
| 204 | <attribute name="xalign">1</attribute> | |
| 205 | <attribute name="markup">0</attribute> | |
| 206 | </attributes> | |
| 207 | </child> | |
| 208 | </object> | |
| 209 | </child> | |
| 210 | </object> | |
| 211 | </child> | |
| 212 | </object> | |
| 213 | <packing> | |
| 214 | <property name="name">translators</property> | |
|
38673
743b0df28288
replace the toggle buttons with a GtkStackSwitcher which simplifies the code quite a bit
Gary Kramlich <grim@reaperworld.com>
parents:
38666
diff
changeset
|
215 | <property name="title" translatable="yes">Translators</property> |
|
743b0df28288
replace the toggle buttons with a GtkStackSwitcher which simplifies the code quite a bit
Gary Kramlich <grim@reaperworld.com>
parents:
38666
diff
changeset
|
216 | <property name="position">2</property> |
| 38662 | 217 | </packing> |
| 218 | </child> | |
| 219 | <child> | |
| 38659 | 220 | <object class="GtkScrolledWindow" id="build_info_page"> |
| 221 | <property name="visible">True</property> | |
| 222 | <property name="can_focus">True</property> | |
|
38660
d6a4308481c7
Get the meson arguments working
Gary Kramlich <grim@reaperworld.com>
parents:
38659
diff
changeset
|
223 | <property name="hscrollbar_policy">never</property> |
| 38659 | 224 | <property name="shadow_type">in</property> |
| 225 | <child> | |
|
38660
d6a4308481c7
Get the meson arguments working
Gary Kramlich <grim@reaperworld.com>
parents:
38659
diff
changeset
|
226 | <object class="GtkTreeView" id="build_info_treeview"> |
| 38659 | 227 | <property name="visible">True</property> |
| 228 | <property name="can_focus">True</property> | |
|
38660
d6a4308481c7
Get the meson arguments working
Gary Kramlich <grim@reaperworld.com>
parents:
38659
diff
changeset
|
229 | <property name="model">build_info_store</property> |
|
d6a4308481c7
Get the meson arguments working
Gary Kramlich <grim@reaperworld.com>
parents:
38659
diff
changeset
|
230 | <property name="headers_visible">False</property> |
|
38661
cf4073d0d648
A bunch more tweaks and added build and runtime library versions
Gary Kramlich <grim@reaperworld.com>
parents:
38660
diff
changeset
|
231 | <property name="show_expanders">False</property> |
| 38659 | 232 | <child internal-child="selection"> |
| 233 | <object class="GtkTreeSelection"/> | |
| 234 | </child> | |
| 235 | <child> | |
| 236 | <object class="GtkTreeViewColumn"> | |
| 237 | <child> | |
| 238 | <object class="GtkCellRendererText"/> | |
| 239 | <attributes> | |
|
38660
d6a4308481c7
Get the meson arguments working
Gary Kramlich <grim@reaperworld.com>
parents:
38659
diff
changeset
|
240 | <attribute name="markup">0</attribute> |
| 38659 | 241 | </attributes> |
| 242 | </child> | |
| 243 | </object> | |
| 244 | </child> | |
| 245 | <child> | |
| 246 | <object class="GtkTreeViewColumn"> | |
| 247 | <child> | |
| 248 | <object class="GtkCellRendererText"/> | |
| 249 | <attributes> | |
| 250 | <attribute name="markup">1</attribute> | |
| 251 | </attributes> | |
| 252 | </child> | |
| 253 | </object> | |
| 254 | </child> | |
| 255 | </object> | |
| 256 | </child> | |
| 257 | </object> | |
| 258 | <packing> | |
|
38660
d6a4308481c7
Get the meson arguments working
Gary Kramlich <grim@reaperworld.com>
parents:
38659
diff
changeset
|
259 | <property name="name">build-info</property> |
|
38673
743b0df28288
replace the toggle buttons with a GtkStackSwitcher which simplifies the code quite a bit
Gary Kramlich <grim@reaperworld.com>
parents:
38666
diff
changeset
|
260 | <property name="title" translatable="yes">Build Information</property> |
|
743b0df28288
replace the toggle buttons with a GtkStackSwitcher which simplifies the code quite a bit
Gary Kramlich <grim@reaperworld.com>
parents:
38666
diff
changeset
|
261 | <property name="position">3</property> |
| 38659 | 262 | </packing> |
| 263 | </child> | |
| 264 | </object> | |
| 265 | <packing> | |
| 266 | <property name="expand">True</property> | |
| 267 | <property name="fill">True</property> | |
| 268 | <property name="position">2</property> | |
| 269 | </packing> | |
| 270 | </child> | |
| 271 | </object> | |
| 272 | <packing> | |
| 273 | <property name="expand">True</property> | |
| 274 | <property name="fill">True</property> | |
| 275 | <property name="position">1</property> | |
| 276 | </packing> | |
| 277 | </child> | |
| 278 | </object> | |
| 279 | </child> | |
| 280 | </template> | |
| 281 | </interface> |