File: empty-boxes.ui

package info (click to toggle)
gnome-boxes 3.14.2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 16,640 kB
  • ctags: 18,130
  • sloc: ansic: 166,927; sh: 11,537; makefile: 622; xml: 96
file content (116 lines) | stat: -rw-r--r-- 4,525 bytes parent folder | download
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?xml version="1.0" encoding="UTF-8"?>
<interface>
  <!-- interface-requires gtk+ 3.9 -->
  <template class="BoxesEmptyBoxes" parent="GtkStack">
    <property name="visible">True</property>
    <property name="hexpand">True</property>
    <property name="vexpand">True</property>
    <property name="halign">fill</property>
    <property name="valign">fill</property>
    <property name="transition-type">crossfade</property>
    <property name="transition-duration">400</property>
    <style>
      <class name="dim-label"/>
    </style>

    <child>
      <object class="GtkBox" id="spinner-box">
        <property name="visible">True</property>
        <property name="hexpand">True</property>
        <property name="vexpand">True</property>
        <property name="halign">fill</property>
        <property name="valign">fill</property>
        <style>
          <class name="content-bg"/>
        </style>

        <child>
          <object class="GtkSpinner" id="spinner">
            <property name="visible">True</property>
            <property name="active">True</property>
            <property name="width-request">32</property>
            <property name="height-request">32</property>
          </object>
          <packing>
            <property name="expand">True</property>
            <property name="fill">True</property>
          </packing>
        </child>
      </object>
    </child>

    <child>
      <object class="GtkBox" id="grid_box">
        <property name="visible">True</property>
        <property name="hexpand">True</property>
        <property name="vexpand">True</property>
        <property name="halign">fill</property>
        <property name="valign">fill</property>
        <style>
          <class name="content-bg"/>
        </style>

        <child>
          <object class="GtkGrid" id="grid">
            <property name="visible">True</property>
            <property name="orientation">horizontal</property>
            <property name="column-spacing">12</property>
            <property name="halign">center</property>
            <property name="valign">center</property>
            <property name="row-homogeneous">True</property>
            <style>
              <class name="dim-label"/>
            </style>

            <child>
              <object class="GtkImage" id="image">
                <property name="visible">True</property>
                <property name="icon-name">application-x-appliance-symbolic</property>
                <property name="icon-size">6</property>
                <property name="pixel-size">96</property>
                <style>
                  <class name="boxes-empty-image"/>
                </style>
              </object>
            </child>

            <child>
              <object class="GtkGrid" id="labels_grid">
                <property name="visible">True</property>
                <property name="orientation">vertical</property>

                <child>
                  <object class="GtkLabel" id="no_boxes_found_label">
                    <property name="visible">True</property>
                    <property name="use-markup">True</property>
                    <property name="halign">start</property>
                    <property name="vexpand">True</property>
                    <property name="label" translatable="yes">&lt;b&gt;&lt;span size=&quot;large&quot;&gt;No boxes found&lt;/span&gt;&lt;/b&gt;</property>
                  </object>
                </child>

                <child>
                  <object class="GtkLabel" id="instructions_label">
                    <property name="visible">True</property>
                    <property name="use-markup">True</property>
                    <property name="xalign">0</property>
                    <property name="halign">start</property>
                    <property name="vexpand">True</property>
                    <property name="halign">start</property>
                    <property name="max-width-chars">24</property>
                    <property name="wrap">True</property>
                    <property name="label" translatable="yes">Create one using the button on the top left.</property>
                  </object>
                </child>
              </object>
            </child>
          </object>
          <packing>
            <property name="expand">True</property>
            <property name="fill">True</property>
          </packing>
        </child>
      </object>
    </child>
  </template>
</interface>