-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoneliner.dfm
129 lines (129 loc) · 2.4 KB
/
oneliner.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
object frmLiner: TfrmLiner
Left = 358
Top = 309
BorderStyle = bsNone
Caption = 'One Liner'
ClientHeight = 169
ClientWidth = 320
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
OnPaint = FormPaint
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 8
Top = 68
Width = 54
Height = 13
Caption = 'Line Width:'
Transparent = True
end
object lblHeading: TLabel
Left = 0
Top = 0
Width = 32
Height = 25
Cursor = crSizeAll
AutoSize = False
Caption = 'One Liner'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
OnMouseDown = lblHeadingMouseDown
OnMouseMove = lblHeadingMouseMove
OnMouseUp = lblHeadingMouseUp
end
object Label3: TLabel
Left = 8
Top = 36
Width = 56
Height = 13
Caption = 'Line Colour:'
Transparent = True
end
object Label2: TLabel
Left = 8
Top = 94
Width = 30
Height = 13
Caption = 'Alpha:'
end
object cmdOK: TButton
Left = 5
Top = 136
Width = 99
Height = 25
Caption = 'Apply to &KeyFrame'
Default = True
TabOrder = 2
OnClick = cmdOKClick
end
object cmdCancel: TButton
Left = 213
Top = 136
Width = 99
Height = 25
Cancel = True
Caption = '&Cancel'
TabOrder = 4
OnClick = cmdCancelClick
end
object m_strLineWidth: TEdit
Left = 80
Top = 64
Width = 25
Height = 21
TabOrder = 1
Text = '2'
OnChange = m_strLineWidthChange
end
object cmdColour: TButton
Left = 104
Top = 32
Width = 25
Height = 25
Caption = '...'
TabOrder = 0
OnClick = cmdColourClick
end
object cmdApplyAll: TButton
Left = 109
Top = 136
Width = 99
Height = 25
Caption = 'Apply to &Layer'
TabOrder = 3
OnClick = cmdApplyAllClick
end
object m_strAlpha: TEdit
Left = 80
Top = 91
Width = 25
Height = 21
TabOrder = 5
OnChange = m_strAlphaChange
end
object alphaBar: TTrackBar
Left = 8
Top = 112
Width = 105
Height = 18
Max = 255
Position = 255
TabOrder = 6
OnChange = alphaBarChange
end
object cd: TColorDialog
Left = 160
Top = 48
end
end