source: branches/ByteArray/Forms/FormSourceEditor.lfm

Last change on this file was 5, checked in by chronos, 3 months ago
File size: 4.5 KB
Line 
1object FormSourceEditor: TFormSourceEditor
2 Left = 817
3 Height = 681
4 Top = 379
5 Width = 926
6 Caption = 'Source editor'
7 ClientHeight = 647
8 ClientWidth = 926
9 DesignTimePPI = 144
10 Menu = MainMenu1
11 OnClose = FormClose
12 OnCreate = FormCreate
13 OnDestroy = FormDestroy
14 OnShow = FormShow
15 LCLVersion = '2.2.6.0'
16 object PanelCenter: TPanel
17 Left = 0
18 Height = 479
19 Top = 0
20 Width = 926
21 Align = alClient
22 BevelOuter = bvNone
23 TabOrder = 0
24 end
25 object Splitter1: TSplitter
26 Cursor = crVSplit
27 Left = 0
28 Height = 8
29 Top = 479
30 Width = 926
31 Align = alBottom
32 ResizeAnchor = akBottom
33 end
34 object PanelBottom: TPanel
35 Left = 0
36 Height = 160
37 Top = 487
38 Width = 926
39 Align = alBottom
40 BevelOuter = bvNone
41 TabOrder = 2
42 end
43 object MainMenu1: TMainMenu
44 Left = 472
45 Top = 144
46 object MenuItem1: TMenuItem
47 Caption = 'File'
48 object MenuItem2: TMenuItem
49 Action = ANew
50 end
51 object MenuItem3: TMenuItem
52 Action = AOpen
53 end
54 object MenuItem4: TMenuItem
55 Action = AOpenRecent
56 end
57 object MenuItem5: TMenuItem
58 Action = ASave
59 end
60 object MenuItem6: TMenuItem
61 Action = ASaveAs
62 end
63 object MenuItem7: TMenuItem
64 Action = AClose
65 end
66 object Separator1: TMenuItem
67 Caption = '-'
68 end
69 object MenuItem8: TMenuItem
70 Action = Core.AExit
71 end
72 end
73 object MenuItem20: TMenuItem
74 Caption = 'View'
75 object MenuItem21: TMenuItem
76 Action = Core.AScreen
77 end
78 object MenuItem22: TMenuItem
79 Action = Core.AConsole
80 end
81 object MenuItem24: TMenuItem
82 Action = Core.AStorage
83 end
84 object MenuItem23: TMenuItem
85 Action = Core.AMemory
86 end
87 object Separator3: TMenuItem
88 Caption = '-'
89 end
90 object MenuItem28: TMenuItem
91 Action = Core.AFullscreen
92 end
93 end
94 object MenuItem9: TMenuItem
95 Caption = 'Run'
96 object MenuItem11: TMenuItem
97 Action = ACompile
98 end
99 object MenuItem10: TMenuItem
100 Action = ARun
101 end
102 object MenuItem12: TMenuItem
103 Action = APause
104 end
105 object MenuItem17: TMenuItem
106 Action = AStop
107 end
108 object MenuItem13: TMenuItem
109 Action = AStepIn
110 end
111 object MenuItem14: TMenuItem
112 Action = AStepOver
113 end
114 object MenuItem15: TMenuItem
115 Action = AStepOut
116 end
117 object MenuItem16: TMenuItem
118 Action = ARunToCursor
119 end
120 end
121 object MenuItem25: TMenuItem
122 Caption = 'Tools'
123 object MenuItem27: TMenuItem
124 Action = Core.ASettings
125 end
126 object Separator2: TMenuItem
127 Caption = '-'
128 end
129 object MenuItem26: TMenuItem
130 Action = Core.ADebugger
131 end
132 object MenuItem29: TMenuItem
133 Action = Core.ADisassembler
134 end
135 end
136 object MenuItem18: TMenuItem
137 Caption = 'Help'
138 object MenuItem19: TMenuItem
139 Action = Core.AAbout
140 end
141 end
142 end
143 object ActionList1: TActionList
144 Left = 618
145 Top = 147
146 object AExit: TAction
147 Caption = 'Exit'
148 end
149 object ANew: TAction
150 Caption = 'New'
151 OnExecute = ANewExecute
152 end
153 object AOpen: TAction
154 Caption = 'Open'
155 OnExecute = AOpenExecute
156 ShortCut = 16463
157 end
158 object AOpenRecent: TAction
159 Caption = 'Open recent'
160 end
161 object ASave: TAction
162 Caption = 'Save'
163 OnExecute = ASaveExecute
164 ShortCut = 16467
165 end
166 object ASaveAs: TAction
167 Caption = 'Save as...'
168 OnExecute = ASaveAsExecute
169 end
170 object AClose: TAction
171 Caption = 'Close'
172 OnExecute = ACloseExecute
173 end
174 object ARun: TAction
175 Caption = 'Run'
176 OnExecute = ARunExecute
177 ShortCut = 120
178 end
179 object ACompile: TAction
180 Caption = 'Compile'
181 OnExecute = ACompileExecute
182 ShortCut = 16504
183 end
184 object ARunToCursor: TAction
185 Caption = 'Run to cursor'
186 ShortCut = 115
187 end
188 object AStepIn: TAction
189 Caption = 'Step in'
190 ShortCut = 118
191 end
192 object AStepOut: TAction
193 Caption = 'Step out'
194 ShortCut = 8311
195 end
196 object AStepOver: TAction
197 Caption = 'Step over'
198 ShortCut = 119
199 end
200 object APause: TAction
201 Caption = 'Pause'
202 end
203 object AStop: TAction
204 Caption = 'Stop'
205 OnExecute = AStopExecute
206 ShortCut = 16497
207 end
208 end
209end
Note: See TracBrowser for help on using the repository browser.