Changeset 60 for trunk/Forms
- Timestamp:
- Apr 7, 2024, 11:26:09 PM (8 months ago)
- Location:
- trunk/Forms
- Files:
-
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/FormMain.lfm
r59 r60 1 1 object FormMain: TFormMain 2 2 Left = 566 3 Height = 6873 Height = 1030 4 4 Top = 262 5 Width = 9325 Width = 1398 6 6 Caption = 'Screen 1 - ChronOS' 7 ClientHeight = 653 8 ClientWidth = 932 7 ClientHeight = 1030 8 ClientWidth = 1398 9 DesignTimePPI = 144 9 10 Menu = MainMenu1 10 11 OnClose = FormClose … … 13 14 OnKeyDown = FormKeyDown 14 15 OnShow = FormShow 15 LCLVersion = ' 1.8.0.4'16 LCLVersion = '3.2.0.0' 16 17 object PaintBox1: TPaintBox 17 18 Left = 0 18 Height = 65319 Height = 1030 19 20 Top = 0 20 Width = 93221 Width = 1398 21 22 Align = alClient 22 23 OnClick = PaintBox1Click … … 25 26 end 26 27 object MainMenu1: TMainMenu 27 left = 50128 top = 6328 Left = 752 29 Top = 95 29 30 object MenuItem1: TMenuItem 30 31 Caption = 'Actions' … … 41 42 end 42 43 object ActionList1: TActionList 43 left = 51744 top = 20344 Left = 776 45 Top = 305 45 46 object AFullscreen: TAction 46 47 Caption = 'Fullscreen' … … 59 60 Interval = 10 60 61 OnTimer = Timer1Timer 61 left = 18062 top = 28162 Left = 270 63 Top = 422 63 64 end 64 65 end -
trunk/Forms/FormMain.pas
r59 r60 1 unit UFormMain; 2 3 {$mode delphi}{$H+} 1 unit FormMain; 4 2 5 3 interface … … 7 5 uses 8 6 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls, 9 ExtCtrls, Menus, ActnList, UKernel, UMemory, UDevice, UPlatformBase, LCLType,10 UGraphics, GraphType;7 ExtCtrls, Menus, ActnList, Kernel.Core, Kernel.Memory, Kernel.Device, 8 PlatformBase, LCLType, Kernel.Graphics, GraphType; 11 9 12 10 type … … 60 58 FormMain: TFormMain; 61 59 60 62 61 implementation 63 62 64 63 uses 65 UList, UApp, UAPI, UClock, UThreadEx, UFormTerminal;64 Kernel.List, Kernel.App, Kernel.API, Clock, ThreadEx, FormTerminal; 66 65 67 66 {$R *.lfm} … … 124 123 procedure TFormMain.AShowTerminalExecute(Sender: TObject); 125 124 begin 126 FormTerminal. Show;125 FormTerminal.FormTerminal.Show; 127 126 end; 128 127 … … 254 253 procedure TFormMain.SerialDeviceReceiveDataSync; 255 254 begin 256 FormTerminal. Memo1.Lines.AddText(SerialText);255 FormTerminal.FormTerminal.Memo1.Lines.AddText(SerialText); 257 256 end; 258 257 -
trunk/Forms/FormTerminal.pas
r59 r60 1 unit UFormTerminal; 2 3 {$mode delphi} 1 unit FormTerminal; 4 2 5 3 interface … … 23 21 FormTerminal: TFormTerminal; 24 22 23 25 24 implementation 26 25
Note:
See TracChangeset
for help on using the changeset viewer.