File: ui.xml

package info (click to toggle)
hbro 1.1.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 188 kB
  • sloc: haskell: 1,407; xml: 62; makefile: 8
file content (80 lines) | stat: -rw-r--r-- 2,904 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
<interface>
    <object class="GtkWindow" id="mainWindow">
        <child><object class="GtkVBox" id="windowBox">
            <property name="homogeneous">False</property>
            <property name="spacing">0</property>

            <!-- Scrolled window, will contain the webview -->
            <child>
                <object class="GtkScrolledWindow" id="webViewParent"></object>
            </child>


            <!-- Prompt bar -->
            <child>
                <object class="GtkHBox" id="promptBox">
                    <property name="homogeneous">False</property>
                    <property name="spacing">10</property>

                    <child>
                        <object class="GtkLabel" id="promptDescription"></object>
                        <packing>
                            <property name="fill">False</property>
                            <property name="expand">False</property>
                        </packing>
                    </child>

                    <child><object class="GtkEntry" id="promptEntry"></object></child>
                </object>

                <packing>
                    <property name="fill">False</property>
                    <property name="expand">False</property>
                </packing>
            </child>


            <!-- Status bar -->
            <child>
                <object class="GtkHBox" id="statusBox">
                    <property name="homogeneous">False</property>
                    <property name="spacing">5</property>

                    <child>
                        <object class="GtkLabel" id="void"></object>
                        <packing>
                            <property name="fill">False</property>
                            <property name="expand">False</property>
                        </packing>
                    </child>
                </object>

                <packing>
                    <property name="fill">False</property>
                    <property name="expand">False</property>
                </packing>
            </child>


            <!-- Notify bar -->
            <child>
                <object class="GtkHBox" id="notificationBox">
                    <property name="homogeneous">False</property>
                    <property name="spacing">5</property>

                    <child>
                        <object class="GtkLabel" id="notificationLabel">
                            <property name="single-line-mode">True</property>
                            <property name="xalign">0</property>
                        </object>
                    </child>
                </object>

                <packing>
                    <property name="fill">False</property>
                    <property name="expand">False</property>
                </packing>
            </child>
        </object></child>
    </object>
</interface>