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

Last change on this file since 61 was 61, checked in by alloc, 16 years ago
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 = 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 = 1
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      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.