- Timestamp:
- Jun 30, 2023, 3:46:36 PM (17 months ago)
- Location:
- branches/overos
- Files:
-
- 2 edited
- 9 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/overos/FormMain.pas
r38 r39 1 unit UFormMain;1 unit FormMain; 2 2 3 3 interface … … 5 5 uses 6 6 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls, 7 Types, UWindow, USystem, UTypes, UMouse, UGraphics, UControls, UApplication;7 Types, Os.Window, Os.System, Os.Types, Os.Mouse, Os.Graphics, Os.Controls, Os.Application; 8 8 9 9 type … … 24 24 procedure FormShow(Sender: TObject); 25 25 procedure Timer1Timer(Sender: TObject); 26 private27 28 26 public 29 27 App: TApplication; -
branches/overos/Os.Application.pas
r38 r39 1 unit UApplication;1 unit Os.Application; 2 2 3 3 interface 4 4 5 5 uses 6 Classes, SysUtils, Generics.Collections, UTypes, UWindow;6 Classes, SysUtils, Generics.Collections, Os.Types, Os.Window; 7 7 8 8 type -
branches/overos/Os.Controls.pas
r38 r39 1 unit UControls;1 unit Os.Controls; 2 2 3 3 interface 4 4 5 5 uses 6 Classes, SysUtils, UTypes, UGraphics, Generics.Collections, UMouse;6 Classes, SysUtils, Os.Types, Os.Graphics, Generics.Collections, Os.Mouse; 7 7 8 8 type -
branches/overos/Os.Graphics.pas
r38 r39 1 unit UGraphics;1 unit Os.Graphics; 2 2 3 3 interface 4 4 5 5 uses 6 Classes, SysUtils, UTypes;6 Classes, SysUtils, Os.Types; 7 7 8 8 type -
branches/overos/Os.Mouse.pas
r38 r39 1 unit UMouse;1 unit Os.Mouse; 2 2 3 3 interface 4 4 5 5 uses 6 Classes, SysUtils, UTypes;6 Classes, SysUtils, Os.Types; 7 7 8 8 type -
branches/overos/Os.System.pas
r38 r39 1 unit USystem;1 unit Os.System; 2 2 3 3 interface 4 4 5 5 uses 6 Classes, SysUtils, UWindow, UMouse;6 Classes, SysUtils, Os.Window, Os.Mouse; 7 7 8 8 type -
branches/overos/Os.Types.pas
r38 r39 1 unit UTypes;1 unit Os.Types; 2 2 3 3 interface -
branches/overos/Os.Window.pas
r38 r39 1 unit UWindow;1 unit Os.Window; 2 2 3 3 interface 4 4 5 5 uses 6 Classes, SysUtils, Generics.Collections, UTypes, UMouse, UControls, UGraphics;6 Classes, SysUtils, Generics.Collections, Os.Types, Os.Mouse, Os.Controls, Os.Graphics; 7 7 8 8 type … … 107 107 108 108 uses 109 UApplication;109 Os.Application; 110 110 111 111 { TTitleBar } -
branches/overos/overos.lpi
r38 r39 73 73 </Unit0> 74 74 <Unit1> 75 <Filename Value=" UFormMain.pas"/>75 <Filename Value="FormMain.pas"/> 76 76 <IsPartOfProject Value="True"/> 77 77 <ComponentName Value="FormMain"/> … … 80 80 </Unit1> 81 81 <Unit2> 82 <Filename Value=" UWindow.pas"/>82 <Filename Value="Os.Window.pas"/> 83 83 <IsPartOfProject Value="True"/> 84 84 </Unit2> 85 85 <Unit3> 86 <Filename Value=" UMouse.pas"/>86 <Filename Value="Os.Mouse.pas"/> 87 87 <IsPartOfProject Value="True"/> 88 88 </Unit3> 89 89 <Unit4> 90 <Filename Value=" USystem.pas"/>90 <Filename Value="Os.System.pas"/> 91 91 <IsPartOfProject Value="True"/> 92 92 </Unit4> 93 93 <Unit5> 94 <Filename Value=" UTypes.pas"/>94 <Filename Value="Os.Types.pas"/> 95 95 <IsPartOfProject Value="True"/> 96 96 </Unit5> 97 97 <Unit6> 98 <Filename Value=" UControls.pas"/>98 <Filename Value="Os.Controls.pas"/> 99 99 <IsPartOfProject Value="True"/> 100 100 </Unit6> 101 101 <Unit7> 102 <Filename Value=" UGraphics.pas"/>102 <Filename Value="Os.Graphics.pas"/> 103 103 <IsPartOfProject Value="True"/> 104 104 </Unit7> 105 105 <Unit8> 106 <Filename Value=" UApplication.pas"/>106 <Filename Value="Os.Application.pas"/> 107 107 <IsPartOfProject Value="True"/> 108 108 </Unit8> -
branches/overos/overos.lpr
r24 r39 8 8 {$ENDIF}{$ENDIF} 9 9 Interfaces, // this includes the LCL widgetset 10 Forms, UFormMain, UWindow, UMouse, USystem, UTypes, UControls, UGraphics,11 UApplication, SysUtils10 Forms, FormMain, Os.Window, Os.Mouse, Os.System, Os.Types, Os.Controls, 11 Os.Graphics, Os.Application, SysUtils 12 12 { you can add units after this }; 13 13 … … 28 28 RequireDerivedFormResource:=True; 29 29 Application.Initialize; 30 Application.CreateForm(TFormMain, FormMain );30 Application.CreateForm(TFormMain, FormMain.FormMain); 31 31 Application.Run; 32 32 end.
Note:
See TracChangeset
for help on using the changeset viewer.