root/Cheat Engine/FoundCodeUnit.dfm @ 311

Revision 311, 4.5 kB (checked in by dark_byte, 8 months ago)

mass commit for beta 6

Line 
1object FoundCodeDialog: TFoundCodeDialog
2  Left = 599
3  Top = 453
4  Width = 383
5  Height = 445
6  BorderIcons = [biSystemMenu]
7  Caption = 'The following opcodes changed the selected address'
8  Color = clBtnFace
9  Font.Charset = DEFAULT_CHARSET
10  Font.Color = clWindowText
11  Font.Height = -14
12  Font.Name = 'MS Sans Serif'
13  Font.Style = []
14  OldCreateOrder = False
15  Position = poOwnerFormCenter
16  OnClose = FormClose
17  OnCloseQuery = FormCloseQuery
18  PixelsPerInch = 120
19  TextHeight = 16
20  object FoundcodeList: TListBox
21    Left = 0
22    Top = 0
23    Width = 235
24    Height = 400
25    Align = alClient
26    ItemHeight = 16
27    MultiSelect = True
28    PopupMenu = pmOptions
29    TabOrder = 0
30    OnClick = FoundcodeListClick
31    OnContextPopup = FoundcodeListContextPopup
32    OnDblClick = FoundcodeListDblClick
33  end
34  object Panel1: TPanel
35    Left = 235
36    Top = 0
37    Width = 130
38    Height = 400
39    Align = alRight
40    BevelOuter = bvNone
41    TabOrder = 1
42    object Description: TLabel
43      Left = 0
44      Top = 169
45      Width = 130
46      Height = 190
47      Align = alClient
48      Alignment = taCenter
49      AutoSize = False
50      WordWrap = True
51    end
52    object Panel2: TPanel
53      Left = 0
54      Top = 359
55      Width = 130
56      Height = 41
57      Align = alBottom
58      BevelOuter = bvNone
59      TabOrder = 0
60      object btnOK: TButton
61        Left = 21
62        Top = 3
63        Width = 90
64        Height = 30
65        Cancel = True
66        Caption = 'OK'
67        Default = True
68        TabOrder = 0
69        OnClick = btnOKClick
70      end
71    end
72    object Panel3: TPanel
73      Left = 0
74      Top = 0
75      Width = 130
76      Height = 169
77      Align = alTop
78      BevelOuter = bvNone
79      TabOrder = 1
80      DesignSize = (
81        130
82        169)
83      object btnExtraInfo: TButton
84        Left = 4
85        Top = 128
86        Width = 124
87        Height = 31
88        Hint =
89          'The selected addresses will be added to the code list in the adv' +
90          'anced options window.'
91        Anchors = [akTop, akRight]
92        Caption = 'More information'
93        Enabled = False
94        ParentShowHint = False
95        ShowHint = True
96        TabOrder = 0
97        OnClick = btnExtraInfoClick
98      end
99      object btnAddToCodeList: TButton
100        Left = 4
101        Top = 89
102        Width = 124
103        Height = 30
104        Hint =
105          'The selected addresses will be added to the code list in the adv' +
106          'anced options window.'
107        Caption = 'Add to the codelist'
108        Enabled = False
109        ParentShowHint = False
110        ShowHint = True
111        TabOrder = 1
112        OnClick = btnAddToCodeListClick
113      end
114      object btnOpenDisassembler: TButton
115        Left = 4
116        Top = 49
117        Width = 123
118        Height = 31
119        Hint =
120          'This will open the memoryview and bring the disassemblerview to ' +
121          'the selected address'
122        Caption = 'Show disassembler'
123        Enabled = False
124        ParentShowHint = False
125        ShowHint = True
126        TabOrder = 2
127        OnClick = btnOpenDisassemblerClick
128      end
129      object btnReplacewithnops: TButton
130        Left = 4
131        Top = 10
132        Width = 124
133        Height = 31
134        Hint =
135          'This will replace the selected addresses with code that does not' +
136          'hing. (Nops)'
137        Caption = 'Replace'
138        Enabled = False
139        ParentShowHint = False
140        ShowHint = True
141        TabOrder = 3
142        OnClick = btnReplacewithnopsClick
143      end
144    end
145  end
146  object pmOptions: TPopupMenu
147    OnPopup = pmOptionsPopup
148    Left = 64
149    Top = 64
150    object ReplacewithcodethatdoesnothingNOP1: TMenuItem
151      Caption = 'Replace with code that does nothing (NOP)'
152      OnClick = btnReplacewithnopsClick
153    end
154    object Showthisaddressinthedisassembler1: TMenuItem
155      Caption = 'Show this address in the disassembler'
156      OnClick = btnOpenDisassemblerClick
157    end
158    object Addtothecodelist1: TMenuItem
159      Caption = 'Add to the codelist'
160      OnClick = btnAddToCodeListClick
161    end
162    object MoreInfo1: TMenuItem
163      Caption = 'More Info'
164      Default = True
165      OnClick = btnExtraInfoClick
166    end
167    object N1: TMenuItem
168      Caption = '-'
169    end
170    object Copyselectiontoclipboard1: TMenuItem
171      Caption = 'Copy selection to clipboard'
172      ShortCut = 16451
173      OnClick = Copyselectiontoclipboard1Click
174    end
175  end
176end
Note: See TracBrowser for help on using the browser.