source: oup/current/Tools/RawEdit.dfm@ 72

Last change on this file since 72 was 70, checked in by alloc, 18 years ago
File size: 5.3 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 = 76
26 ExplicitHeight = 76
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 OnResize = panel_contentResize
82 object Splitter2: TSplitter
83 Left = 0
84 Top = 300
85 Width = 283
86 Height = 9
87 Cursor = crVSplit
88 Align = alTop
89 AutoSnap = False
90 Beveled = True
91 MinSize = 40
92 ExplicitTop = 414
93 end
94 object hex: TMPHexEditor
95 Left = 0
96 Top = 0
97 Width = 283
98 Height = 300
99 Cursor = crIBeam
100 Align = alTop
101 Font.Charset = DEFAULT_CHARSET
102 Font.Color = clWindowText
103 Font.Height = -16
104 Font.Name = 'Courier'
105 Font.Style = []
106 OnKeyUp = hexKeyUp
107 ParentFont = False
108 TabOrder = 0
109 BytesPerRow = 16
110 Translation = tkAsIs
111 OffsetFormat = '6!10:0x|'
112 Colors.Background = clWindow
113 Colors.ChangedBackground = clWindow
114 Colors.ChangedText = clRed
115 Colors.CursorFrame = clNavy
116 Colors.Offset = clBlack
117 Colors.OddColumn = clBlue
118 Colors.EvenColumn = clNavy
119 Colors.CurrentOffsetBackground = clBtnShadow
120 Colors.OffsetBackGround = clBtnFace
121 Colors.CurrentOffset = clBtnHighlight
122 Colors.Grid = clBtnFace
123 Colors.NonFocusCursorFrame = clAqua
124 Colors.ActiveFieldBackground = clWindow
125 FocusFrame = True
126 NoSizeChange = True
127 AllowInsertMode = False
128 DrawGridLines = False
129 Version = 'May 23, 2005; '#169' markus stephany, vcl[at]mirkes[dot]de'
130 OnChange = hexChange
131 ShowPositionIfNotFocused = True
132 OnSelectionChanged = hexSelectionChanged
133 end
134 object value_viewer: TWrapGrid
135 Left = 0
136 Top = 309
137 Width = 283
138 Height = 114
139 Align = alClient
140 ColCount = 2
141 DefaultColWidth = 80
142 DefaultRowHeight = 18
143 FixedCols = 0
144 RowCount = 8
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 TabOrder = 1
154 OnDblClick = value_viewerDblClick
155 OnMouseDown = value_viewerMouseDown
156 end
157 end
158 object value_viewer_context: TPopupMenu [3]
159 AutoHotkeys = maManual
160 OnPopup = value_viewer_contextPopup
161 Left = 368
162 Top = 264
163 object value_viewer_context_copy: TMenuItem
164 Caption = 'Copy to &clipboard'
165 OnClick = value_viewer_context_copyClick
166 end
167 object value_viewer_context_copyasdec: TMenuItem
168 Caption = 'Copy to clipboard (as &dec)'
169 OnClick = value_viewer_context_copyClick
170 end
171 object value_viewer_context_copyasfloat: TMenuItem
172 Caption = 'Copy to clipboard (as &float)'
173 OnClick = value_viewer_context_copyClick
174 end
175 object value_viewer_context_copyasbitset: TMenuItem
176 Caption = 'Copy to clipboard (as &bitset)'
177 OnClick = value_viewer_context_copyClick
178 end
179 object value_viewer_context_copyasstring: TMenuItem
180 Caption = 'Copy to clipboard (as &string)'
181 OnClick = value_viewer_context_copyClick
182 end
183 object value_viewer_context_copyashex: TMenuItem
184 Caption = 'Copy to clipboard (as &hex)'
185 OnClick = value_viewer_context_copyClick
186 end
187 end
188 object opend: TOpenDialog [4]
189 Options = [ofPathMustExist, ofFileMustExist, ofEnableSizing]
190 Left = 128
191 Top = 256
192 end
193 object saved: TSaveDialog [5]
194 Options = [ofOverwritePrompt, ofPathMustExist, ofEnableSizing]
195 Left = 128
196 Top = 280
197 end
198end
Note: See TracBrowser for help on using the repository browser.