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

Last change on this file since 195 was 177, checked in by alloc, 18 years ago
File size: 5.4 KB
Line 
1inherited Form_RawEdit: TForm_RawEdit
2 Caption = 'RawEdit'
3 KeyPreview = True
4 OnCloseQuery = FormCloseQuery
5 OnCreate = FormCreate
6 OnKeyUp = FormKeyUp
7 ExplicitWidth = 500
8 ExplicitHeight = 450
9 PixelsPerInch = 96
10 TextHeight = 13
11 inherited panel_files: TPanel
12 object Splitter4: TSplitter [0]
13 Left = 0
14 Top = 205
15 Width = 200
16 Height = 8
17 Cursor = crVSplit
18 Align = alBottom
19 AutoSnap = False
20 Beveled = True
21 MinSize = 150
22 ExplicitLeft = 3
23 ExplicitTop = 89
24 end
25 inherited filelist: TListBox
26 Height = 52
27 ExplicitHeight = 52
28 end
29 object panel_imexport: TPanel
30 Left = 0
31 Top = 363
32 Width = 200
33 Height = 60
34 Align = alBottom
35 BevelOuter = bvNone
36 TabOrder = 3
37 DesignSize = (
38 200
39 60)
40 object btn_export: TButton
41 Left = 4
42 Top = 4
43 Width = 190
44 Height = 25
45 Anchors = [akLeft, akTop, akRight]
46 Caption = 'Export to file...'
47 TabOrder = 0
48 OnClick = btn_exportClick
49 end
50 object btn_import: TButton
51 Left = 4
52 Top = 32
53 Width = 190
54 Height = 25
55 Anchors = [akLeft, akTop, akRight]
56 Caption = 'Import from file...'
57 TabOrder = 1
58 OnClick = btn_importClick
59 end
60 end
61 object GroupBox1: TGroupBox
62 Left = 0
63 Top = 213
64 Width = 200
65 Height = 150
66 Align = alBottom
67 Caption = '2. Select .dat-link-offset'
68 TabOrder = 2
69 object list_offset: TListBox
70 Left = 2
71 Top = 15
72 Width = 196
73 Height = 133
74 Align = alClient
75 ItemHeight = 13
76 TabOrder = 0
77 OnClick = list_offsetClick
78 end
79 end
80 end
81 inherited content: TPanel
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 FixedRows = 0
146 Font.Charset = DEFAULT_CHARSET
147 Font.Color = clWindowText
148 Font.Height = -11
149 Font.Name = 'Tahoma'
150 Font.Style = []
151 Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goColSizing]
152 ParentFont = False
153 PopupMenu = value_viewer_context
154 ScrollBars = ssVertical
155 TabOrder = 1
156 OnDblClick = value_viewerDblClick
157 OnMouseDown = value_viewerMouseDown
158 end
159 end
160 object value_viewer_context: TPopupMenu [3]
161 AutoHotkeys = maManual
162 OnPopup = value_viewer_contextPopup
163 Left = 368
164 Top = 264
165 object value_viewer_context_copy: TMenuItem
166 Caption = 'Copy to &clipboard'
167 OnClick = value_viewer_context_copyClick
168 end
169 object value_viewer_context_copyasdec: TMenuItem
170 Caption = 'Copy to clipboard (as &dec)'
171 OnClick = value_viewer_context_copyClick
172 end
173 object value_viewer_context_copyasfloat: TMenuItem
174 Caption = 'Copy to clipboard (as &float)'
175 OnClick = value_viewer_context_copyClick
176 end
177 object value_viewer_context_copyasbitset: TMenuItem
178 Caption = 'Copy to clipboard (as &bitset)'
179 OnClick = value_viewer_context_copyClick
180 end
181 object value_viewer_context_copyasstring: TMenuItem
182 Caption = 'Copy to clipboard (as &string)'
183 OnClick = value_viewer_context_copyClick
184 end
185 object value_viewer_context_copyashex: TMenuItem
186 Caption = 'Copy to clipboard (as &hex)'
187 OnClick = value_viewer_context_copyClick
188 end
189 end
190 object opend: TOpenDialog [4]
191 Options = [ofPathMustExist, ofFileMustExist, ofEnableSizing]
192 Left = 128
193 Top = 256
194 end
195 object saved: TSaveDialog [5]
196 Options = [ofOverwritePrompt, ofPathMustExist, ofEnableSizing]
197 Left = 128
198 Top = 280
199 end
200end
Note: See TracBrowser for help on using the repository browser.