source: oup/releases/0.19a/Unit8_binedit.dfm @ 21

Last change on this file since 21 was 21, checked in by alloc, 17 years ago
File size: 5.0 KB
Line 
1object Form8: TForm8
2  Left = 0
3  Top = 0
4  Width = 650
5  Height = 450
6  Caption = 'Binary .dat-Editor'
7  Color = clBtnFace
8  Font.Charset = DEFAULT_CHARSET
9  Font.Color = clWindowText
10  Font.Height = -11
11  Font.Name = 'Tahoma'
12  Font.Style = []
13  FormStyle = fsMDIChild
14  OldCreateOrder = False
15  Visible = True
16  WindowState = wsMaximized
17  OnActivate = FormActivate
18  OnClose = FormClose
19  OnCloseQuery = FormCloseQuery
20  OnCreate = FormCreate
21  OnResize = FormResize
22  PixelsPerInch = 96
23  TextHeight = 13
24  object Splitter1: TSplitter
25    Left = 150
26    Top = 0
27    Width = 9
28    Height = 423
29    AutoSnap = False
30    Beveled = True
31    MinSize = 150
32  end
33  object panel_data: TPanel
34    Left = 159
35    Top = 0
36    Width = 483
37    Height = 423
38    Align = alClient
39    BevelOuter = bvNone
40    TabOrder = 0
41    OnResize = panel_dataResize
42    object Splitter2: TSplitter
43      Left = 0
44      Top = 300
45      Width = 483
46      Height = 9
47      Cursor = crVSplit
48      Align = alTop
49      AutoSnap = False
50      Beveled = True
51      MinSize = 50
52    end
53    object hex: TMPHexEditor
54      Left = 0
55      Top = 0
56      Width = 483
57      Height = 300
58      Cursor = crIBeam
59      Align = alTop
60      Font.Charset = DEFAULT_CHARSET
61      Font.Color = clWindowText
62      Font.Height = -16
63      Font.Name = 'Courier'
64      Font.Style = []
65      ParentFont = False
66      TabOrder = 0
67      BytesPerRow = 16
68      Translation = tkASCII
69      OffsetFormat = '6!10:0x|'
70      Colors.Background = clWindow
71      Colors.ChangedBackground = clWindow
72      Colors.ChangedText = clRed
73      Colors.CursorFrame = clNavy
74      Colors.Offset = clBlack
75      Colors.OddColumn = clBlue
76      Colors.EvenColumn = clNavy
77      Colors.CurrentOffsetBackground = clBtnShadow
78      Colors.OffsetBackGround = clBtnFace
79      Colors.CurrentOffset = clBtnHighlight
80      Colors.Grid = clBtnFace
81      Colors.NonFocusCursorFrame = clAqua
82      Colors.ActiveFieldBackground = clWindow
83      FocusFrame = True
84      AllowInsertMode = False
85      DrawGridLines = False
86      Version = 'May 23, 2005; '#169' markus stephany, vcl[at]mirkes[dot]de'
87      OnChange = hexChange
88      ShowPositionIfNotFocused = True
89      OnSelectionChanged = hexSelectionChanged
90    end
91    object structs: TWrapGrid
92      Left = 0
93      Top = 309
94      Width = 483
95      Height = 114
96      Align = alClient
97      DefaultColWidth = 92
98      DefaultRowHeight = 18
99      FixedCols = 0
100      Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goColSizing]
101      TabOrder = 1
102      OnClick = structsClick
103    end
104  end
105  object panel_files: TPanel
106    Left = 0
107    Top = 0
108    Width = 150
109    Height = 423
110    Align = alLeft
111    BevelOuter = bvNone
112    TabOrder = 1
113    object Bevel1: TBevel
114      Left = 0
115      Top = 359
116      Width = 150
117      Height = 6
118      Align = alBottom
119      Style = bsRaised
120    end
121    object list: TListBox
122      Left = 0
123      Top = 0
124      Width = 150
125      Height = 315
126      Align = alClient
127      ItemHeight = 13
128      TabOrder = 0
129      OnClick = listClick
130    end
131    object panel_extension: TPanel
132      Left = 0
133      Top = 315
134      Width = 150
135      Height = 44
136      Align = alBottom
137      BevelOuter = bvNone
138      TabOrder = 1
139      OnResize = panel_extensionResize
140      object lbl_filter: TLabel
141        Left = 2
142        Top = 4
143        Width = 100
144        Height = 17
145        AutoSize = False
146        Caption = '&Filter by extension:'
147        FocusControl = combo_extension
148      end
149      object combo_extension: TComboBox
150        Left = 2
151        Top = 20
152        Width = 145
153        Height = 21
154        Style = csDropDownList
155        DropDownCount = 12
156        Font.Charset = DEFAULT_CHARSET
157        Font.Color = clWindowText
158        Font.Height = -11
159        Font.Name = 'Tahoma'
160        Font.Style = []
161        ItemHeight = 13
162        ParentFont = False
163        Sorted = True
164        TabOrder = 0
165        OnClick = combo_extensionClick
166      end
167    end
168    object panel_imexport: TPanel
169      Left = 0
170      Top = 365
171      Width = 150
172      Height = 58
173      Align = alBottom
174      BevelOuter = bvNone
175      TabOrder = 2
176      OnResize = panel_imexportResize
177      object btn_export: TButton
178        Left = 4
179        Top = 4
180        Width = 142
181        Height = 25
182        Caption = '&Export to file...'
183        TabOrder = 0
184        OnClick = btn_exportClick
185      end
186      object btn_import: TButton
187        Left = 4
188        Top = 32
189        Width = 142
190        Height = 25
191        Caption = '&Import from file...'
192        TabOrder = 1
193        OnClick = btn_importClick
194      end
195    end
196  end
197  object opend: TOpenDialog
198    Options = [ofPathMustExist, ofFileMustExist, ofEnableSizing]
199    Left = 120
200    Top = 392
201  end
202  object saved: TSaveDialog
203    Options = [ofOverwritePrompt, ofPathMustExist, ofEnableSizing]
204    Left = 120
205    Top = 368
206  end
207end
Note: See TracBrowser for help on using the repository browser.