CEF4Delphi/demos/Delphi_VCL/MiniBrowser/uPreferences.pas

58 lines
1.3 KiB
ObjectPascal

unit uPreferences;
{$I cef.inc}
interface
uses
{$IFDEF DELPHI16_UP}
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Samples.Spin, Vcl.ExtCtrls;
{$ELSE}
Windows, Messages, SysUtils, Variants, Classes, Graphics,
Controls, Forms, Dialogs, StdCtrls, Spin, ExtCtrls;
{$ENDIF}
type
TPreferencesFrm = class(TForm)
GroupBox1: TGroupBox;
ProxyTypeCbx: TComboBox;
ProxyTypeLbl: TLabel;
ProxyServerLbl: TLabel;
ProxyServerEdt: TEdit;
ProxyPortLbl: TLabel;
ProxyPortEdt: TEdit;
ProxyUsernameLbl: TLabel;
ProxyUsernameEdt: TEdit;
ProxyPasswordLbl: TLabel;
ProxyPasswordEdt: TEdit;
ProxyScriptURLEdt: TEdit;
ProxyScriptURLLbl: TLabel;
ProxyByPassListEdt: TEdit;
ProxyByPassListLbl: TLabel;
GroupBox2: TGroupBox;
HeaderNameEdt: TEdit;
HeaderNameLbl: TLabel;
HeaderValueEdt: TEdit;
HeaderValueLbl: TLabel;
ProxySchemeCb: TComboBox;
MaxConnectionsPerProxyLbl: TLabel;
MaxConnectionsPerProxyEdt: TSpinEdit;
Panel1: TPanel;
Button1: TButton;
Button2: TButton;
private
{ Private declarations }
public
{ Public declarations }
end;
var
PreferencesFrm: TPreferencesFrm;
implementation
{$R *.dfm}
end.