blob: 15027f1647794c77f1621c6a09e0a586781bea1b (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
can_minimize="false"
can_resize="true"
can_close="true"
bevel_style="in"
height="220"
layout="topleft"
name="LUA debug"
save_rect="true"
title="LUA DEBUG"
single_instance="true"
width="535">
<text
type="string"
length="1"
follows="left|top"
font="SansSerif"
height="30"
layout="topleft"
left="10"
left_delta="10"
name="editor_path_label"
top="10"
width="100">
LUA string:
</text>
<line_editor
border_style="line"
border_thickness="1"
follows="left|top|right"
font="SansSerif"
height="20"
layout="topleft"
left="10"
max_length_bytes="300"
name="lua_cmd"
select_on_focus="true"
top_delta="30"
width="435" />
<button
follows="right|top"
height="25"
label="Execute"
layout="topleft"
left_pad="5"
name="execute_btn"
top_delta="-2"
width="75" />
<text_editor
enabled="false"
left="10"
height="95"
layout="topleft"
name="result_text"
follows="all"
max_length="65536"
width="515"
top_delta="40"
word_wrap="true" />
<text
type="string"
length="1"
follows="left|bottom"
font="SansSerif"
height="30"
layout="topleft"
left="10"
name="path_label"
top_pad="15"
width="100">
File Path:
</text>
<line_editor
border_style="line"
enabled="false"
border_thickness="1"
follows="left|bottom|right"
font="SansSerif"
height="20"
layout="topleft"
left_delta="65"
max_length_bytes="300"
name="script_path"
select_on_focus="true"
top_delta="-2"
width="320" />
<button
follows="right|bottom"
height="25"
label="Browse..."
label_selected="Browse..."
layout="topleft"
left_pad="5"
name="browse_btn"
top_delta="-2"
width="70" />
<button
follows="right|bottom"
height="25"
label="Run"
label_selected="Run"
layout="topleft"
left_pad="5"
name="run_btn"
width="50" />
</floater>
|