2012-12-17 14:17:42 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<interface>
|
|
|
|
<!-- interface-requires gtk+ 3.0 -->
|
2017-07-17 23:21:08 -03:00
|
|
|
<object class="GtkBox" id="vbox6">
|
2012-12-17 14:17:42 -05:00
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can_focus">False</property>
|
2017-07-17 23:21:08 -03:00
|
|
|
<property name="spacing">6</property>
|
|
|
|
<property name="orientation">vertical</property>
|
|
|
|
<child>
|
|
|
|
<object class="GtkBox" id="actions">
|
2012-12-17 14:17:42 -05:00
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can_focus">False</property>
|
|
|
|
<child>
|
2017-07-17 23:21:08 -03:00
|
|
|
<object class="GtkLabel" id="label_device">
|
2012-12-17 14:17:42 -05:00
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can_focus">False</property>
|
2017-07-17 23:21:08 -03:00
|
|
|
<property name="hexpand">True</property>
|
|
|
|
<property name="xalign">0</property>
|
|
|
|
<property name="label" translatable="yes">Wired</property>
|
|
|
|
<property name="ellipsize">end</property>
|
|
|
|
<attributes>
|
|
|
|
<attribute name="weight" value="bold"/>
|
|
|
|
</attributes>
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
<child>
|
|
|
|
<object class="GtkButton" id="add_profile_button">
|
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can_focus">True</property>
|
|
|
|
<property name="receives_default">True</property>
|
|
|
|
<property name="relief">none</property>
|
2012-12-17 14:17:42 -05:00
|
|
|
<child>
|
2017-07-17 23:21:08 -03:00
|
|
|
<object class="GtkImage">
|
2012-12-17 14:17:42 -05:00
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can_focus">True</property>
|
2017-07-17 23:21:08 -03:00
|
|
|
<property name="icon_name">list-add-symbolic</property>
|
2012-12-17 14:17:42 -05:00
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
</object>
|
|
|
|
</child>
|
2017-07-17 23:21:08 -03:00
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
|
|
|
|
<child>
|
|
|
|
<object class="GtkBox">
|
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can_focus">False</property>
|
|
|
|
<property name="orientation">vertical</property>
|
|
|
|
<property name="spacing">6</property>
|
2012-12-17 14:17:42 -05:00
|
|
|
<child>
|
2017-07-17 23:21:08 -03:00
|
|
|
<object class="GtkScrolledWindow" id="list">
|
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can_focus">True</property>
|
|
|
|
<property name="hexpand">True</property>
|
|
|
|
<property name="hscrollbar_policy">never</property>
|
|
|
|
<property name="vscrollbar_policy">never</property>
|
|
|
|
<property name="shadow_type">in</property>
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
|
|
|
|
<!-- Single profile row -->
|
|
|
|
<child>
|
|
|
|
<object class="GtkFrame" id="details">
|
2012-12-17 14:17:42 -05:00
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can_focus">False</property>
|
2017-07-17 23:21:08 -03:00
|
|
|
<property name="expand">True</property>
|
2012-12-17 14:17:42 -05:00
|
|
|
<child>
|
2017-07-17 23:21:08 -03:00
|
|
|
<object class="GtkListBox" id="single_profile_listbox">
|
2012-12-17 14:17:42 -05:00
|
|
|
<property name="visible">True</property>
|
2017-07-17 23:21:08 -03:00
|
|
|
<property name="can_focus">False</property>
|
|
|
|
<property name="selection_mode">none</property>
|
|
|
|
<child>
|
|
|
|
<object class="GtkListBoxRow" id="details_row">
|
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can_focus">False</property>
|
|
|
|
<property name="selectable">False</property>
|
|
|
|
<child>
|
|
|
|
<object class="GtkBox">
|
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can_focus">False</property>
|
|
|
|
<property name="orientation">horizontal</property>
|
|
|
|
<property name="spacing">12</property>
|
Harmonize list box row layouts
While it isn't possible, or even advisable, to make all the list
box rows the same height, using a number of standard heights will
make the control center feel more harmoneous.
Adust the height of the list box rows in Color, Date & Time,
Mouse & Touchpad, Network, Privacy, Region & Language, Sharing
and Universal Access. Makes standard rows that contain labels
and/or controls 58px tall. Some other rows, such as those which
contain two lines of text, are allowed to be taller.
https://bugzilla.gnome.org/show_bug.cgi?id=786384
2017-08-17 17:17:56 +01:00
|
|
|
<property name="margin_top">9</property>
|
|
|
|
<property name="margin_bottom">9</property>
|
|
|
|
<property name="margin_start">20</property>
|
|
|
|
<property name="margin_end">20</property>
|
2017-07-17 23:21:08 -03:00
|
|
|
<child>
|
|
|
|
<object class="GtkLabel" id="label_status">
|
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can_focus">False</property>
|
|
|
|
<property name="hexpand">True</property>
|
|
|
|
<property name="xalign">0</property>
|
|
|
|
<property name="label">Cable unplugged</property>
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
<child>
|
|
|
|
<object class="GtkSwitch" id="device_off_switch">
|
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can_focus">True</property>
|
|
|
|
<property name="halign">end</property>
|
|
|
|
<property name="valign">center</property>
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
<child>
|
|
|
|
<object class="GtkButton" id="details_button">
|
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can_focus">True</property>
|
|
|
|
<property name="receives_default">True</property>
|
|
|
|
<property name="halign">end</property>
|
|
|
|
<child>
|
|
|
|
<object class="GtkImage">
|
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can_focus">False</property>
|
|
|
|
<property name="icon-name">emblem-system-symbolic</property>
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
|
|
|
|
<child internal-child="accessible">
|
|
|
|
<object class="AtkObject" id="details_button-accessible">
|
|
|
|
<property name="accessible-name" translatable="yes">Options…</property>
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
</object>
|
|
|
|
</child>
|
2013-02-11 18:22:11 -05:00
|
|
|
</object>
|
|
|
|
</child>
|
2012-12-17 14:17:42 -05:00
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
</object>
|
2017-07-17 23:21:08 -03:00
|
|
|
</child>
|
|
|
|
</object>
|
2012-12-17 14:17:42 -05:00
|
|
|
<object class="GtkSizeGroup" id="sizegroup1"/>
|
|
|
|
</interface>
|