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.70 by h677, Sun Sep 19 05:43:09 2004 UTC revision 1.71 by genyakun, Sun Sep 26 14:39:49 2004 UTC
# Line 392  type Line 392  type
392    
393                  //Tab自動保存                  //Tab自動保存
394                  FTabAutoLoadSave : Boolean;                  FTabAutoLoadSave : Boolean;
395    
396                    //にちゃん語案内サポート機能
397                    F2chSupport : Boolean;
398    
399                  // エディタ                  // エディタ
400                  FSpaceToNBSP    : Boolean;      ///< 半角スペース、Tab を &nbsp; に置換                  FSpaceToNBSP    : Boolean;      ///< 半角スペース、Tab を &nbsp; に置換
401                  FAmpToCharRef   : Boolean;      ///< '&' を &amp; に置換                  FAmpToCharRef   : Boolean;      ///< '&' を &amp; に置換
# Line 686  type Line 690  type
690                  property SelectInterval : Integer       read FSelectInterval    write FSelectInterval;                  property SelectInterval : Integer       read FSelectInterval    write FSelectInterval;
691                  //Tab保存                  //Tab保存
692                  property TabAutoLoadSave: Boolean           read FTabAutoLoadSave      write FTabAutoLoadSave;                  property TabAutoLoadSave: Boolean           read FTabAutoLoadSave      write FTabAutoLoadSave;
693                    property GengoSupport : Boolean         read F2chSupport        write F2chSupport;
694                  property KuroutSettingTabIndex: Integer read FKuroutSettingTabIndex write FKuroutSettingTabIndex;                  property KuroutSettingTabIndex: Integer read FKuroutSettingTabIndex write FKuroutSettingTabIndex;
695  end;  end;
696    
# Line 1555  begin Line 1560  begin
1560                  ini.WriteBool( 'Editor', 'SpaceToNBSP', FSpaceToNBSP );                  ini.WriteBool( 'Editor', 'SpaceToNBSP', FSpaceToNBSP );
1561                  ini.WriteBool( 'Editor', 'AmpToCharRef', FAmpToCharRef );                  ini.WriteBool( 'Editor', 'AmpToCharRef', FAmpToCharRef );
1562    
1563                    //タブ自動保存
1564                  ini.WriteBool('TabAuto', 'TabAutoLoadSave', FTabAutoLoadSave);                  ini.WriteBool('TabAuto', 'TabAutoLoadSave', FTabAutoLoadSave);
1565                    //詳細設定
1566                  ini.WriteInteger('OptionDialog', 'KuroutTabIndex', FKuroutSettingTabIndex);                  ini.WriteInteger('OptionDialog', 'KuroutTabIndex', FKuroutSettingTabIndex);
1567    
1568                  ini.UpdateFile;                  //にちゃん語案内機能
1569                    ini.WriteBool('2chSupport', 'Support', F2chSupport);
1570    
1571                    ini.UpdateFile;
1572          finally          finally
1573                  ini.Free;                  ini.Free;
1574          end;          end;

Legend:
Removed from v.1.70  
changed lines
  Added in v.1.71

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