source: oup/releases/0.18a/Unit8_binedit.dfm@ 167

Last change on this file since 167 was 21, checked in by alloc, 18 years ago
File size: 4.9 KB
Line 
1object Form8: TForm8
2 Left = 0
3 Top = 0
4 Width = 650
5 Height = 450
6 Caption = 'Binary .dat-Editor'
7 Color = clBtnFace
8 Font.Charset = DEFAULT_CHARSET
9 Font.Color = clWindowText
10 Font.Height = -11
11 Font.Name = 'Tahoma'
12 Font.Style = []
13 FormStyle = fsMDIChild
14 OldCreateOrder = False
15 Visible = True
16 OnClose = FormClose
17 OnCloseQuery = FormCloseQuery
18 OnCreate = FormCreate
19 OnResize = FormResize
20 PixelsPerInch = 96
21 TextHeight = 13
22 object Splitter1: TSplitter
23 Left = 150
24 Top = 0
25 Width = 9
26 Height = 423
27 AutoSnap = False
28 Beveled = True
29 MinSize = 150
30 end
31 object panel_data: TPanel
32 Left = 159
33 Top = 0
34 Width = 483
35 Height = 423
36 Align = alClient
37 BevelOuter = bvNone
38 TabOrder = 0
39 OnResize = panel_dataResize
40 object Splitter2: TSplitter
41 Left = 0
42 Top = 300
43 Width = 483
44 Height = 9
45 Cursor = crVSplit
46 Align = alTop
47 AutoSnap = False
48 Beveled = True
49 MinSize = 100
50 end
51 object hex: TMPHexEditor
52 Left = 0
53 Top = 0
54 Width = 483
55 Height = 300
56 Cursor = crIBeam
57 Align = alTop
58 Font.Charset = DEFAULT_CHARSET
59 Font.Color = clWindowText
60 Font.Height = -16
61 Font.Name = 'Courier'
62 Font.Style = []
63 ParentFont = False
64 TabOrder = 0
65 BytesPerRow = 16
66 Translation = tkASCII
67 OffsetFormat = '6!10:0x|'
68 Colors.Background = clWindow
69 Colors.ChangedBackground = clWindow
70 Colors.ChangedText = clRed
71 Colors.CursorFrame = clNavy
72 Colors.Offset = clBlack
73 Colors.OddColumn = clBlue
74 Colors.EvenColumn = clNavy
75 Colors.CurrentOffsetBackground = clBtnShadow
76 Colors.OffsetBackGround = clBtnFace
77 Colors.CurrentOffset = clBtnHighlight
78 Colors.Grid = clBtnFace
79 Colors.NonFocusCursorFrame = clAqua
80 Colors.ActiveFieldBackground = clWindow
81 FocusFrame = True
82 AllowInsertMode = False
83 DrawGridLines = False
84 Version = 'May 23, 2005; '#169' markus stephany, vcl[at]mirkes[dot]de'
85 OnChange = hexChange
86 ShowPositionIfNotFocused = True
87 OnSelectionChanged = hexSelectionChanged
88 end
89 object structs: TWrapGrid
90 Left = 0
91 Top = 309
92 Width = 483
93 Height = 114
94 Align = alClient
95 DefaultColWidth = 92
96 DefaultRowHeight = 18
97 FixedCols = 0
98 Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine]
99 TabOrder = 1
100 OnClick = structsClick
101 end
102 end
103 object panel_files: TPanel
104 Left = 0
105 Top = 0
106 Width = 150
107 Height = 423
108 Align = alLeft
109 BevelOuter = bvNone
110 TabOrder = 1
111 object Bevel1: TBevel
112 Left = 0
113 Top = 359
114 Width = 150
115 Height = 6
116 Align = alBottom
117 Style = bsRaised
118 end
119 object list: TListBox
120 Left = 0
121 Top = 0
122 Width = 150
123 Height = 315
124 Align = alClient
125 ItemHeight = 13
126 TabOrder = 0
127 OnClick = listClick
128 end
129 object panel_extension: TPanel
130 Left = 0
131 Top = 315
132 Width = 150
133 Height = 44
134 Align = alBottom
135 BevelOuter = bvNone
136 TabOrder = 1
137 OnResize = panel_extensionResize
138 object Label1: TLabel
139 Left = 2
140 Top = 4
141 Width = 100
142 Height = 17
143 AutoSize = False
144 Caption = 'Filter by extension:'
145 end
146 object combo_extension: TComboBox
147 Left = 2
148 Top = 20
149 Width = 145
150 Height = 21
151 Style = csDropDownList
152 DropDownCount = 12
153 Font.Charset = DEFAULT_CHARSET
154 Font.Color = clWindowText
155 Font.Height = -11
156 Font.Name = 'Tahoma'
157 Font.Style = []
158 ItemHeight = 13
159 ParentFont = False
160 Sorted = True
161 TabOrder = 0
162 OnClick = combo_extensionClick
163 end
164 end
165 object panel_imexport: TPanel
166 Left = 0
167 Top = 365
168 Width = 150
169 Height = 58
170 Align = alBottom
171 BevelOuter = bvNone
172 TabOrder = 2
173 OnResize = panel_imexportResize
174 object btn_export: TButton
175 Left = 4
176 Top = 4
177 Width = 142
178 Height = 25
179 Caption = '&Export to file...'
180 TabOrder = 0
181 OnClick = btn_exportClick
182 end
183 object btn_import: TButton
184 Left = 4
185 Top = 32
186 Width = 142
187 Height = 25
188 Caption = '&Import from file...'
189 TabOrder = 1
190 OnClick = btn_importClick
191 end
192 end
193 end
194 object opend: TOpenDialog
195 Options = [ofPathMustExist, ofFileMustExist, ofEnableSizing]
196 Left = 120
197 Top = 392
198 end
199 object saved: TSaveDialog
200 Options = [ofOverwritePrompt, ofPathMustExist, ofEnableSizing]
201 Left = 120
202 Top = 368
203 end
204end
Note: See TracBrowser for help on using the repository browser.