Changeset 37 for branches/topdown/Apps
- Timestamp:
- Jun 30, 2023, 3:29:14 PM (17 months ago)
- Location:
- branches/topdown/Apps
- Files:
-
- 6 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/topdown/Apps/AppCalc.lfm
r36 r37 1 1 object FormCalculator: TFormCalculator 2 2 Left = 591 3 Height = 2753 Height = 330 4 4 Top = 511 5 Width = 3925 Width = 470 6 6 Caption = 'Calculator' 7 ClientHeight = 2758 ClientWidth = 3929 DesignTimePPI = 1 207 ClientHeight = 330 8 ClientWidth = 470 9 DesignTimePPI = 144 10 10 FormStyle = fsStayOnTop 11 11 OnClose = FormClose 12 LCLVersion = '2. 0.2.0'12 LCLVersion = '2.2.6.0' 13 13 object ButtonCompute: TButton 14 Left = 3 2815 Height = 5516 Top = 2 0817 Width = 5414 Left = 394 15 Height = 66 16 Top = 250 17 Width = 65 18 18 Caption = '=' 19 19 OnClick = ButtonComputeClick … … 21 21 end 22 22 object ButtonAdd: TButton 23 Left = 3 2824 Height = 5525 Top = 1 2826 Width = 5423 Left = 394 24 Height = 66 25 Top = 154 26 Width = 65 27 27 Caption = '+' 28 28 OnClick = ButtonAddClick … … 30 30 end 31 31 object EditInput: TEdit 32 Left = 1 433 Height = 2834 Top = 1 435 Width = 26832 Left = 17 33 Height = 43 34 Top = 17 35 Width = 322 36 36 TabOrder = 2 37 37 end 38 38 object ButtonMultiply: TButton 39 Left = 3 2840 Height = 5541 Top = 5642 Width = 5439 Left = 394 40 Height = 66 41 Top = 67 42 Width = 65 43 43 Caption = '*' 44 44 OnClick = ButtonMultiplyClick -
branches/topdown/Apps/AppCalc.pas
r36 r37 1 unit UAppCalc;1 unit AppCalc; 2 2 3 3 interface 4 4 5 5 uses 6 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, USystem;6 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, OsSystem; 7 7 8 8 type … … 28 28 end; 29 29 30 var31 FormCalculator: TFormCalculator;32 30 33 31 implementation -
branches/topdown/Apps/AppFileManager.pas
r36 r37 1 unit UAppFileManager;1 unit AppFileManager; 2 2 3 3 interface 4 4 5 5 uses 6 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, USystem;6 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, OsSystem; 7 7 8 8 type … … 12 12 TFormFileManager = class(TFormTask) 13 13 procedure FormClose(Sender: TObject; var CloseAction: TCloseAction); 14 private15 16 public17 18 14 end; 19 15 20 var21 FormFileManager: TFormFileManager;22 16 23 17 implementation -
branches/topdown/Apps/AppTextEditor.pas
r36 r37 1 unit UAppTextEditor;1 unit AppTextEditor; 2 2 3 3 interface 4 4 5 5 uses 6 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, USystem;6 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, OsSystem; 7 7 8 8 type … … 12 12 TFormTextEditor = class(TFormTask) 13 13 Memo1: TMemo; 14 private15 16 public17 18 14 end; 19 15 20 var21 FormTextEditor: TFormTextEditor;22 16 23 17 implementation
Note:
See TracChangeset
for help on using the changeset viewer.