| 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; |
| 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 |
|
|
| 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 |
| 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 |