Skip to content

Commit 1969e1f

Browse files
committed
first release
1 parent 2bd6015 commit 1969e1f

File tree

5 files changed

+1081
-0
lines changed

5 files changed

+1081
-0
lines changed

rtbinsrcfm.lfm

Lines changed: 207 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,207 @@
1+
object Form1: TForm1
2+
Left = 479
3+
Height = 500
4+
Top = 401
5+
Width = 858
6+
BorderStyle = bsDialog
7+
Caption = 'Form1'
8+
ClientHeight = 500
9+
ClientWidth = 858
10+
OnCreate = FormCreate
11+
LCLVersion = '2.0.10.0'
12+
object InFile: TButton
13+
Left = 16
14+
Height = 25
15+
Top = 56
16+
Width = 75
17+
Caption = 'In File'
18+
OnClick = InFileClick
19+
TabOrder = 0
20+
end
21+
object EditFileName: TEdit
22+
Left = 104
23+
Height = 23
24+
Top = 56
25+
Width = 344
26+
Enabled = False
27+
TabOrder = 1
28+
end
29+
object LanRadioGroup: TRadioGroup
30+
Left = 576
31+
Height = 104
32+
Top = 58
33+
Width = 185
34+
AutoFill = True
35+
Caption = 'Language'
36+
ChildSizing.LeftRightSpacing = 6
37+
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
38+
ChildSizing.EnlargeVertical = crsHomogenousChildResize
39+
ChildSizing.ShrinkHorizontal = crsScaleChilds
40+
ChildSizing.ShrinkVertical = crsScaleChilds
41+
ChildSizing.Layout = cclLeftToRightThenTopToBottom
42+
ChildSizing.ControlsPerLine = 1
43+
ClientHeight = 84
44+
ClientWidth = 181
45+
ItemIndex = 0
46+
Items.Strings = (
47+
'Basic'
48+
'C'
49+
'Pascal'
50+
)
51+
OnClick = LanRadioGroupClick
52+
TabOrder = 7
53+
end
54+
object NumTypeRadioGroup: TRadioGroup
55+
Left = 576
56+
Height = 168
57+
Top = 256
58+
Width = 185
59+
AutoFill = True
60+
Caption = 'Type'
61+
ChildSizing.LeftRightSpacing = 6
62+
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
63+
ChildSizing.EnlargeVertical = crsHomogenousChildResize
64+
ChildSizing.ShrinkHorizontal = crsScaleChilds
65+
ChildSizing.ShrinkVertical = crsScaleChilds
66+
ChildSizing.Layout = cclLeftToRightThenTopToBottom
67+
ChildSizing.ControlsPerLine = 1
68+
ClientHeight = 148
69+
ClientWidth = 181
70+
OnClick = NumTypeRadioGroupClick
71+
TabOrder = 9
72+
end
73+
object FormatRadioGroup: TRadioGroup
74+
Left = 576
75+
Height = 72
76+
Top = 168
77+
Width = 185
78+
AutoFill = True
79+
Caption = 'Format'
80+
ChildSizing.LeftRightSpacing = 6
81+
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
82+
ChildSizing.EnlargeVertical = crsHomogenousChildResize
83+
ChildSizing.ShrinkHorizontal = crsScaleChilds
84+
ChildSizing.ShrinkVertical = crsScaleChilds
85+
ChildSizing.Layout = cclLeftToRightThenTopToBottom
86+
ChildSizing.ControlsPerLine = 1
87+
ClientHeight = 52
88+
ClientWidth = 181
89+
ItemIndex = 0
90+
Items.Strings = (
91+
'Decimal'
92+
'Hex'
93+
)
94+
OnClick = FormatRadioGroupClick
95+
TabOrder = 8
96+
end
97+
object MemoWithCode: TMemo
98+
Left = 16
99+
Height = 336
100+
Top = 136
101+
Width = 520
102+
ScrollBars = ssAutoBoth
103+
TabOrder = 6
104+
WordWrap = False
105+
end
106+
object InfoLabel: TLabel
107+
AnchorSideLeft.Control = Owner
108+
AnchorSideTop.Control = Owner
109+
AnchorSideRight.Control = Owner
110+
AnchorSideRight.Side = asrBottom
111+
Left = 0
112+
Height = 30
113+
Top = 0
114+
Width = 858
115+
Alignment = taCenter
116+
Anchors = [akTop, akLeft, akRight]
117+
AutoSize = False
118+
Color = clGray
119+
Font.Color = clWhite
120+
Font.Height = -21
121+
ParentColor = False
122+
ParentFont = False
123+
Transparent = False
124+
end
125+
object Import: TButton
126+
Left = 464
127+
Height = 25
128+
Top = 54
129+
Width = 75
130+
Caption = 'Import'
131+
Enabled = False
132+
OnClick = ImportClick
133+
TabOrder = 2
134+
end
135+
object CopyToClipboard: TButton
136+
Left = 592
137+
Height = 25
138+
Top = 462
139+
Width = 120
140+
Caption = 'Copy To Clipboard'
141+
OnClick = CopyToClipboardClick
142+
TabOrder = 10
143+
end
144+
object SaveAs: TButton
145+
Left = 736
146+
Height = 25
147+
Top = 462
148+
Width = 75
149+
Caption = 'Save As'
150+
OnClick = SaveAsClick
151+
TabOrder = 11
152+
end
153+
object ArrayLabel: TLabel
154+
Left = 32
155+
Height = 15
156+
Top = 104
157+
Width = 63
158+
Caption = 'Array Name'
159+
ParentColor = False
160+
end
161+
object EditArrayName: TEdit
162+
Left = 104
163+
Height = 23
164+
Top = 96
165+
Width = 168
166+
MaxLength = 20
167+
TabOrder = 3
168+
end
169+
object IndentSpinEdit: TSpinEditEx
170+
Left = 464
171+
Height = 23
172+
Top = 92
173+
Width = 75
174+
MaxLength = 0
175+
NumbersOnly = True
176+
TabOrder = 5
177+
Value = 2
178+
end
179+
object Label1: TLabel
180+
Left = 400
181+
Height = 15
182+
Top = 100
183+
Width = 57
184+
Alignment = taRightJustify
185+
Caption = 'Indent Size'
186+
ParentColor = False
187+
end
188+
object ClearOnImport: TCheckBox
189+
Left = 280
190+
Height = 19
191+
Top = 96
192+
Width = 105
193+
Alignment = taLeftJustify
194+
Caption = 'Clear On Import'
195+
TabOrder = 4
196+
end
197+
object OpenDialog: TOpenDialog
198+
Options = [ofFileMustExist, ofEnableSizing, ofViewDetail]
199+
Left = 720
200+
Top = 16
201+
end
202+
object SaveDialog: TSaveDialog
203+
Options = [ofOverwritePrompt, ofEnableSizing, ofViewDetail]
204+
Left = 792
205+
Top = 16
206+
end
207+
end

0 commit comments

Comments
 (0)