реструктуризация файлов, добавление вебчатов

This commit is contained in:
PC1\PTyTb
2025-08-14 10:50:33 +03:00
parent 04b5259737
commit 3ac578b6e6
79 changed files with 10256 additions and 1284 deletions
+34
View File
@@ -0,0 +1,34 @@
unit fColorSettings;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Graphics, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls,
FMX.Edit, FMX.Colors, FMX.ListBox, FMX.EditBox, FMX.SpinBox,
FMX.Controls.Presentation;
type
TfrColorSettings = class(TFrame)
cpStyleBlockColor: TColorPanel;
Label40: TLabel;
Label42: TLabel;
ccbStyleBorderColor: TColorComboBox;
Label44: TLabel;
sbStyleBlockPadding: TSpinBox;
sbStyleBlockBorderSize: TSpinBox;
Label48: TLabel;
Label1: TLabel;
ccbBColor: TColorComboBox;
btnChangeBGColor: TButton;
private
{ Private declarations }
public
{ Public declarations }
end;
implementation
{$R *.fmx}
end.