-
Notifications
You must be signed in to change notification settings - Fork 1
/
demo.dcl
92 lines (88 loc) · 1.61 KB
/
demo.dcl
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
// SPDX-License-Identifier: 0BSD
demo_dlg : dialog {
label = "DCL Demo";
: row {
: column {
: text {
alignment = centered;
label = "Names";
is_bold = true;
}
: list_box {
key = "listbox_names";
width = 30;
height = 43;
}
}
: column {
: row {
: text {
label = "DCL File";
is_bold = true;
}
: text {
key = "text_dcl";
label = "";
width = 50;
}
: button {
key = "button_dcl";
label = "&Open";
width = 10;
fixed_width = true;
}
}
: row {
: list_box {
key = "listbox_dcl";
width = 100;
height = 18;
}
}
: row {
: text {
label = "LSP File";
is_bold = true;
}
: text {
key = "text_lsp";
label = "";
width = 50;
}
: button {
key = "button_lsp";
label = "O&pen";
width = 10;
fixed_width = true;
}
}
: row {
: list_box {
key = "listbox_lsp";
width = 100;
height = 18;
}
}
}
}
: row {
: column {
: button {
alignment = left;
key = "button_run";
label = "&Run";
width = 10;
fixed_width = true;
}
}
: column {
: cancel_button {
alignment = right;
key = "button_exit";
label = "E&xit";
width = 10;
fixed_width = true;
}
}
}
}