| 434 |
FFixedCookie: String; |
FFixedCookie: String; |
| 435 |
//! リンク移動履歴の保持数 |
//! リンク移動履歴の保持数 |
| 436 |
FMoveHistorySize : Integer; |
FMoveHistorySize : Integer; |
| 437 |
|
//! 最小化したときにタスクトレイに格納するか |
| 438 |
|
FStoredTaskTray : Boolean; |
| 439 |
function GetMainCoolSet(Index: Integer): TCoolSet; |
function GetMainCoolSet(Index: Integer): TCoolSet; |
| 440 |
function GetBoardCoolSet(Index: Integer): TCoolSet; |
function GetBoardCoolSet(Index: Integer): TCoolSet; |
| 441 |
function GetBrowserCoolSet(Index: Integer): TCoolSet; |
function GetBrowserCoolSet(Index: Integer): TCoolSet; |
| 766 |
property InputAssistFormHeight: Integer read FInputAssistFormHeight write FInputAssistFormHeight; |
property InputAssistFormHeight: Integer read FInputAssistFormHeight write FInputAssistFormHeight; |
| 767 |
//! Cookieに付加する固定コード |
//! Cookieに付加する固定コード |
| 768 |
property FixedCookie: String read FFixedCookie write FFixedCookie; |
property FixedCookie: String read FFixedCookie write FFixedCookie; |
| 769 |
// リンク移動履歴の保持数 |
//! リンク移動履歴の保持数 |
| 770 |
property MoveHistorySize : Integer read FMoveHistorySize write SetMoveHistorySize; |
property MoveHistorySize : Integer read FMoveHistorySize write SetMoveHistorySize; |
| 771 |
|
//! 最小化時にタスクトレイに格納するか |
| 772 |
|
property StoredTaskTray : Boolean read FStoredTaskTray write FStoredTaskTray; |
| 773 |
end; |
end; |
| 774 |
|
|
| 775 |
|
|
| 1395 |
// リンク移動履歴の最大保持数 |
// リンク移動履歴の最大保持数 |
| 1396 |
FMoveHistorySize := ini.ReadInteger('MoveHisotry', 'Max', 20); |
FMoveHistorySize := ini.ReadInteger('MoveHisotry', 'Max', 20); |
| 1397 |
|
|
| 1398 |
|
FStoredTaskTray := ini.ReadBool('Function', 'StroedTaskTray', false); |
| 1399 |
|
|
| 1400 |
ini.UpdateFile; |
ini.UpdateFile; |
| 1401 |
finally |
finally |
| 1402 |
ini.Free; |
ini.Free; |
| 1771 |
// リンク移動履歴の最大保持数 |
// リンク移動履歴の最大保持数 |
| 1772 |
ini.WriteInteger('MoveHisotry', 'Max', FMoveHistorySize); |
ini.WriteInteger('MoveHisotry', 'Max', FMoveHistorySize); |
| 1773 |
|
|
| 1774 |
|
ini.WriteBool('Function', 'StroedTaskTray', FStoredTaskTray); |
| 1775 |
|
|
| 1776 |
ini.UpdateFile; |
ini.UpdateFile; |
| 1777 |
finally |
finally |
| 1778 |
ini.Free; |
ini.Free; |