-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuFrmBrushBuilder.dfm
More file actions
144 lines (144 loc) · 3.31 KB
/
uFrmBrushBuilder.dfm
File metadata and controls
144 lines (144 loc) · 3.31 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
object frmBrushBuilder: TfrmBrushBuilder
Left = 0
Top = 0
BorderIcons = [biSystemMenu]
Caption = 'Cube Builder'
ClientHeight = 237
ClientWidth = 346
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
Position = poScreenCenter
ShowHint = True
OnClose = FormClose
OnCreate = FormCreate
OnMouseWheel = FormMouseWheel
DesignSize = (
346
237)
TextHeight = 15
object gb1: TGroupBox
Left = 4
Top = 0
Width = 340
Height = 203
Anchors = [akLeft, akTop, akRight, akBottom]
Caption = 'Properties'
DefaultHeaderFont = False
HeaderFont.Charset = DEFAULT_CHARSET
HeaderFont.Color = clWindowText
HeaderFont.Height = -12
HeaderFont.Name = 'Segoe UI'
HeaderFont.Style = [fsBold]
TabOrder = 0
object EsPanel2: TEsPanel
AlignWithMargins = True
Left = 6
Top = 21
Width = 328
Height = 176
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Align = alClient
TabOrder = 0
FrameStyle = Lowered
object bbHeader: THeaderControl
Left = 2
Top = 2
Width = 324
Height = 18
Sections = <
item
AllowClick = False
ImageIndex = -1
Style = hsOwnerDraw
Text = 'Parameter'
Width = 140
end
item
AllowClick = False
ImageIndex = -1
Style = hsOwnerDraw
Text = 'Value'
Width = 140
end
item
ImageIndex = -1
Style = hsOwnerDraw
Width = 500
end>
OnDrawSection = bbHeaderDrawSection
OnSectionResize = bbHeaderSectionResize
StyleElements = []
end
object bbScrollBox: TScrollBox
AlignWithMargins = True
Left = 5
Top = 23
Width = 318
Height = 148
HorzScrollBar.Visible = False
Align = alClient
BorderStyle = bsNone
TabOrder = 0
OnEnter = EditFieldEnter
OnExit = EditFieldExit
end
end
end
object btnClose: TButton
Left = 107
Top = 209
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Cancel = True
Caption = 'Close'
TabOrder = 1
OnClick = btnCloseClick
end
object btnReset: TButton
Left = 188
Top = 209
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Cancel = True
Caption = 'Reset'
TabOrder = 2
OnClick = btnResetClick
end
object btnBuild: TButton
Left = 269
Top = 209
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Cancel = True
Caption = 'Build'
Default = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 3
OnClick = btnBuildClick
end
object chkCloseWhenBuilt: TCheckBox
Left = 21
Top = 209
Width = 73
Height = 25
Anchors = [akRight, akBottom]
Caption = 'Close after building?'
TabOrder = 4
WordWrap = True
end
end