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.66 by yoffy, Thu Sep 9 03:18:20 2004 UTC revision 1.67 by h677, Wed Sep 15 14:52:00 2004 UTC
# Line 398  type Line 398  type
398    
399                  //ブラウザタブ非表示の時のスレ一覧でのカーソルキー移動の無反応時間                  //ブラウザタブ非表示の時のスレ一覧でのカーソルキー移動の無反応時間
400                  FSelectInterval : Integer;                  FSelectInterval : Integer;
401    
402                    //KuroutSettingTab 詳細設定タブのActiveTab
403                    FKuroutSettingTabIndex: Integer;
404                                    
405                  function GetMainCoolSet(Index: Integer): TCoolSet;                  function GetMainCoolSet(Index: Integer): TCoolSet;
406                  function GetBoardCoolSet(Index: Integer): TCoolSet;                  function GetBoardCoolSet(Index: Integer): TCoolSet;
# Line 681  type Line 684  type
684                  property AmpToCharRef   : Boolean       read FAmpToCharRef      write FAmpToCharRef;                  property AmpToCharRef   : Boolean       read FAmpToCharRef      write FAmpToCharRef;
685    
686                  property SelectInterval : Integer       read FSelectInterval    write FSelectInterval;                  property SelectInterval : Integer       read FSelectInterval    write FSelectInterval;
687                  //Tab保存                  //Tab保存
688                  property TabAutoLoadSave: Boolean           read FTabAutoLoadSave      write FTabAutoLoadSave;                  property TabAutoLoadSave: Boolean           read FTabAutoLoadSave      write FTabAutoLoadSave;
689                    property KuroutSettingTabIndex: Integer read FKuroutSettingTabIndex write FKuroutSettingTabIndex;
690  end;  end;
691    
692    
# Line 1221  begin Line 1225  begin
1225                  FSpaceToNBSP    := ini.ReadBool( 'Editor', 'SpaceToNBSP', True );                  FSpaceToNBSP    := ini.ReadBool( 'Editor', 'SpaceToNBSP', True );
1226                  FAmpToCharRef   := ini.ReadBool( 'Editor', 'AmpToCharRef', False );                  FAmpToCharRef   := ini.ReadBool( 'Editor', 'AmpToCharRef', False );
1227    
1228                  //Tab自動保存、読み込み                  //Tab自動保存、読み込み
1229                  FTabAutoLoadSave    := ini.ReadBool('TabAuto', 'TabAutoLoadSave', False);                  FTabAutoLoadSave    := ini.ReadBool('TabAuto', 'TabAutoLoadSave', False);
1230    
1231                    FKuroutSettingTabIndex := ini.ReadInteger('OptionDialog', 'KuroutTabIndex' , 0);
1232    
1233    
1234          finally          finally
# Line 1549  begin Line 1555  begin
1555                  ini.WriteBool( 'Editor', 'SpaceToNBSP', FSpaceToNBSP );                  ini.WriteBool( 'Editor', 'SpaceToNBSP', FSpaceToNBSP );
1556                  ini.WriteBool( 'Editor', 'AmpToCharRef', FAmpToCharRef );                  ini.WriteBool( 'Editor', 'AmpToCharRef', FAmpToCharRef );
1557    
1558                  ini.WriteBool('TabAuto', 'TabAutoLoadSave', FTabAutoLoadSave);                  ini.WriteBool('TabAuto', 'TabAutoLoadSave', FTabAutoLoadSave);
1559    
1560                    ini.WriteInteger('OptionDialog', 'KuroutTabIndex', FKuroutSettingTabIndex);
1561    
1562                  ini.UpdateFile;                  ini.UpdateFile;
1563          finally          finally

Legend:
Removed from v.1.66  
changed lines
  Added in v.1.67

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