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.107 by h677, Sun Feb 26 16:40:51 2006 UTC revision 1.108 by h677, Mon May 29 14:54:52 2006 UTC
# Line 411  type Line 411  type
411                  //スレ絞込みで未確定文字も有効にするか                  //スレ絞込みで未確定文字も有効にするか
412                  FUseUndecided: Boolean;                  FUseUndecided: Boolean;
413    
414                  //Be2ch                                  //Be2ch
415                  //認証用ユーザID・パスワード                  //認証用ユーザID・パスワード
416                  FBeUserID: String;                  FBeUserID: String;
417                  FBeCode: String;                  FBeCode: String;
# Line 430  type Line 430  type
430                  FInputAssistFormWidth: Integer;                  FInputAssistFormWidth: Integer;
431                  FInputAssistFormHeight: Integer;                  FInputAssistFormHeight: Integer;
432    
433                    // Cookieに付加する固定コード
434                    FFixedCookie: String;
435    
436                  function GetMainCoolSet(Index: Integer): TCoolSet;                  function GetMainCoolSet(Index: Integer): TCoolSet;
437                  function GetBoardCoolSet(Index: Integer): TCoolSet;                  function GetBoardCoolSet(Index: Integer): TCoolSet;
438                  function GetBrowserCoolSet(Index: Integer): TCoolSet;                  function GetBrowserCoolSet(Index: Integer): TCoolSet;
# Line 753  type Line 756  type
756                  //! InputAssistフォームのサイズ                  //! InputAssistフォームのサイズ
757                  property InputAssistFormWidth: Integer read FInputAssistFormWidth write FInputAssistFormWidth;                  property InputAssistFormWidth: Integer read FInputAssistFormWidth write FInputAssistFormWidth;
758                  property InputAssistFormHeight: Integer read FInputAssistFormHeight write FInputAssistFormHeight;                  property InputAssistFormHeight: Integer read FInputAssistFormHeight write FInputAssistFormHeight;
759                    //! Cookieに付加する固定コード
760                    property FixedCookie: String read FFixedCookie write FFixedCookie;
761    
762  end;  end;
763    
# Line 789  const Line 794  const
794          SPAMFILTER_FILE_NAME                                    = 'SpamFilter.ini';          SPAMFILTER_FILE_NAME                                    = 'SpamFilter.ini';
795                  LANGUAGE_FILE_NAME    = 'language.ini';                  LANGUAGE_FILE_NAME    = 'language.ini';
796          INPUTASSIST_FILE_NAME   = 'InputAssist.ini';          INPUTASSIST_FILE_NAME   = 'InputAssist.ini';
797        FIXED_COOKIE =           'hana=mogera';
798    
799    
800  implementation  implementation
# Line 1373  begin Line 1378  begin
1378                  FInputAssistFormWidth := ini.ReadInteger('IAtWindowsSize', 'Width', 400);                  FInputAssistFormWidth := ini.ReadInteger('IAtWindowsSize', 'Width', 400);
1379                  FInputAssistFormHeight := ini.ReadInteger('IAtWindowsSize', 'Height', 460);                  FInputAssistFormHeight := ini.ReadInteger('IAtWindowsSize', 'Height', 460);
1380    
1381                    // Cookieに付加する固定コード
1382                    FFixedCookie := ini.ReadString('Cookie', 'fixedString', FIXED_COOKIE);
1383    
1384                  ini.UpdateFile;                  ini.UpdateFile;
1385          finally          finally
1386                  ini.Free;                  ini.Free;
# Line 1741  begin Line 1749  begin
1749    
1750                  //履歴の最大保存件数                  //履歴の最大保存件数
1751                  ini.WriteInteger('Recode', 'Max', FMaxRecordCount);                  ini.WriteInteger('Recode', 'Max', FMaxRecordCount);
1752                    // 固定のCookie文字列
1753            ini.WriteString('Cookie', 'fixedString', FFixedCookie);
1754    
1755                  ini.UpdateFile;                  ini.UpdateFile;
1756          finally          finally

Legend:
Removed from v.1.107  
changed lines
  Added in v.1.108

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