Develop and Download Open Source Software

Browse CVS Repository

Diff of /gikonavigoeson/gikonavi/Setting.pas

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.78 by h677, Tue Oct 19 13:00:54 2004 UTC revision 1.79 by yoffy, Wed Oct 20 18:25:00 2004 UTC
# Line 35  const Line 35  const
35  //      DOLIB_LOGIN_URL     = '/~tora3n2c/futen.cgi';  //      DOLIB_LOGIN_URL     = '/~tora3n2c/futen.cgi';
36          MAX_POPUP_RES : Integer = 10;          MAX_POPUP_RES : Integer = 10;
37          GESTURE_FILE_NAME                                                       = 'Gestures.ini';          GESTURE_FILE_NAME                                                       = 'Gestures.ini';
38            SPAMFILTER_FILE_NAME                                    = 'SpamFilter.ini';
39  type  type
40          TGikoTabPosition = (gtpTop, gtpBottom);                                                         // タブ位置          TGikoTabPosition = (gtpTop, gtpBottom);                                                         // タブ位置
41          TGikoTabAppend = (gtaFirst, gtpLast);                                                                   // タブ追加位置          TGikoTabAppend = (gtaFirst, gtpLast);                                                                   // タブ追加位置
# Line 410  type Line 411  type
411                  //! マウスジェスチャーを使用するかどうか                  //! マウスジェスチャーを使用するかどうか
412                  FGestureEnabled : Boolean;                  FGestureEnabled : Boolean;
413    
414                  //2ch言語設定                                                                  //2ch言語設定
415                  F2chLanguage : TStringList;                                                                  F2chLanguage : TStringList;
416    
417                  //フシアナトラップ設定                  //フシアナトラップ設定
418                  FLocalTrapAtt : Boolean;                  FLocalTrapAtt : Boolean;
# Line 481  type Line 482  type
482                  function GetSambaFileName: string;                  function GetSambaFileName: string;
483                  function GetIgnoreFileName: string;                  function GetIgnoreFileName: string;
484                  function GetGestureFileName : string;                  function GetGestureFileName : string;
485                    function GetSpamFilterFileName : string;
486    
487                  //受信バッファサイズ                  //受信バッファサイズ
488                  property RecvBufferSize: Integer read FRecvBufferSize write FRecvBufferSize;                  property RecvBufferSize: Integer read FRecvBufferSize write FRecvBufferSize;
# Line 2046  begin Line 2048  begin
2048          Result := GetConfigDir + GESTURE_FILE_NAME;          Result := GetConfigDir + GESTURE_FILE_NAME;
2049  end;  end;
2050    
2051    //! スパムフィルタ学習履歴ファイルパス
2052    function TSetting.GetSpamFilterFileName: string;
2053    begin
2054            Result := GetConfigDir + SPAMFILTER_FILE_NAME;
2055    end;
2056    
2057  end.  end.
2058    
2059    

Legend:
Removed from v.1.78  
changed lines
  Added in v.1.79

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26