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
|
FORM
// +--------------------------------------------------------------------+
// Project: STARS
// File: MessageDlg.frm
//
// John DiCamillo Software Consulting
// Copyright © 1997-2003. All Rights Reserved.
// +--------------------------------------------------------------------+
form: {
rect: (145, 115, 350, 250),
screen_width: 640,
screen_height: 480,
base_color: ( 92, 92, 92),
back_color: ( 92, 92, 92),
fore_color: (255, 255, 255),
font: "GUI",
texture: "message.pcx",
defctrl: {
base_color: ( 92, 92, 92),
back_color: ( 92, 92, 92),
fore_color: (255, 255, 255),
font: GUI,
bevel_width: 4,
bevel_depth: 128,
border: true,
border_color: (0,0,0)
},
ctrl: {
id: 100,
type: label,
rect: (160, 140, 320, 20),
text: "Message Title",
transparent: true,
align: center
},
ctrl: {
id: 101,
type: label,
rect: (180, 170, 280, 120),
text: "Message Text",
font: Verdana,
transparent: true
},
ctrl: {
id: 1,
type: button,
rect: (325, 310, 100, 25),
back_color: ( 62, 106, 151),
text: "Close"
}
}
// +--------------------------------------------------------------------+
// +--------------------------------------------------------------------+
// +--------------------------------------------------------------------+
form: {
rect: (225, 175, 350, 250),
screen_width: 800,
screen_height: 600,
base_color: ( 92, 92, 92),
back_color: ( 92, 92, 92),
fore_color: (255, 255, 255),
font: "GUI",
texture: "message.pcx",
defctrl: {
base_color: ( 92, 92, 92),
back_color: ( 92, 92, 92),
fore_color: (255, 255, 255),
font: GUI,
bevel_width: 0,
transparent: true,
align: center
},
ctrl: {
id: 100,
type: label,
rect: (240, 230, 320, 20),
text: "Message Title",
},
ctrl: {
id: 101,
type: label,
rect: (260, 280, 280, 120),
text: "Message Text",
font: Verdana,
},
defctrl: {
transparent: false,
font: Terminal,
fore_color: (5,5,5),
align: left,
},
ctrl: {
id: 1,
type: button,
rect: (405, 380, 130, 17),
text: Close,
standard_image: grn_130x17_0,
activated_image: grn_130x17_1,
transition_image: grn_130x17_2,
},
}
|