Changeset 524


Ignore:
Timestamp:
Apr 17, 2019, 1:45:08 PM (5 years ago)
Author:
chronos
Message:
  • Modified: Forms moved to Forms subdirectory.
Location:
GraphicTest
Files:
5 added
4 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • GraphicTest/GraphicTest.lpi

    r523 r524  
    2323          <SearchPaths>
    2424            <IncludeFiles Value="$(ProjOutDir)"/>
    25             <OtherUnitFiles Value="Methods"/>
     25            <OtherUnitFiles Value="Methods;Forms"/>
    2626            <UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)-$(BuildMode)"/>
    2727          </SearchPaths>
     
    9393      </Item5>
    9494    </RequiredPackages>
    95     <Units Count="19">
     95    <Units Count="18">
    9696      <Unit0>
    9797        <Filename Value="GraphicTest.lpr"/>
     
    9999      </Unit0>
    100100      <Unit1>
    101         <Filename Value="UMainForm.pas"/>
    102         <IsPartOfProject Value="True"/>
    103         <ComponentName Value="MainForm"/>
     101        <Filename Value="Forms/UFormMain.pas"/>
     102        <IsPartOfProject Value="True"/>
     103        <ComponentName Value="FormMain"/>
    104104        <HasResources Value="True"/>
    105105        <ResourceBaseClass Value="Form"/>
     
    118118      </Unit4>
    119119      <Unit5>
    120         <Filename Value="UDrawForm.pas"/>
    121         <IsPartOfProject Value="True"/>
    122         <ComponentName Value="DrawForm"/>
     120        <Filename Value="Forms/UFormDraw.pas"/>
     121        <IsPartOfProject Value="True"/>
     122        <ComponentName Value="FormDraw"/>
    123123        <HasResources Value="True"/>
    124124        <ResourceBaseClass Value="Form"/>
     
    172172        <IsPartOfProject Value="True"/>
    173173      </Unit17>
    174       <Unit18>
    175         <Filename Value="Packages/Graphics32/Packages/GR32_Lazarus.lpk"/>
    176         <IsPartOfProject Value="True"/>
    177       </Unit18>
    178174    </Units>
    179175  </ProjectOptions>
     
    185181    <SearchPaths>
    186182      <IncludeFiles Value="$(ProjOutDir)"/>
    187       <OtherUnitFiles Value="Methods"/>
     183      <OtherUnitFiles Value="Methods;Forms"/>
    188184      <UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)-$(BuildMode)"/>
    189185    </SearchPaths>
  • GraphicTest/GraphicTest.lpr

    r522 r524  
    88  {$ENDIF}{$ENDIF}
    99  Interfaces, // this includes the LCL widgetset
    10   Forms, SysUtils, openglcontext, UMainForm, UPlatform, UDrawMethod, UFastBitmap,
    11   UDrawForm, bgrabitmappack,
     10  Forms, SysUtils, openglcontext, UFormMain, UPlatform, UDrawMethod, UFastBitmap,
     11  UFormDraw, bgrabitmappack,
    1212  UCanvasPixels, UCanvasPixelsUpdateLock,
    1313  ULazIntfImageColorsCopy, ULazIntfImageColorsNoCopy, UBGRABitmapPaintBox,
     
    3232  Application.Scaled:=True;
    3333  Application.Initialize;
    34   Application.CreateForm(TMainForm, MainForm);
    35   Application.CreateForm(TDrawForm, DrawForm);
     34  Application.CreateForm(TFormMain, FormMain);
     35  Application.CreateForm(TFormDraw, FormDraw);
    3636  Application.Run;
    3737end.
Note: See TracChangeset for help on using the changeset viewer.