Добавил окна добавления интеграций с ОБС

This commit is contained in:
PC1\PTyTb
2025-08-06 09:21:43 +03:00
parent 7e77775cd4
commit d68064187d
16 changed files with 1518 additions and 1012 deletions
+29
View File
@@ -0,0 +1,29 @@
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.