diff options
Diffstat (limited to 'gnome-initial-setup/pages/account/gis-account-page-local.ui')
-rw-r--r-- | gnome-initial-setup/pages/account/gis-account-page-local.ui | 182 |
1 files changed, 182 insertions, 0 deletions
diff --git a/gnome-initial-setup/pages/account/gis-account-page-local.ui b/gnome-initial-setup/pages/account/gis-account-page-local.ui new file mode 100644 index 0000000..ccfd7e1 --- /dev/null +++ b/gnome-initial-setup/pages/account/gis-account-page-local.ui @@ -0,0 +1,182 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <!-- interface-requires gtk+ 3.0 --> + <template class="GisAccountPageLocal" parent="GtkBin"> + <child> + <object class="GtkBox" id="area"> + <property name="visible">True</property> + <property name="halign">center</property> + <property name="valign">fill</property> + <property name="orientation">vertical</property> + <child> + <object class="GtkToggleButton" id="avatar_button"> + <property name="visible">True</property> + <property name="margin_top">24</property> + <property name="halign">center</property> + <style> + <class name="avatar-button"/> + </style> + <child internal-child="accessible"> + <object class="AtkObject" id="avatar_button_accessible"> + <property name="accessible-name" translatable="yes">Avatar image</property> + </object> + </child> + <child> + <object class="GtkImage" id="avatar_image"> + <property name="visible">True</property> + <property name="pixel_size">96</property> + <property name="icon_name">avatar-default-symbolic</property> + <property name="icon_size">1</property> + </object> + </child> + </object> + </child> + <child> + <object class="GisPageHeader" id="header"> + <property name="visible">True</property> + <property name="margin_top">18</property> + <property name="title" translatable="yes">About You</property> + <property name="subtitle" translatable="yes">Please provide a name and username. You can choose a picture too.</property> + </object> + </child> + <child> + <object class="GtkGrid" id="form"> + <property name="visible">True</property> + <property name="column_spacing">12</property> + <property name="row_spacing">6</property> + <property name="margin_top">42</property> + <child> + <object class="GtkLabel" id="fullname_label"> + <property name="visible">True</property> + <property name="halign">end</property> + <property name="xalign">1</property> + <property name="label" translatable="yes">_Full Name</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">fullname_entry</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">3</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkEntry" id="fullname_entry"> + <property name="max_length">255</property> + <property name="width-chars">25</property> + <property name="visible">True</property> + <property name="invisible_char">●</property> + <property name="invisible_char_set">True</property> + </object> + <packing> + <property name="left_attach">1</property> + <property name="top_attach">3</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="username_label"> + <property name="visible">True</property> + <property name="halign">end</property> + <property name="xalign">1</property> + <property name="label" translatable="yes">_Username</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">comboboxtext-entry</property> + <property name="margin_top">6</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">4</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkComboBoxText" id="username_combo"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="has_entry">True</property> + <property name="entry_text_column">0</property> + <property name="id_column">1</property> + <property name="margin_top">6</property> + <child internal-child="entry"> + <object class="GtkEntry" id="comboboxtext-entry"> + <property name="can_focus">True</property> + <property name="width-chars">25</property> + </object> + </child> + </object> + <packing> + <property name="left_attach">1</property> + <property name="top_attach">4</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="username_explanation"> + <property name="visible">True</property> + <property name="yalign">0</property> + <property name="xalign">0</property> + <property name="width-chars">35</property> + <property name="max-width-chars">35</property> + <property name="height-request">50</property> + <property name="wrap">True</property> + <property name="wrap_mode">word-char</property> + <style> + <class name="dim-label"/> + </style> + <attributes> + <attribute name="scale" value="0.8"/> + </attributes> + </object> + <packing> + <property name="left_attach">1</property> + <property name="top_attach">5</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkBox" id="enable_parental_controls_box"> + <property name="visible">True</property> + <property name="orientation">vertical</property> + <child> + <object class="GtkCheckButton" id="enable_parental_controls_check_button"> + <property name="visible">True</property> + <property name="label" translatable="yes">Set up _parental controls for this user</property> + <property name="use-underline">True</property> + </object> + </child> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="label" translatable="yes">For use by a parent or supervisor, who must set up their own password.</property> + <property name="yalign">0</property> + <property name="xalign">0</property> + <property name="margin-left">24</property> + <style> + <class name="dim-label"/> + </style> + <attributes> + <attribute name="scale" value="0.8"/> + </attributes> + </object> + </child> + </object> + <packing> + <property name="left_attach">1</property> + <property name="top_attach">6</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + </object> + </child> + </object> + </child> + </template> +</interface> + |