diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2024-07-14 01:41:14 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2024-07-14 01:41:14 +0200 |
| commit | ec3fa197624cea242b05303461e6fece78d78009 (patch) | |
| tree | 11e0c48443f160d252cabd9adcba20c78675b9e2 /res/windows/create_participant.ui | |
| parent | 695ece2c35491a509c70ef710bd0419d67b8fd0f (diff) | |
| download | turns-ec3fa197624cea242b05303461e6fece78d78009.tar.xz turns-ec3fa197624cea242b05303461e6fece78d78009.zip | |
app/ui: layout basic participant creation dialog
Diffstat (limited to 'res/windows/create_participant.ui')
| -rw-r--r-- | res/windows/create_participant.ui | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/res/windows/create_participant.ui b/res/windows/create_participant.ui new file mode 100644 index 0000000..aa3d093 --- /dev/null +++ b/res/windows/create_participant.ui @@ -0,0 +1,74 @@ +<?xml version='1.0' encoding='UTF-8'?> +<!-- Created with Cambalache 0.90.4 --> +<interface> + <requires lib="gtk" version="4.14"/> + <requires lib="libadwaita" version="1.5"/> + <object class="AdwDialog" id="create_participant_dialog"> + <property name="child"> + <object class="AdwToolbarView"> + <property name="content"> + <object class="AdwClamp"> + <property name="child"> + <object class="GtkBox"> + <property name="hexpand">True</property> + <property name="margin-bottom">18</property> + <property name="margin-end">12</property> + <property name="margin-start">12</property> + <property name="margin-top">18</property> + <property name="orientation">vertical</property> + <property name="spacing">18</property> + <property name="valign">start</property> + <child> + <object class="GtkListBox"> + <child> + <object class="AdwEntryRow" id="name"> + <property name="title">Name</property> + </object> + </child> + <child> + <object class="AdwSpinRow" id="order"> + <property name="adjustment"> + <object class="GtkAdjustment"> + <property name="lower">-1000.0</property> + <property name="step-increment">1.0</property> + <property name="upper">1000.0</property> + </object> + </property> + <property name="digits">1</property> + <property name="numeric">True</property> + <property name="title">Order</property> + </object> + </child> + <child> + <object class="AdwComboRow" id="disposition"> + <property name="title">Disposition</property> + </object> + </child> + <style> + <class name="boxed-list"/> + </style> + </object> + </child> + <child> + <object class="GtkButton" id="finish"> + <property name="hexpand">True</property> + <property name="label">Finish</property> + <style> + <class name="pill"/> + <class name="suggested-action"/> + </style> + </object> + </child> + </object> + </property> + </object> + </property> + <child type="top"> + <object class="AdwHeaderBar"/> + </child> + </object> + </property> + <property name="hexpand">True</property> + <property name="title">Add Participant</property> + </object> +</interface> |
