|
| 1 | +{******************************************************************************} |
| 2 | +{ } |
| 3 | +{ StyledAnimatedComponents: a set of StyledComponents with animations } |
| 4 | +{ using Skia4Delphi (needs Skia Package already installed } |
| 5 | +{ } |
| 6 | +{ Copyright (c) 2022-2024 (Ethea S.r.l.) } |
| 7 | +{ Author: Carlo Barazzetta } |
| 8 | +{ Contributors: } |
| 9 | +{ } |
| 10 | +{ https://github.com/EtheaDev/StyledComponents } |
| 11 | +{ } |
| 12 | +{******************************************************************************} |
| 13 | +{ } |
| 14 | +{ Licensed under the Apache License, Version 2.0 (the "License"); } |
| 15 | +{ you may not use this file except in compliance with the License. } |
| 16 | +{ You may obtain a copy of the License at } |
| 17 | +{ } |
| 18 | +{ http://www.apache.org/licenses/LICENSE-2.0 } |
| 19 | +{ } |
| 20 | +{ Unless required by applicable law or agreed to in writing, software } |
| 21 | +{ distributed under the License is distributed on an "AS IS" BASIS, } |
| 22 | +{ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. } |
| 23 | +{ See the License for the specific language governing permissions and } |
| 24 | +{ limitations under the License. } |
| 25 | +{ } |
| 26 | +{******************************************************************************} |
| 27 | +package StyledAnimatedComponents; |
| 28 | + |
| 29 | +{$R *.res} |
| 30 | +{$R '..\StyledAnimatedButton.dcr'} |
| 31 | +{$R '..\StyledAnimatedTaskDialog.dcr'} |
| 32 | +{$R '..\StyledAnimatedToolbar.dcr'} |
| 33 | +{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} |
| 34 | +{$ALIGN 8} |
| 35 | +{$ASSERTIONS ON} |
| 36 | +{$BOOLEVAL OFF} |
| 37 | +{$DEBUGINFO OFF} |
| 38 | +{$EXTENDEDSYNTAX ON} |
| 39 | +{$IMPORTEDDATA ON} |
| 40 | +{$IOCHECKS ON} |
| 41 | +{$LOCALSYMBOLS OFF} |
| 42 | +{$LONGSTRINGS ON} |
| 43 | +{$OPENSTRINGS ON} |
| 44 | +{$OPTIMIZATION ON} |
| 45 | +{$OVERFLOWCHECKS OFF} |
| 46 | +{$RANGECHECKS OFF} |
| 47 | +{$REFERENCEINFO OFF} |
| 48 | +{$SAFEDIVIDE OFF} |
| 49 | +{$STACKFRAMES OFF} |
| 50 | +{$TYPEDADDRESS OFF} |
| 51 | +{$VARSTRINGCHECKS ON} |
| 52 | +{$WRITEABLECONST OFF} |
| 53 | +{$MINENUMSIZE 1} |
| 54 | +{$IMAGEBASE $400000} |
| 55 | +{$DEFINE RELEASE} |
| 56 | +{$ENDIF IMPLICITBUILDING} |
| 57 | +{$DESCRIPTION 'Ethea Styled Animated Components'} |
| 58 | +{$LIBSUFFIX 'DXE8'} |
| 59 | +{$RUNONLY} |
| 60 | +{$IMPLICITBUILD OFF} |
| 61 | + |
| 62 | +requires |
| 63 | + StyledComponents, |
| 64 | + Skia.Package.VCL, |
| 65 | + Skia.Package.RTL, |
| 66 | + vclwinx; |
| 67 | + |
| 68 | +contains |
| 69 | + Vcl.SkAnimatedImageHelper in '..\..\source\Vcl.SkAnimatedImageHelper.pas', |
| 70 | + Vcl.StyledAnimatedButton in '..\..\source\Vcl.StyledAnimatedButton.pas', |
| 71 | + Vcl.StyledAnimatedTaskDialog in '..\..\source\Vcl.StyledAnimatedTaskDialog.pas', |
| 72 | + Skia.Vcl.StyledTaskDialogAnimatedUnit in '..\..\source\Skia.Vcl.StyledTaskDialogAnimatedUnit.pas' {StyledTaskDialogAnimated}, |
| 73 | + Vcl.StyledAnimatedToolbar in '..\..\source\Vcl.StyledAnimatedToolbar.pas'; |
| 74 | + |
| 75 | +end. |
| 76 | + |
0 commit comments