source: oup/releases/0.33a/Tools/BinEdit.dfm@ 76

Last change on this file since 76 was 61, checked in by alloc, 18 years ago
File size: 7.1 KB
Line 
1inherited Form_BinEdit: TForm_BinEdit
2 Caption = 'BinEdit'
3 KeyPreview = True
4 OnCloseQuery = FormCloseQuery
5 OnKeyUp = FormKeyUp
6 ExplicitWidth = 500
7 ExplicitHeight = 450
8 PixelsPerInch = 96
9 TextHeight = 13
10 inherited content: TPanel
11 object Splitter2: TSplitter
12 Left = 0
13 Top = 209
14 Width = 283
15 Height = 9
16 Cursor = crVSplit
17 Align = alTop
18 AutoSnap = False
19 Beveled = True
20 MinSize = 40
21 ExplicitWidth = 425
22 end
23 object Splitter3: TSplitter
24 Left = 0
25 Top = 318
26 Width = 283
27 Height = 8
28 Cursor = crVSplit
29 Align = alBottom
30 AutoSnap = False
31 Beveled = True
32 MinSize = 40
33 ExplicitLeft = -9
34 ExplicitTop = 430
35 ExplicitWidth = 425
36 end
37 object hex: TMPHexEditor
38 Left = 0
39 Top = 0
40 Width = 283
41 Height = 209
42 Cursor = crIBeam
43 Align = alTop
44 Font.Charset = DEFAULT_CHARSET
45 Font.Color = clWindowText
46 Font.Height = -16
47 Font.Name = 'Courier'
48 Font.Style = []
49 OnKeyUp = hexKeyUp
50 ParentFont = False
51 TabOrder = 0
52 BytesPerRow = 16
53 Translation = tkASCII
54 OffsetFormat = '6!10:0x|'
55 Colors.Background = clWindow
56 Colors.ChangedBackground = clWindow
57 Colors.ChangedText = clRed
58 Colors.CursorFrame = clNavy
59 Colors.Offset = clBlack
60 Colors.OddColumn = clBlue
61 Colors.EvenColumn = clNavy
62 Colors.CurrentOffsetBackground = clBtnShadow
63 Colors.OffsetBackGround = clBtnFace
64 Colors.CurrentOffset = clBtnHighlight
65 Colors.Grid = clBtnFace
66 Colors.NonFocusCursorFrame = clAqua
67 Colors.ActiveFieldBackground = clWindow
68 FocusFrame = True
69 NoSizeChange = True
70 AllowInsertMode = False
71 DrawGridLines = False
72 Version = 'May 23, 2005; '#169' markus stephany, vcl[at]mirkes[dot]de'
73 OnChange = hexChange
74 ShowPositionIfNotFocused = True
75 OnSelectionChanged = hexSelectionChanged
76 end
77 object value_viewer: TWrapGrid
78 Left = 0
79 Top = 218
80 Width = 283
81 Height = 100
82 Align = alClient
83 ColCount = 1
84 DefaultColWidth = 80
85 DefaultRowHeight = 18
86 FixedCols = 0
87 RowCount = 8
88 FixedRows = 0
89 Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goColSizing]
90 PopupMenu = value_viewer_context
91 TabOrder = 1
92 OnDblClick = value_viewerDblClick
93 OnMouseDown = value_viewerMouseDown
94 end
95 object VST: TVirtualStringTree
96 Left = 0
97 Top = 326
98 Width = 283
99 Height = 97
100 Align = alBottom
101 AnimationDuration = 0
102 AutoExpandDelay = 300
103 BiDiMode = bdLeftToRight
104 Colors.UnfocusedSelectionColor = clGradientActiveCaption
105 Colors.UnfocusedSelectionBorderColor = clGradientActiveCaption
106 Ctl3D = True
107 DragOperations = []
108 DrawSelectionMode = smBlendedRectangle
109 EditDelay = 200
110 Font.Charset = DEFAULT_CHARSET
111 Font.Color = clWindowText
112 Font.Height = -11
113 Font.Name = 'Tahoma'
114 Font.Style = []
115 Header.AutoSizeIndex = 0
116 Header.Font.Charset = DEFAULT_CHARSET
117 Header.Font.Color = clWindowText
118 Header.Font.Height = -11
119 Header.Font.Name = 'Tahoma'
120 Header.Font.Style = []
121 Header.Options = [hoColumnResize, hoDblClickResize, hoDrag, hoVisible]
122 Header.PopupMenu = VTHPopup
123 Header.Style = hsFlatButtons
124 HintAnimation = hatNone
125 HintMode = hmTooltip
126 Indent = 14
127 ParentBiDiMode = False
128 ParentCtl3D = False
129 ParentFont = False
130 ParentShowHint = False
131 ShowHint = True
132 TabOrder = 2
133 TreeOptions.MiscOptions = [toAcceptOLEDrop, toCheckSupport, toFullRepaintOnResize, toInitOnSave, toToggleOnDblClick, toWheelPanning]
134 TreeOptions.PaintOptions = [toShowButtons, toShowDropmark, toShowHorzGridLines, toShowRoot, toShowTreeLines, toShowVertGridLines, toUseBlendedImages]
135 TreeOptions.SelectionOptions = [toExtendedFocus, toFullRowSelect, toRightClickSelect]
136 OnDblClick = VSTDblClick
137 OnFocusChanged = VSTFocusChanged
138 OnGetText = VSTGetText
139 OnHeaderDragged = VSTHeaderDragged
140 Columns = <
141 item
142 MaxWidth = 300
143 MinWidth = 100
144 Options = [coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible]
145 Position = 0
146 Spacing = 20
147 Width = 150
148 WideText = 'Name'
149 WideHint = 'Name of the item.'
150 end
151 item
152 MaxWidth = 110
153 MinWidth = 80
154 Options = [coDraggable, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible]
155 Position = 1
156 Spacing = 20
157 Width = 85
158 WideText = 'Offset'
159 WideHint = 'Offset of the data-item.'
160 end
161 item
162 MaxWidth = 110
163 MinWidth = 75
164 Options = [coDraggable, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible]
165 Position = 2
166 Width = 75
167 WideText = 'Type'
168 WideHint = 'Data type of the item.'
169 end
170 item
171 MaxWidth = 250
172 MinWidth = 80
173 Options = [coDraggable, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible]
174 Position = 3
175 Width = 100
176 WideText = 'Value'
177 WideHint = 'Value of the item.'
178 end
179 item
180 MaxWidth = 400
181 MinWidth = 80
182 Options = [coDraggable, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible]
183 Position = 4
184 Width = 400
185 WideText = 'Description'
186 end>
187 WideDefaultText = ''
188 end
189 end
190 object value_viewer_context: TPopupMenu [3]
191 AutoHotkeys = maManual
192 OnPopup = value_viewer_contextPopup
193 Left = 280
194 Top = 232
195 object value_viewer_context_copy: TMenuItem
196 Caption = 'Copy to &clipboard'
197 OnClick = value_viewer_context_copyClick
198 end
199 object value_viewer_context_copyasdec: TMenuItem
200 Caption = 'Copy to clipboard (as &dec)'
201 OnClick = value_viewer_context_copyClick
202 end
203 object value_viewer_context_copyasfloat: TMenuItem
204 Caption = 'Copy to clipboard (as &float)'
205 OnClick = value_viewer_context_copyClick
206 end
207 object value_viewer_context_copyasbitset: TMenuItem
208 Caption = 'Copy to clipboard (as &bitset)'
209 OnClick = value_viewer_context_copyClick
210 end
211 object value_viewer_context_copyasstring: TMenuItem
212 Caption = 'Copy to clipboard (as &string)'
213 OnClick = value_viewer_context_copyClick
214 end
215 object value_viewer_context_copyashex: TMenuItem
216 Caption = 'Copy to clipboard (as &hex)'
217 OnClick = value_viewer_context_copyClick
218 end
219 end
220 object VTHPopup: TVTHeaderPopupMenu [4]
221 OnColumnChange = VTHPopupColumnChange
222 Left = 272
223 Top = 376
224 end
225end
Note: See TracBrowser for help on using the repository browser.