-
Notifications
You must be signed in to change notification settings - Fork 0
/
fmmain.lfm
139 lines (139 loc) · 2.82 KB
/
fmmain.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
object Form1: TForm1
Left = 745
Height = 285
Top = 419
Width = 585
BorderStyle = bsDialog
Caption = 'HunksterGUI v1.0 By RetroNick'
ClientHeight = 285
ClientWidth = 585
OnCreate = FormCreate
LCLVersion = '2.0.10.0'
object InfoLabel: TLabel
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 0
Height = 28
Top = 0
Width = 585
Alignment = taCenter
Anchors = [akTop, akLeft, akRight]
AutoSize = False
Color = clAppWorkspace
Font.Color = clWhite
Font.Height = 29
ParentColor = False
ParentFont = False
Transparent = False
OptimalFill = True
end
object EditFileName: TEdit
Left = 96
Height = 23
Top = 64
Width = 272
Enabled = False
TabOrder = 1
end
object EditDataName: TEdit
Left = 96
Height = 23
Top = 112
Width = 160
MaxLength = 20
TabOrder = 2
end
object EditSizeName: TEdit
Left = 96
Height = 23
Top = 160
Width = 160
MaxLength = 20
TabOrder = 3
end
object MemoryGroup: TRadioGroup
Left = 400
Height = 130
Top = 62
Width = 168
AutoFill = True
Caption = 'Memory Type'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 110
ClientWidth = 164
ItemIndex = 0
Items.Strings = (
'Any'
'Chip'
'Fast'
)
OnClick = MemoryGroupClick
TabOrder = 5
end
object SaveAs: TButton
Left = 480
Height = 25
Top = 232
Width = 75
Caption = 'Save As'
OnClick = SaveAsClick
TabOrder = 6
end
object InFile: TButton
Left = 8
Height = 25
Top = 64
Width = 75
Caption = 'In File'
OnClick = InFileClick
TabOrder = 0
end
object Label2: TLabel
Left = 31
Height = 15
Top = 120
Width = 59
Caption = 'Data Name'
ParentColor = False
end
object Label3: TLabel
Left = 8
Height = 15
Top = 168
Width = 82
Caption = 'Data Size Name'
ParentColor = False
end
object EditHunkName: TEdit
Left = 96
Height = 23
Top = 203
Width = 160
MaxLength = 20
TabOrder = 4
end
object Label4: TLabel
Left = 26
Height = 15
Top = 208
Width = 64
Caption = 'Hunk Name'
ParentColor = False
end
object OpenDialog: TOpenDialog
Options = [ofFileMustExist, ofEnableSizing, ofViewDetail]
Left = 544
end
object SaveDialog: TSaveDialog
Options = [ofOverwritePrompt, ofEnableSizing, ofViewDetail]
Left = 472
end
end