diff options
Diffstat (limited to 'src/gui/gtd-initial-setup-window.ui')
| -rw-r--r-- | src/gui/gtd-initial-setup-window.ui | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/src/gui/gtd-initial-setup-window.ui b/src/gui/gtd-initial-setup-window.ui new file mode 100644 index 0000000..01c4b87 --- /dev/null +++ b/src/gui/gtd-initial-setup-window.ui @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <requires lib="gtk+" version="3.16"/> + <template class="GtdInitialSetupWindow" parent="GtkApplicationWindow"> + <property name="width_request">800</property> + <property name="height_request">600</property> + <property name="resizable">0</property> + <property name="window_position">center</property> + <property name="default_width">800</property> + <property name="default_height">600</property> + <child> + <object class="GtkBox" id="box"> + <property name="valign">center</property> + <property name="margin_bottom">48</property> + <property name="vexpand">1</property> + <property name="orientation">vertical</property> + <property name="spacing">18</property> + <child> + <object class="GtkLabel" id="welcome_label"> + <property name="label" translatable="yes">Welcome</property> + <style> + <class name="main-title"/> + </style> + </object> + <packing> + <property name="fill">True</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="subtitle_label"> + <property name="label" translatable="yes">Log in to online accounts to access your tasks</property> + <style> + <class name="main-subtitle"/> + </style> + </object> + <packing> + <property name="fill">True</property> + </packing> + </child> + <child> + <object class="GtdStorageSelector" id="storage_selector"> + <property name="receives_default">True</property> + <property name="width_request">400</property> + <property name="valign">center</property> + <property name="halign">center</property> + <signal name="storage-selected" handler="gtd_initial_setup_window__location_selected" object="GtdInitialSetupWindow" swapped="yes"/> + </object> + </child> + </object> + </child> + <child type="titlebar"> + <object class="GtkHeaderBar" id="headerbar"> + <property name="title" translatable="yes">Endeavour Setup</property> + <child> + <object class="GtkButton" id="cancel_button"> + <property name="label" translatable="yes">_Cancel</property> + <property name="use_underline">1</property> + <property name="can_focus">1</property> + <property name="receives_default">1</property> + <signal name="clicked" handler="gtd_initial_setup_window__button_clicked" object="GtdInitialSetupWindow" swapped="yes"/> + </object> + </child> + <child> + <object class="GtkButton" id="done_button"> + <property name="label" translatable="yes">_Done</property> + <property name="use_underline">1</property> + <property name="sensitive">0</property> + <property name="can_focus">1</property> + <property name="receives_default">1</property> + <signal name="clicked" handler="gtd_initial_setup_window__button_clicked" object="GtdInitialSetupWindow" swapped="yes"/> + <style> + <class name="suggested-action"/> + </style> + </object> + <packing> + <property name="pack_type">end</property> + </packing> + </child> + </object> + </child> + </template> +</interface> |
