Skip to content

Commit 783c099

Browse files
version 3.7.3
- Fixed Animated TaskDialog Form
1 parent cb23a15 commit 783c099

File tree

5 files changed

+36
-3
lines changed

5 files changed

+36
-3
lines changed

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.7.2</h3>
34+
<h3>Actual official version: 3.7.3</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>08 Nov 2024: version 3.7.3</p>
351+
<ul>
352+
<li>Fixed Animated TaskDialog Form</li>
353+
</ul>
350354
<p>08 Nov 2024: version 3.7.2</p>
351355
<ul>
352356
<li>Added UseAnimations in StyledTaskDialog component</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.7.2
5+
### Actual official version: 3.7.3
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+
08 Nov 2024: version 3.7.3
407+
- Fixed Animated TaskDialog Form
408+
406409
08 Nov 2024: version 3.7.2
407410
- Added UseAnimations in StyledTaskDialog component
408411
- Fixed use of StyledTaskDialog component
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,28 @@
11
inherited StyledTaskDialogAnimatedForm: TStyledTaskDialogAnimatedForm
22
Caption = 'StyledTaskDialogAnimatedForm'
33
TextHeight = 15
4+
inherited FooterPanel: TPanel
5+
inherited FooterIconPanel: TPanel
6+
object SkFooterAnimatedImage: TSkAnimatedImage
7+
Left = 0
8+
Top = 0
9+
Width = 25
10+
Height = 25
11+
Align = alTop
12+
end
13+
end
14+
end
15+
inherited CenterPanel: TPanel
16+
inherited ImagePanel: TPanel
17+
inherited IconContainer: TPanel
18+
object SkAnimatedImage: TSkAnimatedImage
19+
Left = 0
20+
Top = 0
21+
Width = 64
22+
Height = 64
23+
Align = alClient
24+
end
25+
end
26+
end
27+
end
428
end

source/Skia.Vcl.StyledTaskDialogAnimatedUnit.pas

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ interface
5858

5959
type
6060
TStyledTaskDialogAnimatedForm = class(TStyledTaskDialogForm)
61+
SkFooterAnimatedImage: TSkAnimatedImage;
62+
SkAnimatedImage: TSkAnimatedImage;
6163
private
6264
procedure InternalLoadImage(const AAnimatedImage: TSkAnimatedImage;
6365
const AImageIndex: TImageIndex; AImageName: string);

source/Vcl.ButtonStylesAttributes.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ interface
5555
;
5656

5757
const
58-
StyledComponentsVersion = '3.7.2';
58+
StyledComponentsVersion = '3.7.3';
5959
DEFAULT_RADIUS = 6;
6060
RESOURCE_SHIELD_ICON = 'STYLED_BUTTON_SHIELD_ADMIN';
6161
DEFAULT_MAX_BADGE_VALUE = 99;

0 commit comments

Comments
 (0)