- Timestamp:
- May 31, 2024, 11:03:54 PM (6 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/DirtyCppToPascal.lpi
r2 r4 2 2 <CONFIG> 3 3 <ProjectOptions> 4 <Version Value="1 1"/>4 <Version Value="12"/> 5 5 <General> 6 <Flags> 7 <CompatibilityMode Value="True"/> 8 </Flags> 6 9 <SessionStorage Value="InProjectDir"/> 7 <MainUnit Value="0"/>8 10 <Title Value="DirtyCppToPascal"/> 9 11 <Scaled Value="True"/> … … 24 26 <RunParams> 25 27 <FormatVersion Value="2"/> 26 <Modes Count="0"/>27 28 </RunParams> 28 29 <RequiredPackages Count="1"> … … 37 38 </Unit0> 38 39 <Unit1> 39 <Filename Value=" UFormMain.pas"/>40 <Filename Value="FormMain.pas"/> 40 41 <IsPartOfProject Value="True"/> 41 42 <ComponentName Value="FormMain"/> … … 54 55 <UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/> 55 56 </SearchPaths> 57 <Parsing> 58 <SyntaxOptions> 59 <SyntaxMode Value="Delphi"/> 60 </SyntaxOptions> 61 </Parsing> 56 62 <Linking> 63 <Debugging> 64 <DebugInfoType Value="dsDwarf3"/> 65 </Debugging> 57 66 <Options> 58 67 <Win32> -
trunk/DirtyCppToPascal.lpr
r2 r4 8 8 {$ENDIF}{$ENDIF} 9 9 Interfaces, // this includes the LCL widgetset 10 Forms, UFormMain10 Forms, FormMain 11 11 { you can add units after this }; 12 12 … … 15 15 begin 16 16 RequireDerivedFormResource := True; 17 Application.Scaled :=True;17 Application.Scaled:=True; 18 18 Application.Initialize; 19 Application.CreateForm(TFormMain, FormMain );19 Application.CreateForm(TFormMain, FormMain.FormMain); 20 20 Application.Run; 21 21 end. -
trunk/FormMain.lfm
r3 r4 16 16 Anchors = [akTop, akLeft, akRight] 17 17 TabOrder = 0 18 Text = ' /home/chronos/Projekty/DirtyCppToPascal/trunk/CapitalAI'18 Text = '' 19 19 end 20 20 object ButtonBrowse: TButton -
trunk/FormMain.pas
r3 r4 1 unit UFormMain; 2 3 {$mode delphi}{$H+} 1 unit FormMain; 4 2 5 3 interface … … 50 48 var 51 49 FormMain: TFormMain; 50 52 51 53 52 implementation
Note:
See TracChangeset
for help on using the changeset viewer.