2017-03-15 14:53:45 +01:00
|
|
|
unit uPreferences;
|
|
|
|
|
2017-03-15 15:00:07 +01:00
|
|
|
{$I cef.inc}
|
|
|
|
|
2017-03-15 14:53:45 +01:00
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2017-03-15 15:00:07 +01:00
|
|
|
{$IFDEF DELPHI16_UP}
|
2017-03-15 14:53:45 +01:00
|
|
|
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
|
2019-10-04 15:13:24 +02:00
|
|
|
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Samples.Spin, Vcl.ExtCtrls;
|
2017-03-15 15:00:07 +01:00
|
|
|
{$ELSE}
|
|
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics,
|
2019-10-04 15:13:24 +02:00
|
|
|
Controls, Forms, Dialogs, StdCtrls, Spin, ExtCtrls;
|
2017-03-15 15:00:07 +01:00
|
|
|
{$ENDIF}
|
2017-03-15 14:53:45 +01:00
|
|
|
|
|
|
|
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;
|
2017-12-30 09:54:26 +01:00
|
|
|
ProxySchemeCb: TComboBox;
|
2019-08-29 12:28:13 +02:00
|
|
|
MaxConnectionsPerProxyLbl: TLabel;
|
|
|
|
MaxConnectionsPerProxyEdt: TSpinEdit;
|
2019-10-04 15:13:24 +02:00
|
|
|
Panel1: TPanel;
|
|
|
|
Button1: TButton;
|
|
|
|
Button2: TButton;
|
2017-03-15 14:53:45 +01:00
|
|
|
private
|
|
|
|
{ Private declarations }
|
|
|
|
public
|
|
|
|
{ Public declarations }
|
|
|
|
end;
|
|
|
|
|
|
|
|
var
|
|
|
|
PreferencesFrm: TPreferencesFrm;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
{$R *.dfm}
|
|
|
|
|
|
|
|
end.
|