Subversion Repositories public

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
95 andreas 1
<!DOCTYPE UI><UI version="3.3" stdsetdef="1">
2
<class>progressWidgetBase</class>
3
<comment>Shows a progress bar and information about what is going on</comment>
4
<author>Andreas Theofilu &lt;andreas@theosys.at&gt;</author>
5
<widget class="QDialog">
6
    <property name="name">
7
        <cstring>Progress</cstring>
8
    </property>
9
    <property name="geometry">
10
        <rect>
11
            <x>0</x>
12
            <y>0</y>
13
            <width>524</width>
14
            <height>145</height>
15
        </rect>
16
    </property>
17
    <property name="caption">
18
        <string>SportWatcher progress</string>
19
    </property>
20
    <grid>
21
        <property name="name">
22
            <cstring>unnamed</cstring>
23
        </property>
24
        <spacer row="1" column="0">
25
            <property name="name">
26
                <cstring>spacer1</cstring>
27
            </property>
28
            <property name="orientation">
29
                <enum>Horizontal</enum>
30
            </property>
31
            <property name="sizeType">
32
                <enum>Expanding</enum>
33
            </property>
34
            <property name="sizeHint">
35
                <size>
36
                    <width>80</width>
37
                    <height>20</height>
38
                </size>
39
            </property>
40
        </spacer>
41
        <spacer row="1" column="2">
42
            <property name="name">
43
                <cstring>spacer2</cstring>
44
            </property>
45
            <property name="orientation">
46
                <enum>Horizontal</enum>
47
            </property>
48
            <property name="sizeType">
49
                <enum>Expanding</enum>
50
            </property>
51
            <property name="sizeHint">
52
                <size>
53
                    <width>60</width>
54
                    <height>20</height>
55
                </size>
56
            </property>
57
        </spacer>
58
        <spacer row="1" column="4">
59
            <property name="name">
60
                <cstring>spacer3</cstring>
61
            </property>
62
            <property name="orientation">
63
                <enum>Horizontal</enum>
64
            </property>
65
            <property name="sizeType">
66
                <enum>Expanding</enum>
67
            </property>
68
            <property name="sizeHint">
69
                <size>
70
                    <width>120</width>
71
                    <height>20</height>
72
                </size>
73
            </property>
74
        </spacer>
75
        <widget class="KPushButton" row="1" column="1">
76
            <property name="name">
77
                <cstring>pbDownload</cstring>
78
            </property>
79
            <property name="text">
80
                <string>Start download</string>
81
            </property>
82
        </widget>
83
        <widget class="KPushButton" row="1" column="3">
84
            <property name="name">
85
                <cstring>pbCancel</cstring>
86
            </property>
87
            <property name="text">
88
                <string>Cancel</string>
89
            </property>
90
        </widget>
91
        <widget class="QFrame" row="0" column="0" rowspan="1" colspan="5">
92
            <property name="name">
93
                <cstring>frame3</cstring>
94
            </property>
95
            <property name="frameShape">
96
                <enum>StyledPanel</enum>
97
            </property>
98
            <property name="frameShadow">
99
                <enum>Raised</enum>
100
            </property>
101
            <grid>
102
                <property name="name">
103
                    <cstring>unnamed</cstring>
104
                </property>
105
                <widget class="KProgress" row="1" column="0">
106
                    <property name="name">
107
                        <cstring>barProgress</cstring>
108
                    </property>
109
                </widget>
110
                <widget class="QLabel" row="0" column="0">
111
                    <property name="name">
112
                        <cstring>lblInfo</cstring>
113
                    </property>
114
                    <property name="text">
115
                        <string>Reading ...</string>
116
                    </property>
117
                </widget>
118
                <widget class="QLabel" row="2" column="0">
119
                    <property name="name">
120
                        <cstring>lblReading</cstring>
121
                    </property>
122
                    <property name="text">
123
                        <string>Reading...</string>
124
                    </property>
125
                </widget>
126
            </grid>
127
        </widget>
128
    </grid>
129
</widget>
130
<connections>
131
    <connection>
132
        <sender>pbDownload</sender>
133
        <signal>clicked()</signal>
134
        <receiver>Progress</receiver>
135
        <slot>pbDownloadSlot()</slot>
136
    </connection>
137
    <connection>
138
        <sender>pbCancel</sender>
139
        <signal>clicked()</signal>
140
        <receiver>Progress</receiver>
141
        <slot>pbCancelSlot()</slot>
142
    </connection>
143
</connections>
144
<slots>
145
    <slot>pbDownloadSlot()</slot>
146
    <slot>pbCancelSlot()</slot>
147
</slots>
148
<layoutdefaults spacing="6" margin="11"/>
149
<includehints>
150
    <includehint>kpushbutton.h</includehint>
151
    <includehint>kpushbutton.h</includehint>
152
    <includehint>kprogress.h</includehint>
153
</includehints>
154
</UI>