-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathunit5.lfm
More file actions
162 lines (162 loc) · 3.58 KB
/
unit5.lfm
File metadata and controls
162 lines (162 loc) · 3.58 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
object fmWords: TfmWords
Left = 326
Height = 591
Top = 175
Width = 641
BorderIcons = []
BorderStyle = bsDialog
Caption = 'Words recurrence'
ClientHeight = 591
ClientWidth = 641
KeyPreview = True
OnActivate = FormActivate
OnClose = FormClose
OnCreate = FormCreate
OnKeyDown = FormKeyDown
Position = poDesktopCenter
ShowInTaskBar = stNever
LCLVersion = '3.7.0.0'
object sgWords: TStringGrid
Left = 15
Height = 408
Top = 10
Width = 611
Align = alClient
AutoEdit = False
BorderSpacing.Left = 5
BorderSpacing.Right = 5
BorderSpacing.Around = 10
Color = clForm
ColCount = 2
Columns = <
item
Title.Caption = 'Words'
Width = 400
end
item
Title.Caption = 'Recurrences'
Width = 200
end>
ExtendedSelect = False
FixedColor = clForm
FixedCols = 0
Flat = True
GridLineColor = clBackground
HeaderHotZones = []
HeaderPushZones = []
MouseWheelOption = mwGrid
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goColSizing, goRowSelect, goSmoothScroll]
RowCount = 2
TabOrder = 1
ColWidths = (
400
200
)
end
object pnWords: TPanel
Left = 0
Height = 163
Top = 428
Width = 641
Align = alBottom
BevelOuter = bvNone
ClientHeight = 163
ClientWidth = 641
ParentBackground = False
ParentColor = False
TabOrder = 0
object bnOK: TButton
Left = 549
Height = 32
Top = 123
Width = 75
Anchors = [akRight, akBottom]
Caption = 'Close'
TabOrder = 3
TabStop = False
OnClick = bnOKClick
end
object bnCopy: TButton
Left = 437
Height = 32
Top = 123
Width = 75
Anchors = [akRight, akBottom]
Caption = 'Copy'
TabOrder = 4
TabStop = False
OnClick = bnCopyClick
end
object lbSkip: TLabel
Left = 16
Height = 16
Top = 12
Width = 223
Caption = 'Words to skip (separated by comma)'
end
object lbResults: TLabel
Left = 16
Height = 16
Top = 132
Width = 87
Anchors = [akLeft, akBottom]
Caption = 'Words used: 0'
end
object meSkip: TMemo
Left = 16
Height = 83
Top = 36
Width = 402
Anchors = [akTop, akLeft, akRight]
ScrollBars = ssAutoVertical
TabOrder = 0
WantReturns = False
OnExit = meSkipExit
end
object bnRefresh: TButton
Left = 343
Height = 32
Top = 123
Width = 75
Anchors = [akRight, akBottom]
Caption = 'Refresh'
TabOrder = 2
TabStop = False
OnClick = bnRefreshClick
end
object bnRemove: TButton
Left = 197
Height = 32
Top = 123
Width = 127
Anchors = [akRight, akBottom]
Caption = 'Skip'
TabOrder = 1
TabStop = False
OnClick = bnRemoveClick
end
object rgSkip: TRadioGroup
Left = 437
Height = 100
Top = 19
Width = 187
AutoFill = True
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 73
ClientWidth = 177
ItemIndex = 1
Items.Strings = (
'Sort by words'
'Sort by recurrences'
)
OnClick = rgSkipClick
TabOrder = 5
end
end
end