| 447 |
FReplaceDat: Boolean; |
FReplaceDat: Boolean; |
| 448 |
//! sent.iniファイルのサイズ(単位MB) |
//! sent.iniファイルのサイズ(単位MB) |
| 449 |
FSentIniFileSize: Integer; |
FSentIniFileSize: Integer; |
| 450 |
|
//! リンクURL取得の対象拡張子 |
| 451 |
|
FExtList: String; |
| 452 |
function GetMainCoolSet(Index: Integer): TCoolSet; |
function GetMainCoolSet(Index: Integer): TCoolSet; |
| 453 |
function GetBoardCoolSet(Index: Integer): TCoolSet; |
function GetBoardCoolSet(Index: Integer): TCoolSet; |
| 454 |
function GetBrowserCoolSet(Index: Integer): TCoolSet; |
function GetBrowserCoolSet(Index: Integer): TCoolSet; |
| 805 |
property ReplaceDat: Boolean read FReplaceDat write FReplaceDat; |
property ReplaceDat: Boolean read FReplaceDat write FReplaceDat; |
| 806 |
//! sent.iniファイルのサイズ(単位MB) |
//! sent.iniファイルのサイズ(単位MB) |
| 807 |
property SentIniFileSize: Integer read FSentIniFileSize write FSentIniFileSize; |
property SentIniFileSize: Integer read FSentIniFileSize write FSentIniFileSize; |
| 808 |
|
//! リンクURL取得の対象拡張子 |
| 809 |
|
property ExtList: String read FExtList write FExtList; |
| 810 |
|
|
| 811 |
end; |
end; |
| 812 |
|
|
| 1294 |
end; |
end; |
| 1295 |
|
|
| 1296 |
FSentIniFileSize := ini.ReadInteger('Function', 'SentIniFileSize', 3); |
FSentIniFileSize := ini.ReadInteger('Function', 'SentIniFileSize', 3); |
| 1297 |
|
FExtList := ini.ReadString('Function', 'ExtList', '*.gif;*.jpg;*.jpeg;*.png;*.zip;*.rar'); |
| 1298 |
ini.UpdateFile; |
ini.UpdateFile; |
| 1299 |
finally |
finally |
| 1300 |
ini.Free; |
ini.Free; |
| 1675 |
ini.WriteBool('Thread', 'AddKeywordLink', FAddKeywordLink); |
ini.WriteBool('Thread', 'AddKeywordLink', FAddKeywordLink); |
| 1676 |
ini.WriteBool('Thread', 'ReplaceDat', FReplaceDat); |
ini.WriteBool('Thread', 'ReplaceDat', FReplaceDat); |
| 1677 |
ini.WriteInteger('Function', 'SentIniFileSize', FSentIniFileSize); |
ini.WriteInteger('Function', 'SentIniFileSize', FSentIniFileSize); |
| 1678 |
|
ini.WriteString('Function', 'ExtList', FExtList); |
| 1679 |
ini.UpdateFile; |
ini.UpdateFile; |
| 1680 |
finally |
finally |
| 1681 |
ini.Free; |
ini.Free; |