Changeset 40
- Timestamp:
- Oct 15, 2018, 5:17:15 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormMain.lfm
r37 r40 1 1 object FormMain: TFormMain 2 Left = 5 462 Left = 577 3 3 Height = 640 4 Top = 3 164 Top = 304 5 5 Width = 920 6 6 Caption = 'LibrePaint' -
trunk/Forms/UFormMain.pas
r38 r40 245 245 if Assigned(Core.Project) then 246 246 with Core.Project do begin 247 if Image tool = itMoveView then begin247 if ImageTool = itMoveView then begin 248 248 View.SrcRect := Bounds(Trunc(StartViewPoint.X + (StartMousePoint.X - X) / View.Zoom), 249 249 Trunc(StartViewPoint.Y + (StartMousePoint.Y - Y) / View.Zoom), -
trunk/Packages/FastGraphics/FastGraphics.lpk
r26 r40 11 11 <SearchPaths> 12 12 <OtherUnitFiles Value="ColorFormats"/> 13 <UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS) \"/>13 <UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/> 14 14 </SearchPaths> 15 15 <Parsing> … … 32 32 <License Value="CC0"/> 33 33 <Version Minor="1"/> 34 <Files Count="1 0">34 <Files Count="11"> 35 35 <Item1> 36 36 <Filename Value="UFGraphics.pas"/> … … 74 74 <UnitName Value="UColorRGBA8"/> 75 75 </Item10> 76 <Item11> 77 <Filename Value="ColorFormats\UColorRGB16.pas"/> 78 <UnitName Value="UColorRGB16"/> 79 </Item11> 76 80 </Files> 77 81 <RequiredPkgs Count="2"> -
trunk/Packages/FastGraphics/FastGraphics.pas
r26 r40 5 5 unit FastGraphics; 6 6 7 {$warn 5023 off : no warning about unused units} 7 8 interface 8 9 … … 10 11 UFGraphics, UGGraphics, UPixmapSpecialized, UColorGray1, UColorGray2, 11 12 UColorGray4, UColorGray8, UColorRGB8, UColorRGB565, UColorRGBA8, 12 LazarusPackageIntf;13 UColorRGB16, LazarusPackageIntf; 13 14 14 15 implementation -
trunk/Packages/FastGraphics/UFGraphics.pas
r39 r40 207 207 uses 208 208 UColorGray1, UColorGray2,UColorGray4, UColorGray8, UColorRGB8, UColorRGBA8, 209 UColorRGB565 ;209 UColorRGB565, UColorRGB16; 210 210 211 211 procedure Register; … … 633 633 RegisterFormat(TColorFormatRGBA8); 634 634 RegisterFormat(TColorFormatRGB565); 635 RegisterFormat(TColorFormatRGB16); 635 636 end; 636 637 -
trunk/UCore.lfm
r37 r40 4 4 OldCreateOrder = False 5 5 Height = 614 6 HorizontalOffset = 7997 VerticalOffset = 4166 HorizontalOffset = 253 7 VerticalOffset = 184 8 8 Width = 1071 9 9 PPI = 120
Note:
See TracChangeset
for help on using the changeset viewer.