summaryrefslogtreecommitdiff
path: root/src/nautilus-progress-info-widget.xml
blob: 3eace47df05dcb15e6d24f2ea9b1043db0e195b3 (plain)
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
<?xml version="1.0" encoding="UTF-8"?>
<interface>
  <template class="NautilusProgressInfoWidget" parent="GtkGrid">
    <property name="visible">True</property>
    <property name="margin-start">5</property>
    <property name="margin-end">5</property>
    <child>
      <object class="GtkLabel" id="status">
        <property name="label">status</property>
        <property name="visible">True</property>
        <property name="xalign">0</property>
        <property name="width-request">300</property>
        <property name="max-width-chars">30</property>
        <property name="ellipsize">middle</property>
        <property name="margin-bottom">6</property>
      </object>
      <packing>
        <property name="top-attach">0</property>
        <property name="left-attach">0</property>
      </packing>
    </child>
    <child>
      <object class="GtkProgressBar" id="progress_bar">
        <property name="visible">True</property>
        <property name="valign">center</property>
        <property name="pulse-step">0.05</property>
        <property name="margin_start">2</property>
        <property name="margin-bottom">4</property>
      </object>
      <packing>
        <property name="top-attach">1</property>
        <property name="left-attach">0</property>
      </packing>
    </child>
    <child>
      <object class="GtkButton" id="cancel">
        <property name="visible">True</property>
        <property name="receives_default">True</property>
        <property name="margin_start">20</property>
        <property name="valign">center</property>
        <style>
          <class name="image-button"/>
          <class name="nautilus-circular-button"/>
        </style>
        <child>
          <object class="GtkImage" id="cancel_icon">
            <property name="visible">True</property>
            <property name="icon-name">window-close-symbolic</property>
            <property name="icon-size">1</property>
          </object>
        </child>
      </object>
      <packing>
        <property name="height">3</property>
        <property name="top-attach">0</property>
        <property name="left-attach">1</property>
      </packing>
    </child>
    <child>
      <object class="GtkLabel" id="details">
        <property name="label">details</property>
        <property name="visible">True</property>
        <property name="label" translatable="no">label</property>
        <property name="ellipsize">end</property>
        <property name="xalign">0</property>
        <property name="wrap">True</property>
        <property name="wrap-mode">word-char</property>
        <style>
          <class name="dim-label"/>
        </style>
      </object>
      <packing>
        <property name="top-attach">2</property>
        <property name="left-attach">0</property>
      </packing>
    </child>
  </template>
</interface>