1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
<?xml version='1.0' encoding='UTF-8'?>
<!-- Created with Cambalache 0.92.0 -->
<interface>
<!-- interface-name progress.ui -->
<requires lib="gtk" version="4.6"/>
<object class="GtkDialog" id="window_progress">
<child>
<object class="GtkBox">
<property name="margin-bottom">10</property>
<property name="margin-end">10</property>
<property name="margin-start">10</property>
<property name="margin-top">10</property>
<property name="orientation">vertical</property>
<property name="spacing">10</property>
<child>
<object class="GtkGrid" id="grid_progress">
<property name="margin-end">2</property>
<property name="margin-start">2</property>
<property name="margin-top">2</property>
<property name="valign">center</property>
<property name="vexpand">1</property>
<child>
<object class="GtkLabel" id="label_progress_all_stages">
<property name="label" translatable="yes">All stages: </property>
<property name="name">label_progress_all_stages</property>
<layout>
<property name="column">0</property>
<property name="row">1</property>
</layout>
</object>
</child>
<child>
<object class="GtkProgressBar" id="progress_bar_all_stages">
<property name="hexpand">1</property>
<property name="pulse-step">0.099999999776482579</property>
<property name="show-text">1</property>
<layout>
<property name="column">1</property>
<property name="row">1</property>
</layout>
</object>
</child>
<child>
<object class="GtkLabel" id="label_progress_current_stage">
<property name="label" translatable="yes">Current stage: </property>
<property name="name">label_progress_current_stage</property>
<layout>
<property name="column">0</property>
<property name="row">0</property>
</layout>
</object>
</child>
<child>
<object class="GtkProgressBar" id="progress_bar_current_stage">
<property name="show-text">1</property>
<layout>
<property name="column">1</property>
<property name="row">0</property>
</layout>
</object>
</child>
</object>
</child>
<child>
<object class="GtkLabel" id="label_stage">
<property name="label" translatable="yes">Stage 1/2</property>
</object>
</child>
<child>
<object class="GtkButton" id="button_stop_in_dialog">
<property name="focusable">1</property>
<property name="halign">end</property>
<property name="margin-end">2</property>
<property name="receives-default">1</property>
<property name="valign">center</property>
<child>
<object class="GtkBox">
<child>
<object class="GtkImage">
<property name="icon-name">dialog-cancel</property>
</object>
</child>
<child>
<object class="GtkLabel">
<property name="hexpand">1</property>
<property name="label" translatable="yes">Stop</property>
</object>
</child>
</object>
</child>
</object>
</child>
</object>
</child>
</object>
</interface>
|