uCall.pas
上传用户:axbxcx
上传日期:2009-10-29
资源大小:15k
文件大小:2k
源码类别:

TAPI编程

开发平台:

Delphi

  1. unit uCall;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, StdCtrls, Buttons, ExtCtrls;
  6. const
  7.   ConfigFile     = 'NetPhone.cfx';
  8.   SocksProxyFile = 'SocksProxy.txt';
  9.   HttpProxyFile  = 'HttpProxy.txt';
  10.   HistoryCall    = 'HistoryCall.txt';
  11.   
  12. type
  13.   TFormCall = class(TForm)
  14.     Label1: TLabel;
  15.     Panel1: TPanel;
  16.     Label3: TLabel;
  17.     Label5: TLabel;
  18.     Label6: TLabel;
  19.     EdSocksUser: TEdit;
  20.     EdSocksPass: TEdit;
  21.     RbSocks4: TRadioButton;
  22.     RbSocks5: TRadioButton;
  23.     CkSocks: TCheckBox;
  24.     CkHttp: TCheckBox;
  25.     Panel2: TPanel;
  26.     Label7: TLabel;
  27.     Label9: TLabel;
  28.     Label10: TLabel;
  29.     EdHttpUser: TEdit;
  30.     EdHttpPass: TEdit;
  31.     BtStart: TBitBtn;
  32.     BtCancel: TBitBtn;
  33.     BtAdd: TBitBtn;
  34.     EdIP: TComboBox;
  35.     EdSocksIP: TComboBox;
  36.     EdHttpIP: TComboBox;
  37.     procedure BtAddClick(Sender: TObject);
  38.     procedure FormCreate(Sender: TObject);
  39.   private
  40.     { Private declarations }
  41.   public
  42.     { Public declarations }
  43.   end;
  44. implementation
  45. {$R *.dfm}
  46. procedure TFormCall.BtAddClick(Sender: TObject);
  47. begin
  48.   if Trim(EdIP.Text) <> '' then EdIP.Items.Insert(0, EdIP.Text); 
  49. end;
  50. procedure TFormCall.FormCreate(Sender: TObject);
  51. begin
  52.   if FileExists(SocksProxyFile) then EdSocksIP.Items.LoadFromFile(SocksProxyFile);
  53.   if FileExists(HttpProxyFile) then EdHttpIP.Items.LoadFromFile(HttpProxyFile);
  54.   if FileExists(HistoryCall) then EdIP.Items.LoadFromFile(HistoryCall);
  55. end;
  56. end.