blob: 6c79d8345987e563467001433ff5332350c2a674 (
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
|
<?xml version='1.0' encoding='UTF-8'?>
<macro name="test_lineedit" version="1.0">
<resume></resume>
<queries>
</queries>
<maps>
</maps>
<scripts>
<script name="A" language="lua">
if ( value == '4' )
then
return true
end
return false
</script>
</scripts>
<window caption="Test LineEdit"
layout="vbox">
<lineedit name="dims" value="tester" script="A" regexp="[0-9]"/>
<frame layout="hbox">
<spacer />
<button caption="Reset" action="reset"/>
<button caption="Gem" action="commit"/>
</frame>
</window>
</macro>
|