Skip to content

Commit 709e16e

Browse files
version 3.6.7
- Fixed StyledAnimatedComponents Packages
1 parent 20a1881 commit 709e16e

File tree

71 files changed

+284
-1201
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+284
-1201
lines changed

Demos/Delphi10.4/StyledComponentsDemo.dproj

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,6 @@
2929
<CfgParent>Base</CfgParent>
3030
<Base>true</Base>
3131
</PropertyGroup>
32-
<PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win64)'!=''">
33-
<Cfg_1_Win64>true</Cfg_1_Win64>
34-
<CfgParent>Cfg_1</CfgParent>
35-
<Cfg_1>true</Cfg_1>
36-
<Base>true</Base>
37-
</PropertyGroup>
3832
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_2)'!=''">
3933
<Cfg_2>true</Cfg_2>
4034
<CfgParent>Base</CfgParent>
@@ -79,9 +73,6 @@
7973
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
8074
<DCC_DebugInfoInExe>true</DCC_DebugInfoInExe>
8175
</PropertyGroup>
82-
<PropertyGroup Condition="'$(Cfg_1_Win64)'!=''">
83-
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
84-
</PropertyGroup>
8576
<PropertyGroup Condition="'$(Cfg_2)'!=''">
8677
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
8778
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>

Demos/Delphi11/StyledComponentsDemo.dproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,9 @@
9393
</DCCReference>
9494
<DCCReference Include="..\source\DemoWelcomeForm.pas">
9595
<Form>WelcomeForm</Form>
96-
<FormType>dfm</FormType>
9796
</DCCReference>
9897
<DCCReference Include="..\source\FAboutForm.pas">
9998
<Form>fmAbout</Form>
100-
<FormType>dfm</FormType>
10199
</DCCReference>
102100
<DCCReference Include="..\source\AutoClickForm.pas">
103101
<Form>fmAutoClick</Form>

Demos/Delphi12/StyledComponentsDemo.dproj

Lines changed: 0 additions & 1007 deletions
Large diffs are not rendered by default.

Demos/DelphiXE7/StyledComponentsDemo.dpr

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,33 @@
1+
{******************************************************************************}
2+
{ }
3+
{ TStyledComponents Demo }
4+
{ Full demo of Styled Components and Styled TaskDialog/MessageDialog }
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+
{******************************************************************************}
127
program StyledComponentsDemo;
228

329
uses
30+
Midaslib,
431
Vcl.Forms,
532
Vcl.Themes,
633
Vcl.Styles,
@@ -23,7 +50,7 @@ uses
2350

2451
begin
2552
Application.Initialize;
26-
Application.MainFormOnTaskbar := True;
53+
Application.MainFormOnTaskBar := True;
2754
Application.ActionUpdateDelay := 50;
2855
Application.Title := 'Styled Components Demos with Delphi XE7';
2956
Application.CreateForm(TdmResources, dmResources);

Demos/DelphiXE8/StyledComponentsDemo.dpr

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,33 @@
1+
{******************************************************************************}
2+
{ }
3+
{ TStyledComponents Demo }
4+
{ Full demo of Styled Components and Styled TaskDialog/MessageDialog }
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+
{******************************************************************************}
127
program StyledComponentsDemo;
228

329
uses
30+
Midaslib,
431
Vcl.Forms,
532
Vcl.Themes,
633
Vcl.Styles,
@@ -23,7 +50,7 @@ uses
2350

2451
begin
2552
Application.Initialize;
26-
Application.MainFormOnTaskbar := True;
53+
Application.MainFormOnTaskBar := True;
2754
Application.ActionUpdateDelay := 50;
2855
Application.Title := 'Styled Components Demos with Delphi XE8';
2956
Application.CreateForm(TdmResources, dmResources);

Demos/source/MainDemoForm.pas

Lines changed: 21 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -270,12 +270,17 @@ procedure TfrmMain.acCancelSettingsExecute(Sender: TObject);
270270

