-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathunit2.lfm
142 lines (142 loc) · 2.95 KB
/
unit2.lfm
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
object Form2: TForm2
Left = 335
Height = 326
Top = 112
Width = 627
Caption = 'Form2'
ClientHeight = 326
ClientWidth = 627
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '2.3.0.0'
object Label1: TLabel
Left = 8
Height = 15
Top = 16
Width = 53
Caption = 'Search for'
ParentColor = False
end
object Edit1: TEdit
Left = 88
Height = 23
Top = 8
Width = 424
Anchors = [akTop, akLeft, akRight]
OnChange = Edit1Change
TabOrder = 0
Text = 'Edit1'
end
object Label2: TLabel
Left = 8
Height = 15
Top = 48
Width = 67
Caption = 'Replace with'
ParentColor = False
end
object Edit2: TEdit
Left = 88
Height = 23
Top = 40
Width = 528
Anchors = [akTop, akLeft, akRight]
OnChange = Edit1Change
TabOrder = 1
Text = 'Edit2'
end
object Button1: TButton
Left = 544
Height = 25
Top = 288
Width = 75
Anchors = [akRight, akBottom]
Caption = 'Apply'
OnClick = Button1Click
TabOrder = 2
end
object Button2: TButton
Left = 456
Height = 25
Top = 288
Width = 75
Anchors = [akRight, akBottom]
Caption = 'Cancel'
OnClick = Button2Click
TabOrder = 3
end
object CheckBox1: TCheckBox
Left = 525
Height = 19
Top = 12
Width = 91
Anchors = [akTop, akRight]
Caption = 'Case sensitive'
OnChange = Edit1Change
TabOrder = 4
end
object StringGrid1: TStringGrid
Left = 8
Height = 184
Top = 96
Width = 608
Anchors = [akTop, akLeft, akRight, akBottom]
Columns = <
item
ButtonStyle = cbsCheckboxColumn
Title.Caption = 'Use'
end
item
ReadOnly = True
Title.Caption = 'New'
end
item
ReadOnly = True
Title.Caption = 'Old'
end
item
Title.Caption = 'New_Full'
Visible = False
end
item
Title.Caption = 'Old_Full'
Visible = False
end>
FixedCols = 0
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goColSizing, goEditing, goRowSelect, goSmoothScroll]
TabOrder = 5
OnKeyPress = StringGrid1KeyPress
OnSelectCell = StringGrid1SelectCell
end
object Button3: TButton
Left = 8
Height = 25
Top = 288
Width = 75
Anchors = [akLeft, akBottom]
Caption = 'All'
OnClick = Button3Click
TabOrder = 6
end
object Button4: TButton
Left = 88
Height = 25
Top = 288
Width = 75
Anchors = [akLeft, akBottom]
Caption = 'None'
OnClick = Button4Click
TabOrder = 7
end
object CheckBox2: TCheckBox
Left = 88
Height = 19
Top = 72
Width = 136
Caption = 'Display only filenames'
Checked = True
OnChange = Edit1Change
State = cbChecked
TabOrder = 8
end
end