| 411 |
//スレ絞込みで未確定文字も有効にするか |
//スレ絞込みで未確定文字も有効にするか |
| 412 |
FUseUndecided: Boolean; |
FUseUndecided: Boolean; |
| 413 |
|
|
| 414 |
//Be2ch |
//Be2ch |
| 415 |
//認証用ユーザID・パスワード |
//認証用ユーザID・パスワード |
| 416 |
FBeUserID: String; |
FBeUserID: String; |
| 417 |
FBeCode: String; |
FBeCode: String; |
| 430 |
FInputAssistFormWidth: Integer; |
FInputAssistFormWidth: Integer; |
| 431 |
FInputAssistFormHeight: Integer; |
FInputAssistFormHeight: Integer; |
| 432 |
|
|
| 433 |
|
// Cookieに付加する固定コード |
| 434 |
|
FFixedCookie: String; |
| 435 |
|
|
| 436 |
function GetMainCoolSet(Index: Integer): TCoolSet; |
function GetMainCoolSet(Index: Integer): TCoolSet; |
| 437 |
function GetBoardCoolSet(Index: Integer): TCoolSet; |
function GetBoardCoolSet(Index: Integer): TCoolSet; |
| 438 |
function GetBrowserCoolSet(Index: Integer): TCoolSet; |
function GetBrowserCoolSet(Index: Integer): TCoolSet; |
| 756 |
//! InputAssistフォームのサイズ |
//! InputAssistフォームのサイズ |
| 757 |
property InputAssistFormWidth: Integer read FInputAssistFormWidth write FInputAssistFormWidth; |
property InputAssistFormWidth: Integer read FInputAssistFormWidth write FInputAssistFormWidth; |
| 758 |
property InputAssistFormHeight: Integer read FInputAssistFormHeight write FInputAssistFormHeight; |
property InputAssistFormHeight: Integer read FInputAssistFormHeight write FInputAssistFormHeight; |
| 759 |
|
//! Cookieに付加する固定コード |
| 760 |
|
property FixedCookie: String read FFixedCookie write FFixedCookie; |
| 761 |
|
|
| 762 |
end; |
end; |
| 763 |
|
|
| 794 |
SPAMFILTER_FILE_NAME = 'SpamFilter.ini'; |
SPAMFILTER_FILE_NAME = 'SpamFilter.ini'; |
| 795 |
LANGUAGE_FILE_NAME = 'language.ini'; |
LANGUAGE_FILE_NAME = 'language.ini'; |
| 796 |
INPUTASSIST_FILE_NAME = 'InputAssist.ini'; |
INPUTASSIST_FILE_NAME = 'InputAssist.ini'; |
| 797 |
|
FIXED_COOKIE = 'hana=mogera'; |
| 798 |
|
|
| 799 |
|
|
| 800 |
implementation |
implementation |
| 1378 |
FInputAssistFormWidth := ini.ReadInteger('IAtWindowsSize', 'Width', 400); |
FInputAssistFormWidth := ini.ReadInteger('IAtWindowsSize', 'Width', 400); |
| 1379 |
FInputAssistFormHeight := ini.ReadInteger('IAtWindowsSize', 'Height', 460); |
FInputAssistFormHeight := ini.ReadInteger('IAtWindowsSize', 'Height', 460); |
| 1380 |
|
|
| 1381 |
|
// Cookieに付加する固定コード |
| 1382 |
|
FFixedCookie := ini.ReadString('Cookie', 'fixedString', FIXED_COOKIE); |
| 1383 |
|
|
| 1384 |
ini.UpdateFile; |
ini.UpdateFile; |
| 1385 |
finally |
finally |
| 1386 |
ini.Free; |
ini.Free; |
| 1749 |
|
|
| 1750 |
//履歴の最大保存件数 |
//履歴の最大保存件数 |
| 1751 |
ini.WriteInteger('Recode', 'Max', FMaxRecordCount); |
ini.WriteInteger('Recode', 'Max', FMaxRecordCount); |
| 1752 |
|
// 固定のCookie文字列 |
| 1753 |
|
ini.WriteString('Cookie', 'fixedString', FFixedCookie); |
| 1754 |
|
|
| 1755 |
ini.UpdateFile; |
ini.UpdateFile; |
| 1756 |
finally |
finally |