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

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