Changeset 210
- Timestamp:
- Apr 22, 2020, 12:13:52 AM (5 years ago)
- Location:
- branches/interpreter2
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/interpreter2/Forms/UFormMain.lfm
r209 r210 1 1 object FormMain: TFormMain 2 2 Left = 515 3 Height = 9 254 Top = 1355 Width = 14 183 Height = 993 4 Top = 67 5 Width = 1491 6 6 Caption = 'Interpreter' 7 ClientHeight = 8918 ClientWidth = 14 187 ClientHeight = 959 8 ClientWidth = 1491 9 9 DesignTimePPI = 144 10 10 Menu = MainMenu1 … … 16 16 object PanelMessages: TPanel 17 17 Left = 0 18 Height = 1 3119 Top = 76020 Width = 14 1818 Height = 127 19 Top = 832 20 Width = 1491 21 21 Align = alBottom 22 22 BevelOuter = bvNone … … 24 24 end 25 25 object PanelSource: TPanel 26 Left = 027 Height = 69828 Top = 9629 Width = 70430 Align = alC ustom26 Left = 7 27 Height = 832 28 Top = 0 29 Width = 829 30 Align = alClient 31 31 BevelOuter = bvNone 32 32 TabOrder = 1 33 33 end 34 34 object PanelOutput: TPanel 35 Left = 75136 Height = 8 4337 Top = 1635 Left = 836 36 Height = 832 37 Top = 0 38 38 Width = 655 39 Align = alRight 39 40 BevelOuter = bvNone 40 41 TabOrder = 2 42 end 43 object Splitter1: TSplitter 44 Left = 0 45 Height = 832 46 Top = 0 47 Width = 7 41 48 end 42 49 object MainMenu1: TMainMenu -
branches/interpreter2/Forms/UFormMain.pas
r209 r210 37 37 PanelSource: TPanel; 38 38 PanelMessages: TPanel; 39 Splitter1: TSplitter; 39 40 procedure ACompileExecute(Sender: TObject); 40 41 procedure AExitExecute(Sender: TObject); -
branches/interpreter2/Forms/UFormMessages.lfm
r206 r210 1 1 object FormMessages: TFormMessages 2 Left = 7 803 Height = 3604 Top = 6 695 Width = 4802 Left = 739 3 Height = 418 4 Top = 611 5 Width = 521 6 6 Caption = 'Messages' 7 ClientHeight = 3608 ClientWidth = 4807 ClientHeight = 418 8 ClientWidth = 521 9 9 DesignTimePPI = 144 10 10 LCLVersion = '2.0.2.0' … … 19 19 object MemoLog: TMemo 20 20 Left = 8 21 Height = 3 1921 Height = 377 22 22 Top = 32 23 Width = 46423 Width = 505 24 24 Anchors = [akTop, akLeft, akRight, akBottom] 25 25 ReadOnly = True -
branches/interpreter2/Forms/UFormOutput.lfm
r208 r210 1 1 object FormOutput: TFormOutput 2 Left = 6 513 Height = 4614 Top = 1175 Width = 9 782 Left = 607 3 Height = 544 4 Top = 252 5 Width = 932 6 6 Caption = 'Output' 7 ClientHeight = 4618 ClientWidth = 9 787 ClientHeight = 544 8 ClientWidth = 932 9 9 DesignTimePPI = 144 10 10 LCLVersion = '2.0.2.0' 11 11 inline SynEditOutput: TSynEdit 12 Left = 413 Height = 4 5314 Top = 4 15 Width = 97016 Align = alC lient12 Left = 11 13 Height = 480 14 Top = 48 15 Width = 852 16 Align = alCustom 17 17 BorderSpacing.Around = 4 18 Anchors = [akTop, akLeft, akRight, akBottom] 18 19 Font.Height = -20 19 20 Font.Name = 'DejaVu Sans Mono' … … 507 508 end 508 509 end 510 object Label1: TLabel 511 Left = 11 512 Height = 26 513 Top = 8 514 Width = 66 515 Caption = 'Output:' 516 ParentColor = False 517 end 509 518 object SynPasSyn1: TSynPasSyn 510 519 Enabled = False -
branches/interpreter2/Forms/UFormOutput.pas
r208 r210 6 6 7 7 uses 8 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, S ynEdit,8 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, SynEdit, 9 9 SynHighlighterAny, SynHighlighterPas, SynHighlighterCpp, SynHighlighterXML, 10 10 SynHighlighterPHP; … … 15 15 16 16 TFormOutput = class(TForm) 17 Label1: TLabel; 17 18 SynCppSyn1: TSynCppSyn; 18 19 SynEditOutput: TSynEdit; -
branches/interpreter2/Forms/UFormSource.lfm
r206 r210 10 10 LCLVersion = '2.0.2.0' 11 11 inline SynEditSource: TSynEdit 12 Left = 413 Height = 7 4114 Top = 415 Width = 11 6816 Align = alC lient12 Left = 12 13 Height = 701 14 Top = 36 15 Width = 1156 16 Align = alCustom 17 17 BorderSpacing.Around = 4 18 Anchors = [akTop, akLeft, akRight, akBottom] 18 19 Font.Height = -20 19 20 Font.Name = 'Liberation Mono' … … 508 509 end 509 510 end 511 object Label1: TLabel 512 Left = 15 513 Height = 26 514 Top = 8 515 Width = 63 516 Caption = 'Source:' 517 ParentColor = False 518 end 510 519 object SynFreePascalSyn1: TSynFreePascalSyn 511 520 Enabled = False -
branches/interpreter2/Forms/UFormSource.pas
r206 r210 6 6 7 7 uses 8 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, S ynHighlighterPas,9 Syn Edit;8 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, 9 SynHighlighterPas, SynEdit; 10 10 11 11 type … … 14 14 15 15 TFormSource = class(TForm) 16 Label1: TLabel; 16 17 SynEditSource: TSynEdit; 17 18 SynFreePascalSyn1: TSynFreePascalSyn; -
branches/interpreter2/interpreter.lpi
r209 r210 139 139 <IsPartOfProject Value="True"/> 140 140 <ComponentName Value="FormOutput"/> 141 <HasResources Value="True"/> 141 142 <ResourceBaseClass Value="Form"/> 142 143 </Unit14>
Note:
See TracChangeset
for help on using the changeset viewer.