| 412 |
|
|
| 413 |
//2ch言語設定 |
//2ch言語設定 |
| 414 |
F2chLanguage : TStringList; |
F2chLanguage : TStringList; |
| 415 |
|
|
| 416 |
|
//フシアナトラップ設定 |
| 417 |
|
FLocalTrapAtt : Boolean; |
| 418 |
|
FRemoteTrapAtt : Boolean; |
| 419 |
|
|
| 420 |
function GetMainCoolSet(Index: Integer): TCoolSet; |
function GetMainCoolSet(Index: Integer): TCoolSet; |
| 421 |
function GetBoardCoolSet(Index: Integer): TCoolSet; |
function GetBoardCoolSet(Index: Integer): TCoolSet; |
| 708 |
property Gestures : TGestureModel read FGestures write FGestures; |
property Gestures : TGestureModel read FGestures write FGestures; |
| 709 |
//! マウスジェスチャーを使用するかどうか |
//! マウスジェスチャーを使用するかどうか |
| 710 |
property GestureEnabled : Boolean read FGestureEnabled write FGestureEnabled; |
property GestureEnabled : Boolean read FGestureEnabled write FGestureEnabled; |
| 711 |
|
//フシアナトラップ設定 |
| 712 |
|
property LocalTrapAtt : Boolean read FLocalTrapAtt write FLocalTrapAtt; |
| 713 |
|
property RemoteTrapAtt : Boolean read FRemoteTrapAtt write FRemoteTrapAtt; |
| 714 |
|
|
| 715 |
end; |
end; |
| 716 |
|
|
| 717 |
|
|
| 1258 |
|
|
| 1259 |
// マウスジェスチャー |
// マウスジェスチャー |
| 1260 |
FGestureEnabled := ini.ReadBool( 'Guesture', 'Enabled', False ); |
FGestureEnabled := ini.ReadBool( 'Guesture', 'Enabled', False ); |
| 1261 |
|
|
| 1262 |
|
//2ch言語サポ |
| 1263 |
|
F2chSupport := ini.ReadBool('2chSupport', 'Support', False); |
| 1264 |
|
|
| 1265 |
|
//FusianaTrap |
| 1266 |
|
FLocalTrapAtt := ini.ReadBool('Trap', 'LocalTrap', False); |
| 1267 |
|
FRemoteTrapAtt := ini.ReadBool('Trap', 'RemoteTrap', False); |
| 1268 |
|
|
| 1269 |
|
ini.UpdateFile; |
| 1270 |
finally |
finally |
| 1271 |
ini.Free; |
ini.Free; |
| 1272 |
end; |
end; |
| 1596 |
ini.WriteInteger('OptionDialog', 'KuroutTabIndex', FKuroutSettingTabIndex); |
ini.WriteInteger('OptionDialog', 'KuroutTabIndex', FKuroutSettingTabIndex); |
| 1597 |
|
|
| 1598 |
//にちゃん語案内機能 |
//にちゃん語案内機能 |
| 1599 |
ini.WriteBool('2chSupport', 'Support', F2chSupport); |
ini.WriteBool('2chSupport', 'Support', F2chSupport); |
| 1600 |
|
|
| 1601 |
// マウスジェスチャーを使用するかどうか |
// マウスジェスチャーを使用するかどうか |
| 1602 |
ini.WriteBool( 'Guesture', 'Enabled', FGestureEnabled ); |
ini.WriteBool( 'Guesture', 'Enabled', FGestureEnabled ); |
| 1603 |
|
|
| 1604 |
ini.UpdateFile; |
//FusianaTrap |
| 1605 |
|
ini.WriteBool('Trap', 'LocalAtt', FLocalTrapAtt); |
| 1606 |
|
ini.WriteBool('Trap', 'RemoteAtt', FRemoteTrapAtt); |
| 1607 |
|
|
| 1608 |
|
ini.UpdateFile; |
| 1609 |
finally |
finally |
| 1610 |
ini.Free; |
ini.Free; |
| 1611 |
end; |
end; |