forked from alphaonex86/Supercopier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SCCollisionRenameForm.lfm
101 lines (101 loc) · 2.06 KB
/
SCCollisionRenameForm.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
object CollisionRenameForm: TCollisionRenameForm
Left = 385
Top = 102
BorderStyle = bsToolWindow
Caption = 'Custom rename'
ClientHeight = 147
ClientWidth = 400
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
FormStyle = fsStayOnTop
OldCreateOrder = False
Position = poOwnerFormCenter
OnCreate = FormCreate
DesignSize = (
400
147)
PixelsPerInch = 96
TextHeight = 13
object llOriginalNameTitle: TLabel
Left = 8
Top = 48
Width = 66
Height = 13
Caption = 'Rename from:'
end
object llOriginalName: TLabel
Left = 80
Top = 48
Width = 313
Height = 13
AutoSize = False
Caption = 'llOriginalName'
end
object llNewNameTitle: TLabel
Left = 8
Top = 80
Width = 16
Height = 13
Caption = 'To:'
end
object rbRenameNew: TRadioButton
Left = 8
Top = 8
Width = 201
Height = 17
Caption = 'Rename new file'
Checked = True
TabOrder = 0
TabStop = True
end
object rbRenameOld: TRadioButton
Left = 208
Top = 8
Width = 193
Height = 17
Caption = 'Rename old file'
TabOrder = 1
end
object edNewName: TEdit
Left = 80
Top = 76
Width = 313
Height = 21
TabOrder = 2
Text = 'edNewName'
OnChange = edNewNameChange
OnKeyPress = edNewNameKeyPress
end
object btCancel: TScPopupButton
Left = 320
Top = 120
Width = 75
Height = 25
TabOrder = 4
TabStop = True
Anchors = [akRight, akBottom]
ItemIndex = 0
Caption = 'Cancel'
ImageIndex = 6
ImageList = MainForm.ilGlobal
OnClick = btCancelClick
end
object btRename: TScPopupButton
Left = 240
Top = 120
Width = 75
Height = 25
TabOrder = 3
TabStop = True
Anchors = [akRight, akBottom]
ItemIndex = 0
Caption = 'Rename'
ImageIndex = 20
ImageList = MainForm.ilGlobal
OnClick = btRenameClick
end
end