56 lines
1.2 KiB
ObjectPascal
56 lines
1.2 KiB
ObjectPascal
unit fSettings;
|
|
|
|
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.Controls.Presentation, FMX.Edit;
|
|
|
|
type
|
|
TfrSettings = class(TFrame)
|
|
GroupBox3: TGroupBox;
|
|
Label1: TLabel;
|
|
Label2: TLabel;
|
|
Label3: TLabel;
|
|
Label22: TLabel;
|
|
edtBotName: TEdit;
|
|
edtBotToken: TEdit;
|
|
edtChannel: TEdit;
|
|
btnGetToken: TButton;
|
|
edtBotClientID: TEdit;
|
|
btnGetClientID: TButton;
|
|
btnOpenStream: TButton;
|
|
btnGetTokenStreamer: TButton;
|
|
edtBotTokenStreamer: TEdit;
|
|
Label53: TLabel;
|
|
GroupBox22: TGroupBox;
|
|
btnDAGetCode: TButton;
|
|
Label63: TLabel;
|
|
edtDAClientID: TEdit;
|
|
Label64: TLabel;
|
|
edtDAClientSecret: TEdit;
|
|
Label65: TLabel;
|
|
edtDARedirectURL: TEdit;
|
|
edtDACode: TEdit;
|
|
Label66: TLabel;
|
|
btnDAStart: TButton;
|
|
btnGetDADef: TButton;
|
|
cbDAAutoLogin: TCheckBox;
|
|
cbTTVAutoLogin: TCheckBox;
|
|
btnOpenRomaning: TButton;
|
|
btnImportSettings: TButton;
|
|
btnExportSettings: TButton;
|
|
btnMaster: TButton;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$R *.fmx}
|
|
|
|
end.
|