diff options
Diffstat (limited to '')
-rw-r--r-- | panels/network/wireless-security/ws-wpa-eap.ui | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/panels/network/wireless-security/ws-wpa-eap.ui b/panels/network/wireless-security/ws-wpa-eap.ui new file mode 100644 index 0000000..0555aaa --- /dev/null +++ b/panels/network/wireless-security/ws-wpa-eap.ui @@ -0,0 +1,104 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <requires lib="gtk+" version="3.4"/> + <object class="GtkListStore" id="auth_model"> + <columns> + <!-- column-name label --> + <column type="gchararray"/> + <!-- column-name id --> + <column type="gchararray"/> + <!-- column-name visible --> + <column type="gboolean"/> + </columns> + <data> + <row> + <col id="0" translatable="yes">MD5</col> + <col id="1">md5</col> + <col id="2">True</col> + </row> + <row> + <col id="0" translatable="yes">TLS</col> + <col id="1">tls</col> + <col id="2">True</col> + </row> + <row> + <col id="0" translatable="yes">LEAP</col> + <col id="1">leap</col> + <col id="2">True</col> + </row> + <row> + <col id="0" translatable="yes">PWD</col> + <col id="1">pwd</col> + <col id="2">True</col> + </row> + <row> + <col id="0" translatable="yes">FAST</col> + <col id="1">fast</col> + <col id="2">True</col> + </row> + <row> + <col id="0" translatable="yes">Tunneled TLS</col> + <col id="1">ttls</col> + <col id="2">True</col> + </row> + <row> + <col id="0" translatable="yes">Protected EAP (PEAP)</col> + <col id="1">peap</col> + <col id="2">True</col> + </row> + </data> + </object> + <template class="WirelessSecurityWPAEAP" parent="GtkGrid"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="column_spacing">6</property> + <property name="row_spacing">6</property> + <child> + <object class="GtkLabel" id="auth_label"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="xalign">1</property> + <property name="label" translatable="yes">Au_thentication</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">auth_combo</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">0</property> + </packing> + </child> + <child> + <object class="GtkComboBox" id="auth_combo"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="hexpand">True</property> + <property name="model">auth_model</property> + <child> + <object class="GtkCellRendererText"/> + <attributes> + <attribute name="text">0</attribute> + </attributes> + </child> + </object> + <packing> + <property name="left_attach">1</property> + <property name="top_attach">0</property> + </packing> + </child> + <child> + <object class="GtkBox" id="method_box"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="orientation">vertical</property> + <child> + <placeholder/> + </child> + </object> + <packing> + <property name="left_attach">0</property> + <property name="width">2</property> + <property name="top_attach">1</property> + </packing> + </child> + </template> +</interface> |