271271
procedure TfrmMain.acExampleExecute(Sender: TObject);
272272
const
273-
D10_3 = 'Delphi 10.3';
274-
D10_4 = 'Delphi 10.4';
275-
D11 = 'Delphi 11';
276-
D12 = 'Delphi 12';
277-
DXE6 = 'Delphi XE6';
278-
DXE7_SKIA = 'Delphi XE7 With SKIA enabled';
273+
D10_3 = 'from Delphi 10.3';
274+
D10_4 = 'from Delphi 10.4';
275+
D11 = 'from Delphi 11';
276+
D12 = 'from Delphi 12';
277+
DXE6 = 'from Delphi XE6';
278+
279+
{$IFDEF DXE7+}
280+
DXE7_SKIA = 'Using Skia4Delphi. Install it and "Enable Skia" in this demo';
281+
{$ELSE}
282+
DXE7_SKIA = 'from Delphi XE7 With Skia enabled';
283+
{$ENDIF}
279284
begin
280285
//Some actions can works only with particular Delphi Version to Latest one
281286
FActiveAction := Sender as TAction;
@@ -318,14 +323,7 @@ procedure TfrmMain.acExampleExecute(Sender: TObject);
318323

319324
procedure TfrmMain.acQuitExecute(Sender: TObject);
320325
begin
321-
if StyledTaskMessageDlg('Exit from StyledComponents Demo',
322-
'If you need more info about StyledComponents read the '+
323-
StringToHRef('https://github.com/EtheaDev/StyledComponents/wiki/','wiki section')+' of the project.'+sLineBreak+
324-
sLineBreak+
325-
'Do you want to exit now?',
326-
mtConfirmation,
327-
[mbYes, mbNo, mbCancel], 0) in [mrYes] then
328-
Close;
326+
Close;
329327
end;
330328

331329
procedure TfrmMain.acSettingsChangedUpdate(Sender: TObject);
@@ -358,7 +356,14 @@ procedure TfrmMain.FormActivate(Sender: TObject);
358356

359357
procedure TfrmMain.FormClose(Sender: TObject; var Action: TCloseAction);
360358
begin
361-
;
359+
if StyledTaskMessageDlg('Exit from StyledComponents Demo',
360+
'If you need more info about StyledComponents read the '+
361+
StringToHRef('https://github.com/EtheaDev/StyledComponents/wiki/','wiki section')+' of the project.'+sLineBreak+
362+
sLineBreak+
363+
'Do you want to exit now?',
364+
mtConfirmation,
365+
[mbYes, mbNo, mbCancel], 0) <> mrYes then
366+
Action := caNone;
362367
end;
363368

