source: oup/_old_/Tools/RawEdit.dfm@ 170

Last change on this file since 170 was 92, checked in by alloc, 18 years ago

Rev86 was first after multi-cons

File size: 5.4 KB
Line 
1inherited Form_RawEdit: TForm_RawEdit
2 Caption = 'RawEdit'
3 KeyPreview = True
4 OnCloseQuery = FormCloseQuery
5 OnKeyUp = FormKeyUp
6 ExplicitWidth = 500
7 ExplicitHeight = 450
8 PixelsPerInch = 96
9 TextHeight = 13
10 inherited panel_files: TPanel
11 object Splitter4: TSplitter [0]
12 Left = 0
13 Top = 205
14 Width = 200
15 Height = 8
16 Cursor = crVSplit
17 Align = alBottom
18 AutoSnap = False
19 Beveled = True
20 MinSize = 150
21 ExplicitLeft = 3
22 ExplicitTop = 89
23 end
24 inherited filelist: TListBox
25 Height = 52
26 ExplicitHeight = 52
27 end
28 object panel_imexport: TPanel
29 Left = 0
30 Top = 363
31 Width = 200
32 Height = 60
33 Align = alBottom
34 BevelOuter = bvNone
35 TabOrder = 3
36 DesignSize = (
37 200
38 60)
39 object btn_export: TButton
40 Left = 4
41 Top = 4
42 Width = 190
43 Height = 25
44 Anchors = [akLeft, akTop, akRight]
45 Caption = 'Export to file...'
46 TabOrder = 0
47 OnClick = btn_exportClick
48 end
49 object btn_import: TButton
50 Left = 4
51 Top = 32
52 Width = 190
53 Height = 25
54 Anchors = [akLeft, akTop, akRight]
55 Caption = 'Import from file...'
56 TabOrder = 1
57 OnClick = btn_importClick
58 end
59 end
60 object GroupBox1: TGroupBox
61 Left = 0
62 Top = 213
63 Width = 200
64 Height = 150
65 Align = alBottom
66 Caption = '2. Select .dat-link-offset'
67 TabOrder = 2
68 object list_offset: TListBox
69 Left = 2
70 Top = 15
71 Width = 196
72 Height = 133
73 Align = alClient
74 ItemHeight = 13
75 TabOrder = 0
76 OnClick = list_offsetClick
77 end
78 end
79 end
80 inherited content: TPanel
81 object Splitter2: TSplitter
82 Left = 0
83 Top = 300
84 Width = 283
85 Height = 9
86 Cursor = crVSplit
87 Align = alTop
88 AutoSnap = False
89 Beveled = True
90 MinSize = 40
91 ExplicitTop = 414
92 end
93 object hex: TMPHexEditor
94 Left = 0
95 Top = 0
96 Width = 283
97 Height = 300
98 Cursor = crIBeam
99 Align = alTop
100 Font.Charset = DEFAULT_CHARSET
101 Font.Color = clWindowText
102 Font.Height = -16
103 Font.Name = 'Courier'
104 Font.Style = []
105 OnKeyUp = hexKeyUp
106 ParentFont = False
107 TabOrder = 0
108 BytesPerRow = 16
109 Translation = tkAsIs
110 OffsetFormat = '6!10:0x|'
111 Colors.Background = clWindow
112 Colors.ChangedBackground = clWindow
113 Colors.ChangedText = clRed
114 Colors.CursorFrame = clNavy
115 Colors.Offset = clBlack
116 Colors.OddColumn = clBlue
117 Colors.EvenColumn = clNavy
118 Colors.CurrentOffsetBackground = clBtnShadow
119 Colors.OffsetBackGround = clBtnFace
120 Colors.CurrentOffset = clBtnHighlight
121 Colors.Grid = clBtnFace
122 Colors.NonFocusCursorFrame = clAqua
123 Colors.ActiveFieldBackground = clWindow
124 FocusFrame = True
125 NoSizeChange = True
126 AllowInsertMode = False
127 DrawGridLines = False
128 Version = 'May 23, 2005; '#169' markus stephany, vcl[at]mirkes[dot]de'
129 OnChange = hexChange
130 ShowPositionIfNotFocused = True
131 OnSelectionChanged = hexSelectionChanged
132 end
133 object value_viewer: TWrapGrid
134 Left = 0
135 Top = 309
136 Width = 283
137 Height = 114
138 Align = alClient
139 ColCount = 2
140 DefaultColWidth = 80
141 DefaultRowHeight = 18
142 FixedCols = 0
143 RowCount = 8
144 FixedRows = 0
145 Font.Charset = DEFAULT_CHARSET
146 Font.Color = clWindowText
147 Font.Height = -11
148 Font.Name = 'Tahoma'
149 Font.Style = []
150 Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goColSizing]
151 ParentFont = False
152 PopupMenu = value_viewer_context
153 ScrollBars = ssVertical
154 TabOrder = 1
155 OnDblClick = value_viewerDblClick
156 OnMouseDown = value_viewerMouseDown
157 end
158 end
159 object value_viewer_context: TPopupMenu [3]
160 AutoHotkeys = maManual
161 OnPopup = value_viewer_contextPopup
162 Left = 368
163 Top = 264
164 object value_viewer_context_copy: TMenuItem
165 Caption = 'Copy to &clipboard'
166 OnClick = value_viewer_context_copyClick
167 end
168 object value_viewer_context_copyasdec: TMenuItem
169 Caption = 'Copy to clipboard (as &dec)'
170 OnClick = value_viewer_context_copyClick
171 end
172 object value_viewer_context_copyasfloat: TMenuItem
173 Caption = 'Copy to clipboard (as &float)'
174 OnClick = value_viewer_context_copyClick
175 end
176 object value_viewer_context_copyasbitset: TMenuItem
177 Caption = 'Copy to clipboard (as &bitset)'
178 OnClick = value_viewer_context_copyClick
179 end
180 object value_viewer_context_copyasstring: TMenuItem
181 Caption = 'Copy to clipboard (as &string)'
182 OnClick = value_viewer_context_copyClick
183 end
184 object value_viewer_context_copyashex: TMenuItem
185 Caption = 'Copy to clipboard (as &hex)'
186 OnClick = value_viewer_context_copyClick
187 end
188 end
189 object opend: TOpenDialog [4]
190 Options = [ofPathMustExist, ofFileMustExist, ofEnableSizing]
191 Left = 128
192 Top = 256
193 end
194 object saved: TSaveDialog [5]
195 Options = [ofOverwritePrompt, ofPathMustExist, ofEnableSizing]
196 Left = 128
197 Top = 280
198 end
199end
Note: See TracBrowser for help on using the repository browser.