FMX FirePower

DarkScorpion

Местный
Регистрация
25 Мар 2008
Сообщения
30
Реакции
53
Credits
50
FirePower X by Woll2Woll

for RAD Studio Rio 10.3.3


v 13.0.2.11 Release Notes – Feb 24th, 2021

Now Compatible with RAD Studio 10.4.2 Release
TwwDataGrid - Fixed issue when exporting with Android. It could generate an access violation the second time the export was done.

Version 13.0.2.10 (2/1/2021)

TwwExpander was grayed out in IDE except for Win32. This is corrected.
TwwDataGrid - Fixed problem with using OverrideStyleSettings.Footer.FontSize. Font was scaled too much.
TwwListBox - New ImagesUseEffects property. Set to true to have the listbox use the effects when painting its image. To set the effects see the ItemControls.ImageControl.Effects property

Version 13.0.2.9 (12/19/2020)

TwwTrackBarPanel - Tick Labels previously displayed incorrect text. This problem is fixed
TwwImageControl - Added Stroke, Fill, XRadius, YRadius, Corners, and CornerType properties allowing for a much more flexible and modern presentation of your image.

NB! Просьба не выкладывать на других ресурсах!

Скрытое содержимое могут видеть только пользователи групп(ы): Premium
 

DarkScorpion

Местный
Регистрация
25 Мар 2008
Сообщения
30
Реакции
53
Credits
50

Есть и такой ..

FirePower X by Woll2Woll

for RAD Studio Sydney 10.4.2



v 13.0.2.11 Release Notes – Feb 24th, 2021

Now Compatible with RAD Studio 10.4.2 Release
TwwDataGrid - Fixed issue when exporting with Android. It could generate an access violation the second time the export was done.

Version 13.0.2.10 (2/1/2021)

TwwExpander was grayed out in IDE except for Win32. This is corrected.
TwwDataGrid - Fixed problem with using OverrideStyleSettings.Footer.FontSize. Font was scaled too much.
TwwListBox - New ImagesUseEffects property. Set to true to have the listbox use the effects when painting its image. To set the effects see the ItemControls.ImageControl.Effects property

Version 13.0.2.9 (12/19/2020)

TwwTrackBarPanel - Tick Labels previously displayed incorrect text. This problem is fixed
TwwImageControl - Added Stroke, Fill, XRadius, YRadius, Corners, and CornerType properties allowing for a much more flexible and modern presentation of your image.

NB! Просьба не выкладывать на других ресурсах!

Скрытое содержимое могут видеть только пользователи групп(ы): Premium
 
Последнее редактирование:

DarkScorpion

Местный
Регистрация
25 Мар 2008
Сообщения
30
Реакции
53
Credits
50
FirePower X by Woll2Woll

for RAD Studio Rio 10.3.3

TwwRecordViewPanel - Item configured as switch was incorrectly using ControlAttributes.Checkbox settings instead of switch settings. This problem is fixed.

TwwRecordViewPanel - Non FirePower graphical controls now respect record item's height instead of forcing it to be a single line height.

TwwLookupComboEdit - DropDown ListBox height needed to be 1 pixel larger for screen scales of 125, 175, 225. Otherwise the combo would not show the last item in the list.

NB! Просьба не выкладывать на других ресурсах!



Скрытое содержимое могут видеть только пользователи групп(ы): Premium
 

DarkScorpion

Местный
Регистрация
25 Мар 2008
Сообщения
30
Реакции
53
Credits
50
FirePower X by Woll2Woll

for RAD Studio Rio 10.4.2

TwwRecordViewPanel - Item configured as switch was incorrectly using ControlAttributes.Checkbox settings instead of switch settings. This problem is fixed.

TwwRecordViewPanel - Non FirePower graphical controls now respect record item's height instead of forcing it to be a single line height.

TwwLookupComboEdit - DropDown ListBox height needed to be 1 pixel larger for screen scales of 125, 175, 225. Otherwise the combo would not show the last item in the list.

NB! Просьба не выкладывать на других ресурсах!



Скрытое содержимое могут видеть только пользователи групп(ы): Premium
 

DarkScorpion

Местный
Регистрация
25 Мар 2008
Сообщения
30
Реакции
53
Credits
50
FirePower X от Woll2Woll

для RAD Studio Rio 10.3.3

  • TwwDataGrid - Performance with most recent OS X/BigSur was noticeably slower in painting/scrolling. We recommend adding the following line of code to your project source before the initialize which uses metal graphics and is faster to paint.
