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.110 by h677, Sun Aug 6 03:17:02 2006 UTC revision 1.111 by h677, Sun Aug 6 13:20:45 2006 UTC
# Line 434  type Line 434  type
434                  FFixedCookie: String;                  FFixedCookie: String;
435          //! リンク移動履歴の保持数          //! リンク移動履歴の保持数
436          FMoveHistorySize : Integer;          FMoveHistorySize : Integer;
437            //! 最小化したときにタスクトレイに格納するか
438            FStoredTaskTray : Boolean;
439                  function GetMainCoolSet(Index: Integer): TCoolSet;                  function GetMainCoolSet(Index: Integer): TCoolSet;
440                  function GetBoardCoolSet(Index: Integer): TCoolSet;                  function GetBoardCoolSet(Index: Integer): TCoolSet;
441                  function GetBrowserCoolSet(Index: Integer): TCoolSet;                  function GetBrowserCoolSet(Index: Integer): TCoolSet;
# Line 765  type Line 766  type
766                  property InputAssistFormHeight: Integer read FInputAssistFormHeight write FInputAssistFormHeight;                  property InputAssistFormHeight: Integer read FInputAssistFormHeight write FInputAssistFormHeight;
767                  //! Cookieに付加する固定コード                  //! Cookieに付加する固定コード
768                  property FixedCookie: String read FFixedCookie write FFixedCookie;                  property FixedCookie: String read FFixedCookie write FFixedCookie;
769          // リンク移動履歴の保持数          //! リンク移動履歴の保持数
770          property MoveHistorySize : Integer read FMoveHistorySize write SetMoveHistorySize;          property MoveHistorySize : Integer read FMoveHistorySize write SetMoveHistorySize;
771            //! 最小化時にタスクトレイに格納するか
772            property StoredTaskTray : Boolean read FStoredTaskTray write FStoredTaskTray;
773  end;  end;
774    
775    
# Line 1393  begin Line 1395  begin
1395          // リンク移動履歴の最大保持数          // リンク移動履歴の最大保持数
1396          FMoveHistorySize := ini.ReadInteger('MoveHisotry', 'Max', 20);          FMoveHistorySize := ini.ReadInteger('MoveHisotry', 'Max', 20);
1397    
1398            FStoredTaskTray := ini.ReadBool('Function', 'StroedTaskTray', false);
1399    
1400                  ini.UpdateFile;                  ini.UpdateFile;
1401          finally          finally
1402                  ini.Free;                  ini.Free;
# Line 1767  begin Line 1771  begin
1771          // リンク移動履歴の最大保持数          // リンク移動履歴の最大保持数
1772          ini.WriteInteger('MoveHisotry', 'Max', FMoveHistorySize);          ini.WriteInteger('MoveHisotry', 'Max', FMoveHistorySize);
1773    
1774            ini.WriteBool('Function', 'StroedTaskTray', FStoredTaskTray);
1775    
1776                  ini.UpdateFile;                  ini.UpdateFile;
1777          finally          finally
1778                  ini.Free;                  ini.Free;

Legend:
Removed from v.1.110  
changed lines
  Added in v.1.111

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