Changeset 60 for trunk/Forms


Ignore:
Timestamp:
Apr 7, 2024, 11:26:09 PM (6 weeks ago)
Author:
chronos
Message:
  • Modified: Remove U prefix from unit names.
Location:
trunk/Forms
Files:
4 moved

Legend:

Unmodified
Added
Removed
  • trunk/Forms/FormMain.lfm

    r59 r60  
    11object FormMain: TFormMain
    22  Left = 566
    3   Height = 687
     3  Height = 1030
    44  Top = 262
    5   Width = 932
     5  Width = 1398
    66  Caption = 'Screen 1 - ChronOS'
    7   ClientHeight = 653
    8   ClientWidth = 932
     7  ClientHeight = 1030
     8  ClientWidth = 1398
     9  DesignTimePPI = 144
    910  Menu = MainMenu1
    1011  OnClose = FormClose
     
    1314  OnKeyDown = FormKeyDown
    1415  OnShow = FormShow
    15   LCLVersion = '1.8.0.4'
     16  LCLVersion = '3.2.0.0'
    1617  object PaintBox1: TPaintBox
    1718    Left = 0
    18     Height = 653
     19    Height = 1030
    1920    Top = 0
    20     Width = 932
     21    Width = 1398
    2122    Align = alClient
    2223    OnClick = PaintBox1Click
     
    2526  end
    2627  object MainMenu1: TMainMenu
    27     left = 501
    28     top = 63
     28    Left = 752
     29    Top = 95
    2930    object MenuItem1: TMenuItem
    3031      Caption = 'Actions'
     
    4142  end
    4243  object ActionList1: TActionList
    43     left = 517
    44     top = 203
     44    Left = 776
     45    Top = 305
    4546    object AFullscreen: TAction
    4647      Caption = 'Fullscreen'
     
    5960    Interval = 10
    6061    OnTimer = Timer1Timer
    61     left = 180
    62     top = 281
     62    Left = 270
     63    Top = 422
    6364  end
    6465end
  • trunk/Forms/FormMain.pas

    r59 r60  
    1 unit UFormMain;
    2 
    3 {$mode delphi}{$H+}
     1unit FormMain;
    42
    53interface
     
    75uses
    86  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;
    119
    1210type
     
    6058  FormMain: TFormMain;
    6159
     60
    6261implementation
    6362
    6463uses
    65   UList, UApp, UAPI, UClock, UThreadEx, UFormTerminal;
     64  Kernel.List, Kernel.App, Kernel.API, Clock, ThreadEx, FormTerminal;
    6665
    6766{$R *.lfm}
     
    124123procedure TFormMain.AShowTerminalExecute(Sender: TObject);
    125124begin
    126   FormTerminal.Show;
     125  FormTerminal.FormTerminal.Show;
    127126end;
    128127
     
    254253procedure TFormMain.SerialDeviceReceiveDataSync;
    255254begin
    256   FormTerminal.Memo1.Lines.AddText(SerialText);
     255  FormTerminal.FormTerminal.Memo1.Lines.AddText(SerialText);
    257256end;
    258257
  • trunk/Forms/FormTerminal.pas

    r59 r60  
    1 unit UFormTerminal;
    2 
    3 {$mode delphi}
     1unit FormTerminal;
    42
    53interface
     
    2321  FormTerminal: TFormTerminal;
    2422
     23
    2524implementation
    2625
Note: See TracChangeset for help on using the changeset viewer.