summaryrefslogtreecommitdiffstats
path: root/kommander/examples/tutorial/progressbar.kmdr
blob: e5ffe4d65fb8934f38553ef67f8bfb45bc97a961 (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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE UI><UI version="3.0" stdsetdef="1">
<class>Form1</class>
<widget class="Dialog">
    <property name="name">
        <cstring>Form1</cstring>
    </property>
    <property name="geometry">
        <rect>
            <x>0</x>
            <y>0</y>
            <width>565</width>
            <height>390</height>
        </rect>
    </property>
    <property name="caption">
        <string>ProgressBar Demo</string>
    </property>
    <property name="associations" stdset="0">
        <stringlist>
            <string></string>
            <string>@ProgressBar1.setVisible(false)</string>
            <string></string>
        </stringlist>
    </property>
    <grid>
        <property name="name">
            <cstring>unnamed</cstring>
        </property>
        <property name="margin">
            <number>11</number>
        </property>
        <property name="spacing">
            <number>6</number>
        </property>
        <widget class="ProgressBar" row="3" column="0" rowspan="1" colspan="5">
            <property name="name">
                <cstring>ProgressBar1</cstring>
            </property>
            <property name="associations" stdset="0">
                <stringlist>
                    <string></string>
                </stringlist>
            </property>
        </widget>
        <widget class="TreeWidget" row="2" column="0" rowspan="1" colspan="5">
            <column>
                <property name="text">
                    <string>Source Tree</string>
                </property>
                <property name="clickable">
                    <bool>true</bool>
                </property>
                <property name="resizeable">
                    <bool>true</bool>
                </property>
            </column>
        <item>
            <property name="text">
                <string></string>
            </property>
            <property name="pixmap">
                <pixmap></pixmap>
            </property>
        </item>
            <property name="name">
                <cstring>TreeWidget1</cstring>
            </property>
            <property name="allColumnsShowFocus">
                <bool>false</bool>
            </property>
            <property name="showSortIndicator">
                <bool>true</bool>
            </property>
            <property name="rootIsDecorated">
                <bool>true</bool>
            </property>
            <property name="populationText">
                <string></string>
            </property>
            <property name="associations" stdset="0">
                <stringlist>
                    <string></string>
                </stringlist>
            </property>
        </widget>
        <widget class="FileSelector" row="1" column="0" rowspan="1" colspan="5">
            <property name="name">
                <cstring>FileSelector1</cstring>
            </property>
            <property name="selectionType">
                <enum>Directory</enum>
            </property>
        </widget>
        <widget class="StatusBar" row="5" column="0" rowspan="1" colspan="5">
            <property name="name">
                <cstring>StatusBar1</cstring>
            </property>
        </widget>
        <spacer row="4" column="0">
            <property name="name">
                <cstring>Spacer10</cstring>
            </property>
            <property name="orientation">
                <enum>Horizontal</enum>
            </property>
            <property name="sizeType">
                <enum>Expanding</enum>
            </property>
            <property name="tqsizeHint">
                <size>
                    <width>191</width>
                    <height>0</height>
                </size>
            </property>
        </spacer>
        <spacer row="4" column="2">
            <property name="name">
                <cstring>Spacer11</cstring>
            </property>
            <property name="orientation">
                <enum>Horizontal</enum>
            </property>
            <property name="sizeType">
                <enum>Expanding</enum>
            </property>
            <property name="tqsizeHint">
                <size>
                    <width>191</width>
                    <height>0</height>
                </size>
            </property>
        </spacer>
        <widget class="ScriptObject" row="4" column="3">
            <property name="name">
                <cstring>progressLoop</cstring>
            </property>
            <property name="associations" stdset="0">
                <stringlist>
                    <string>@# set up a loop using loop variable named "file"
@forEach(file, @exec(cd @FileSelector1.text &amp;&amp; find * -maxdepth 0))
  @# set the scale using the generated @[loopvar]_count
  @ProgressBar1.setMaximum(@file_count)
  @# show file name in statusbar
  @StatusBar1.setText(@file)
  @TreeWidget1.insertItems(@exec(cd @FileSelector1.text &amp;&amp; find @file -name "*"), -1)
  @# use the generated @[loopvar]_index to update progressbar
  @ProgressBar1.setText(@file_index)
@end
</string>
                </stringlist>
            </property>
        </widget>
        <widget class="ExecButton" row="4" column="1">
            <property name="name">
                <cstring>ExecButton25</cstring>
            </property>
            <property name="text">
                <string>Get Source Tree</string>
            </property>
            <property name="associations" stdset="0">
                <stringlist>
                    <string>@TreeWidget1.clear

@if(@String.isEmpty(@FileSelector1.text))
  @exec(kdialog --error "please select a directory, preferably not home as it will take time")
@endif

@if(!@String.isEmpty(@FileSelector1.text))
  @ProgressBar1.setVisible(true)
  @progressLoop.execute
  @# this fails on tdewebdev 3.3.0 so leave off ".execute"
  @ProgressBar1.setVisible(false)
  @StatusBar1.setText("Source Tree Listed")
@endif</string>
                </stringlist>
            </property>
            <property name="blockGUI">
                <enum>Button</enum>
            </property>
        </widget>
        <widget class="Label" row="0" column="0" rowspan="1" colspan="5">
            <property name="name">
                <cstring>Label1</cstring>
            </property>
            <property name="text">
                <string>Select a directory to list it's tree ($HOME NOT recommended for time reasons)</string>
            </property>
        </widget>
    </grid>
</widget>
<layoutdefaults spacing="6" margin="11"/>
</UI>