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.12 by h677, Wed Oct 8 13:14:34 2003 UTC revision 1.13 by h677, Thu Oct 9 10:59:07 2003 UTC
# Line 250  type Line 250  type
250                  // 最後に選択されたキャビネット                  // 最後に選択されたキャビネット
251                  FCabinetIndex: Integer;                  FCabinetIndex: Integer;
252    
253            //終了時に確認ダイアログを表示するか
254            FShowDialogForEnd : Boolean;
255    
256                  function GetMainCoolSet(Index: Integer): TCoolSet;                  function GetMainCoolSet(Index: Integer): TCoolSet;
257                  function GetBoardCoolSet(Index: Integer): TCoolSet;                  function GetBoardCoolSet(Index: Integer): TCoolSet;
258                  function GetBrowserCoolSet(Index: Integer): TCoolSet;                  function GetBrowserCoolSet(Index: Integer): TCoolSet;
# Line 452  type Line 455  type
455                  property TimeAdjustSec: Integer read FTimeAdjustSec write FTimeAdjustSec;                  property TimeAdjustSec: Integer read FTimeAdjustSec write FTimeAdjustSec;
456                  property TimeAdjust: Boolean read FTimeAdjust write FTimeAdjust;                  property TimeAdjust: Boolean read FTimeAdjust write FTimeAdjust;
457    
458      //あぼ〜ん          //あぼ〜ん
459      property AbonDeleterlo : Boolean read FAbonDeleterlo write FAbonDeleterlo;      property AbonDeleterlo : Boolean read FAbonDeleterlo write FAbonDeleterlo;
460      property AbonReplaceul : Boolean read FAbonReplaceul write FAbonReplaceul;      property AbonReplaceul : Boolean read FAbonReplaceul write FAbonReplaceul;
461      property PopUpAbon     : Boolean read FPopUpAbon write FPopUpAbon;      property PopUpAbon     : Boolean read FPopUpAbon write FPopUpAbon;
462      property ShowNGLinesNum : Boolean read FShowNGLinesNum write FShowNGLinesNum;          property ShowNGLinesNum : Boolean read FShowNGLinesNum write FShowNGLinesNum;
463      property AddResAnchor : Boolean read FAddResAnchor write FAddResAnchor;          property AddResAnchor : Boolean read FAddResAnchor write FAddResAnchor;
464    
465      // スレッド絞込フィールドの幅      // スレッド絞込フィールドの幅
466      property SelectComboBoxWidth : Integer read FSelectComboBoxWidth write FSelectComboBoxWidth;      property SelectComboBoxWidth : Integer read FSelectComboBoxWidth write FSelectComboBoxWidth;
# Line 468  type Line 471  type
471      // 最後に選択されたキャビネット      // 最後に選択されたキャビネット
472      property CabinetIndex : Integer read FCabinetIndex write FCabinetIndex;      property CabinetIndex : Integer read FCabinetIndex write FCabinetIndex;
473    
474        //終了時に確認ダイアログを表示するか
475        property ShowDialogForEnd : Boolean read FShowDialogForEnd write FShowDialogForEnd;
476    
477    
478          end;          end;
479    
480    
# Line 744  begin Line 751  begin
751    
752                  //削除確認                  //削除確認
753                  FDeleteMsg := ini.ReadBool('Function', 'LogDeleteMessage', True);                  FDeleteMsg := ini.ReadBool('Function', 'LogDeleteMessage', True);
754            //終了確認
755                FShowDialogForEnd := ini.ReadBool('Function','ShowDialogForEnd',false);
756    
757                  //ログフォルダ                  //ログフォルダ
758                  FLogFolder := ini.ReadString('Folder', 'LogFolder', ExtractFilePath(Application.ExeName) + 'Log');                  FLogFolder := ini.ReadString('Folder', 'LogFolder', ExtractFilePath(Application.ExeName) + 'Log');
# Line 831  begin Line 840  begin
840      FShowNGLinesNum := ini.ReadBool('Abon','ShowNGLines',false);      FShowNGLinesNum := ini.ReadBool('Abon','ShowNGLines',false);
841      FAddResAnchor := ini.ReadBool('Abon','AddResAnchor',false);      FAddResAnchor := ini.ReadBool('Abon','AddResAnchor',false);
842    
843    
844          finally          finally
845                  ini.Free;                  ini.Free;
846          end;          end;
# Line 1000  begin Line 1010  begin
1010          ini.WriteBool('Thread', 'OnlyAHundredRes', FOnlyAHundredRes);          ini.WriteBool('Thread', 'OnlyAHundredRes', FOnlyAHundredRes);
1011                  //ログ削除確認                  //ログ削除確認
1012                  ini.WriteBool('Function', 'LogDeleteMessage', FDeleteMsg);                  ini.WriteBool('Function', 'LogDeleteMessage', FDeleteMsg);
1013            //終了確認
1014                ini.WriteBool('Function','ShowDialogForEnd',FShowDialogForEnd);
1015                  //非アクティブ時ポップアップ表示                  //非アクティブ時ポップアップ表示
1016                  ini.WriteBool('Thread', 'UnActivePopup', FUnActivePopup);                  ini.WriteBool('Thread', 'UnActivePopup', FUnActivePopup);
1017                  //レスポップアップヘッダーボールド                  //レスポップアップヘッダーボールド

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13

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