35 lines
766 B
Plaintext
35 lines
766 B
Plaintext
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.
|