summaryrefslogtreecommitdiffstats
path: root/kommander/examples/tutorial/cmdline.kmdr
blob: 0db801d27a53d81b2c6a0d3ef2221a71da6ba82d (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
<!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>462</width>
            <height>340</height>
        </rect>
    </property>
    <property name="caption">
        <string>Form1</string>
    </property>
    <property name="associations" stdset="0">
        <stringlist>
            <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="ListBox" row="0" column="0" rowspan="1" colspan="3">
            <item>
                <property name="text">
                    <string>Usage: kmdr-executor cmdline.kmdr [BUTTON='title'] arg1 ...</string>
                </property>
            </item>
            <property name="name">
                <cstring>ListBox1</cstring>
            </property>
        </widget>
        <spacer row="1" column="0">
            <property name="name">
                <cstring>Spacer1</cstring>
            </property>
            <property name="orientation">
                <enum>Horizontal</enum>
            </property>
            <property name="sizeType">
                <enum>Expanding</enum>
            </property>
            <property name="sizeHint">
                <size>
                    <width>149</width>
                    <height>0</height>
                </size>
            </property>
        </spacer>
        <widget class="ExecButton" row="1" column="1">
            <property name="name">
                <cstring>ExecButton1</cstring>
            </property>
            <property name="text">
                <string>Read command line</string>
            </property>
            <property name="associations" stdset="0">
                <stringlist>
                    <string># Put command-line arguments into list
dcop @dcopid KommanderIf clearList ListBox1
VALUE=`dcop @dcopid KommanderIf global ARGS`
for i in $VALUE; do
   dcop @dcopid KommanderIf addListItem ListBox1 "$i" 999
done

ARGS=`dcop @dcopid KommanderIf global ARGCOUNT`
dcop @dcopid KommanderIf addListItem ListBox1 "Arguments count: $ARGS" 999


# Read button text
BUTTONTEXT=`dcop @dcopid KommanderIf global BUTTON`
if [ "$BUTTONTEXT" ]; then
   dcop @dcopid KommanderIf changeWidgetText ExecButton1 "$BUTTONTEXT"
fi</string>
                </stringlist>
            </property>
        </widget>
        <spacer row="1" column="2">
            <property name="name">
                <cstring>Spacer3</cstring>
            </property>
            <property name="orientation">
                <enum>Horizontal</enum>
            </property>
            <property name="sizeType">
                <enum>Expanding</enum>
            </property>
            <property name="sizeHint">
                <size>
                    <width>148</width>
                    <height>0</height>
                </size>
            </property>
        </spacer>
    </grid>
</widget>
<layoutdefaults spacing="6" margin="11"/>
</UI>