begin
FMX.Types.GlobalUseMetal := True; // add this line.
Application.Initialize;
Application.CreateForm(TMainDemoForm, MainDemoForm);
end;

Note that also this build has a new method of painting the default text in the grid that is significantly faster even when metal is not used. If there are any unforeseen issues, you can return to the old behavior by adding this line of code in your main project source.

wwGlobalManager.InfoPowerControlsManager.TextPaintingNew:= false;
Application.Initialize;

Note: You will need to add the units fmx.types to resolve the GlobalUseMetal reference and add fmx.wwmanager to resolve the TextPaintingNew reference.
  • TwwDataGrid - Footer painting would incorrectly clear grid's data rows in some cases such as when the Imagecontrol property was assigned as the background image.. This problem is fixed.
  • TwwLayoutGrid/TwwDataGrid - Retina painting on Mac OS X was not as sharp before for custom controls.
  • TwwLayoutGrid - TwwEdit embedded in layout grid with a different font size (overridestylesettings.fontsize assigned) would paint text too large before in OSX. This problem is fixed.
  • TwwListBox - Right Accessory icon would disappear if changing visibility of controls within the listbox during runtime. This problem is fixed.

NB! Просьба не выкладывать на других ресурсах!

Скрытое содержимое могут видеть только пользователи групп(ы): Premium
 

DarkScorpion

Местный
Регистрация
25 Мар 2008
Сообщения
30
Реакции
53
Credits
50
FirePower X от Woll2Woll

для RAD Studio Rio 10.4.2

  • TwwDataGrid - Performance with most recent OS X/BigSur was noticeably slower in painting/scrolling. We recommend adding the following line of code to your project source before the initialize which uses metal graphics and is faster to paint.
begin
FMX.Types.GlobalUseMetal := True; // add this line.
Application.Initialize;
Application.CreateForm(TMainDemoForm, MainDemoForm);
end;

Note that also this build has a new method of painting the default text in the grid that is significantly faster even when metal is not used. If there are any unforeseen issues, you can return to the old behavior by adding this line of code in your main project source.

wwGlobalManager.InfoPowerControlsManager.TextPaintingNew:= false;
Application.Initialize;

Note: You will need to add the units fmx.types to resolve the GlobalUseMetal reference and add fmx.wwmanager to resolve the TextPaintingNew reference.
  • TwwDataGrid - Footer painting would incorrectly clear grid's data rows in some cases such as when the Imagecontrol property was assigned as the background image.. This problem is fixed.
  • TwwLayoutGrid/TwwDataGrid - Retina painting on Mac OS X was not as sharp before for custom controls.
  • TwwLayoutGrid - TwwEdit embedded in layout grid with a different font size (overridestylesettings.fontsize assigned) would paint text too large before in OSX. This problem is fixed.
  • TwwListBox - Right Accessory icon would disappear if changing visibility of controls within the listbox during runtime. This problem is fixed.

NB! Просьба не выкладывать на других ресурсах!

Скрытое содержимое могут видеть только пользователи групп(ы): Premium
 

DarkScorpion

Местный
Регистрация
25 Мар 2008
Сообщения
30
Реакции
53
Credits
50
Прошу прощения, линки на последнии версии FirePower обновлены, так как раньше, по невнимательности, внутри оказались предпоследние


Скрытое содержимое могут видеть только пользователи групп(ы): Premium
 
  • Like
Реакции: tuc

FireWind

Свой
Регистрация
2 Дек 2005
Сообщения
1,957
Реакции
1,199
Credits
4,009
FirePower X2 v14.0.0.4 for RAD Studio Alexandria
Скрытое содержимое могут видеть только пользователи групп(ы): Premium, Местный
password: dumpz.ws
 
  • Like
Реакции: tuc

FireWind

Свой
Регистрация
2 Дек 2005
Сообщения
1,957
Реакции
1,199
Credits
4,009
FirePower X2 v14.0.0.6 for RAD Studio 11 Alexandria
Скрытое содержимое могут видеть только пользователи групп(ы): Premium, Местный

password: dumpz.ws
 

GuDron

dumpz.ws
Admin
Регистрация
28 Янв 2020
Сообщения
7,552
Реакции
1,435
Credits
24,379
FirePower X2 v14.0.1.5 for RAD Studio 11 Alexandria
Скрытое содержимое могут видеть только пользователи групп(ы): Premium, Местный, Свои
 
  • Like
Реакции: tuc