364369
procedure TfrmMain.FormCreate(Sender: TObject);
@@ -530,7 +535,7 @@ procedure TfrmMain.SetSettingsOpened(const AValue: Boolean);
530535
procedure TfrmMain.ShowDelphiVersion(const AAction: TAction; const ADelphiVer: string);
531536
begin
532537
StyledTaskMessageDlg(AAction.Caption,
533-
Format('%s%s%sThis example is available only from %s!',
538+
Format('%s%s%sThis example is available only %s!',
534539
[AAction.Hint, sLineBreak, sLineBreak, ADelphiVer]), mtInformation,
535540
[mbOK], 0);
536541
end;

README.htm

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
</style>
3232
<h1>Delphi VCL StyledComponents <a href="https://opensource.org/licenses/Apache-2.0"><img src="https://img.shields.io/badge/License-Apache%202.0-yellowgreen.svg" alt="License"/></a></h1>
3333
<h2>Components similar to Delphi VCL Buttons, Toolbar, DbNavigator, BindNavigator, ButtonGroup and CategoryButtons with Custom Graphic Styles, and an advanced, full-customizable TaskDialog, also with animations!</h2>
34-
<h3>Actual official version: 3.6.6</h3>
34+
<h3>Actual official version: 3.6.7</h3>
3535
<hr />
3636
<h2>A brief description</h2>
3737
<p><strong>StyledComponents</strong> is a set of VCL components for Delphi (32 and 64 bit) that allow you to overcome the limits imposed by standard VCL components, maintaining 100% compatibility of the properties.</p>
@@ -347,6 +347,10 @@ <h3>Available from Delphi XE6 to Delphi 12 (32bit and 64bit platforms)</h3>
347347
<p><img src="./Images/SupportingDelphi.jpg" alt="Delphi Support"/></p>
348348
<p>Related links: <a href="https://www.embarcadero.com">embarcadero.com</a> - <a href="https://learndelphi.org">learndelphi.org</a></p>
349349
<h3>RELEASE NOTES</h3>
350+
<p>05 Oct 2024: version 3.6.7</p>
351+
<ul>
352+
<li>Fixed StyledAnimatedComponents Packages</li>
353+
</ul>
350354
<p>02 Oct 2024: version 3.6.6</p>
351355
<ul>
352356
<li>Created a new demo comprehensive of all components (StyledComponentsDemo)</li>

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Components similar to Delphi VCL Buttons, Toolbar, DbNavigator, BindNavigator, ButtonGroup and CategoryButtons with Custom Graphic Styles, and an advanced, full-customizable TaskDialog, also with animations!
44

5-
### Actual official version: 3.6.6
5+
### Actual official version: 3.6.7
66

77
---
88
## A brief description
@@ -403,6 +403,9 @@ If you are have Skia4Delphi installed, you can also try the AnimatedTaskDialogDe
403403
Related links: [embarcadero.com](https://www.embarcadero.com) - [learndelphi.org](https://learndelphi.org)
404404

405405
### RELEASE NOTES
406+
05 Oct 2024: version 3.6.7
407+
- Fixed StyledAnimatedComponents Packages
408+
406409
02 Oct 2024: version 3.6.6
407410
- Created a new demo comprehensive of all components (StyledComponentsDemo)
408411
- Removed old single Component Demos

packages/D10/StyledAnimatedComponents.dpk

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,6 @@ package StyledAnimatedComponents;
6060
{$IMPLICITBUILD OFF}
6161

6262
requires
63-
rtl,
64-
vcl,
65-
vclimg,
66-
dbrtl,
67-
vcldb,
6863
StyledComponents,
6964
Skia.Package.VCL,
7065
Skia.Package.RTL,

packages/D10/StyledAnimatedComponents.dproj

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<Base>true</Base>
4141
</PropertyGroup>
4242
<PropertyGroup Condition="'$(Base)'!=''">
43-
<DCC_DcuOutput>..\..\Lib\D10_0\$(Platform)\$(Config)</DCC_DcuOutput>
43+
<DCC_DcuOutput>..\..\Lib\D10\$(Platform)\$(Config)</DCC_DcuOutput>
4444
<DCC_ExeOutput>.\$(Platform)\$(Config)</DCC_ExeOutput>
4545
<DCC_E>false</DCC_E>
4646
<DCC_N>false</DCC_N>
@@ -58,7 +58,6 @@
5858
<DCC_Description>Ethea Styled Animated Components</DCC_Description>
5959
<RuntimeOnlyPackage>true</RuntimeOnlyPackage>
6060
<DllSuffix>D10_0</DllSuffix>
61-
<DCC_OutputNeverBuildDcps>true</DCC_OutputNeverBuildDcps>
6261
</PropertyGroup>
6362
<PropertyGroup Condition="'$(Base_Win32)'!=''">
6463
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
@@ -94,11 +93,6 @@
9493
<DCCReference Include="..\StyledAnimatedButton.dcr"/>
9594
<DCCReference Include="..\StyledAnimatedTaskDialog.dcr"/>
9695
<DCCReference Include="..\StyledAnimatedToolbar.dcr"/>
97-
<DCCReference Include="rtl.dcp"/>
98-
<DCCReference Include="vcl.dcp"/>
99-
<DCCReference Include="vclimg.dcp"/>
100-
<DCCReference Include="dbrtl.dcp"/>
101-
<DCCReference Include="vcldb.dcp"/>
10296
<DCCReference Include="StyledComponents.dcp"/>
10397
<DCCReference Include="Skia.Package.VCL.dcp"/>
10498
<DCCReference Include="Skia.Package.RTL.dcp"/>

0 commit comments

Comments
 (0)