-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFormCopyFrames.dfm
192 lines (192 loc) · 3.58 KB
/
FormCopyFrames.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
object FrmCopyFrames: TFrmCopyFrames
Left = 312
Top = 308
BorderIcons = []
BorderStyle = bsSingle
Caption = 'Copy Frames...'
ClientHeight = 361
ClientWidth = 203
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
OnKeyDown = FormKeyDown
OnShow = FormShow
DesignSize = (
203
361)
PixelsPerInch = 96
TextHeight = 13
object Bevel1: TBevel
Left = 5
Top = 307
Width = 196
Height = 14
Anchors = [akLeft, akBottom]
Shape = bsBottomLine
end
object Label1: TLabel
Left = 8
Top = 16
Width = 26
Height = 13
Caption = 'From:'
end
object Label2: TLabel
Left = 8
Top = 40
Width = 16
Height = 13
Caption = 'To:'
end
object Label3: TLabel
Left = 8
Top = 64
Width = 56
Height = 13
Caption = 'Destination:'
end
object Label4: TLabel
Left = 24
Top = 183
Width = 62
Height = 13
Anchors = [akLeft, akBottom]
Caption = 'Paste At File:'
end
object BtOK: TButton
Left = 144
Top = 328
Width = 57
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'OK'
TabOrder = 0
OnClick = BtOKClick
end
object BtCancel: TButton
Left = 78
Top = 328
Width = 57
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'Cancel'
TabOrder = 1
OnClick = BtCancelClick
end
object SpFrom: TSpinEdit
Left = 72
Top = 12
Width = 65
Height = 22
MaxValue = 1
MinValue = 1
TabOrder = 2
Value = 1
OnClick = SpFromClick
OnKeyDown = FormKeyDown
end
object SpTo: TSpinEdit
Left = 72
Top = 36
Width = 65
Height = 22
MaxValue = 0
MinValue = 0
TabOrder = 3
Value = 1
OnClick = SpToClick
OnKeyDown = FormKeyDown
end
object SpDestiny: TSpinEdit
Left = 72
Top = 60
Width = 65
Height = 22
MaxValue = 1
MinValue = 1
TabOrder = 4
Value = 1
OnClick = SpDestinyClick
OnKeyDown = FormKeyDown
end
object LbPasteAtFile: TListBox
Left = 8
Top = 207
Width = 185
Height = 97
Anchors = [akLeft, akBottom]
ItemHeight = 13
TabOrder = 5
OnClick = LbPasteAtFileClick
OnKeyDown = FormKeyDown
end
object BtGoToEnd: TButton
Left = 160
Top = 48
Width = 33
Height = 25
Hint = 'Go To Last Frame'
Caption = '>>'
TabOrder = 6
OnClick = BtGoToEndClick
end
object BtGoToOne: TButton
Left = 160
Top = 16
Width = 33
Height = 25
Hint = 'Go To First Frame'
Caption = '<<'
TabOrder = 7
OnClick = BtGoToOneClick
end
object CbCopyShadows: TCheckBox
Left = 32
Top = 88
Width = 153
Height = 17
Caption = 'Copy Shadow Frames'
TabOrder = 8
OnClick = CbCopyShadowsClick
OnKeyDown = FormKeyDown
end
object GbResize: TGroupBox
Left = 8
Top = 112
Width = 185
Height = 65
Caption = 'If Needed, Resize:'
TabOrder = 9
object RbPixels: TRadioButton
Left = 16
Top = 24
Width = 129
Height = 17
Caption = 'Pixels (automatically)'
Checked = True
TabOrder = 0
TabStop = True
OnClick = RbPixelsClick
OnKeyDown = FormKeyDown
end
object RbCanvas: TRadioButton
Left = 16
Top = 40
Width = 113
Height = 17
Caption = 'Canvas (manually)'
TabOrder = 1
OnClick = RbCanvasClick
OnKeyDown = FormKeyDown
end
end
object XPManifest: TXPManifest
Left = 144
Top = 176
end
end