31 lines
607 B
Plaintext
31 lines
607 B
Plaintext
unit fFontSettings;
|
|
|
|
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.ListBox, FMX.Colors, FMX.Edit, FMX.EditBox, FMX.SpinBox,
|
|
FMX.Controls.Presentation;
|
|
|
|
type
|
|
TfrFontSettings = class(TFrame)
|
|
Label41: TLabel;
|
|
sbFontSize: TSpinBox;
|
|
ccbFontColor: TColorComboBox;
|
|
Label49: TLabel;
|
|
cbFontStyleDefault: TComboBox;
|
|
Label46: TLabel;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$R *.fmx}
|
|
|
|
end.
|