-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrectprops.dfm
149 lines (149 loc) · 2.8 KB
/
rectprops.dfm
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
145
146
147
148
149
object frmRectProps: TfrmRectProps
Left = 211
Top = 224
BorderStyle = bsNone
Caption = 'Rect,um, properties'
ClientHeight = 240
ClientWidth = 272
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
OnPaint = FormPaint
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object lblTitle: TLabel
Left = 2
Top = 2
Width = 241
Height = 17
Cursor = crSizeAll
AutoSize = False
Caption = 'Rectangle Rectifier'
Color = clBlue
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
OnMouseDown = lblTitleMouseDown
OnMouseMove = lblTitleMouseMove
OnMouseUp = lblTitleMouseUp
end
object Label1: TLabel
Left = 8
Top = 99
Width = 54
Height = 13
Caption = 'Line Width:'
end
object Label2: TLabel
Left = 8
Top = 118
Width = 30
Height = 13
Caption = 'Alpha:'
end
object cmdOK: TButton
Left = 8
Top = 160
Width = 105
Height = 25
Caption = 'Apply To &KeyFrame'
Default = True
TabOrder = 5
OnClick = cmdOKClick
end
object cmdOutercolour: TButton
Left = 8
Top = 40
Width = 65
Height = 25
Caption = '&Outer Colour'
TabOrder = 0
OnClick = cmdOutercolourClick
end
object cmdInnerColour: TButton
Left = 8
Top = 64
Width = 65
Height = 25
Caption = '&Inner Colour'
TabOrder = 2
OnClick = cmdInnerColourClick
end
object m_strLineWidth: TEdit
Left = 80
Top = 96
Width = 33
Height = 21
TabOrder = 4
OnChange = m_strLineWidthChange
end
object Button1: TButton
Left = 8
Top = 184
Width = 105
Height = 25
Caption = 'Apply to &Layer'
TabOrder = 6
OnClick = Button1Click
end
object cmdCancel: TButton
Left = 8
Top = 208
Width = 105
Height = 25
Cancel = True
Caption = 'Cancel'
TabOrder = 7
OnClick = cmdCancelClick
end
object Button2: TButton
Left = 72
Top = 40
Width = 41
Height = 25
Caption = '&Clear'
TabOrder = 1
OnClick = Button2Click
end
object Button3: TButton
Left = 72
Top = 64
Width = 41
Height = 25
Caption = 'Cl&ear'
TabOrder = 3
OnClick = Button3Click
end
object alphaBar: TTrackBar
Left = 8
Top = 136
Width = 105
Height = 18
Max = 255
Position = 255
TabOrder = 8
OnChange = alphaBarChange
end
object m_strAlpha: TEdit
Left = 80
Top = 115
Width = 33
Height = 21
TabOrder = 9
OnChange = m_strAlphaChange
end
object cd: TColorDialog
Left = 120
Top = 40
end
end