| 422 |
|
|
| 423 |
//スレッド一覧をダウンロード後にソートするか |
//スレッド一覧をダウンロード後にソートするか |
| 424 |
FAutoSortThreadList : Boolean; |
FAutoSortThreadList : Boolean; |
| 425 |
|
|
| 426 |
|
//InputAssistフォームの位置 |
| 427 |
|
FInputAssistFormLeft :Integer; |
| 428 |
|
FInputAssistFormTop :Integer; |
| 429 |
|
//InputAssistフォームのサイズ |
| 430 |
|
FInputAssistFormWidth: Integer; |
| 431 |
|
FInputAssistFormHeight: Integer; |
| 432 |
|
|
| 433 |
function GetMainCoolSet(Index: Integer): TCoolSet; |
function GetMainCoolSet(Index: Integer): TCoolSet; |
| 434 |
function GetBoardCoolSet(Index: Integer): TCoolSet; |
function GetBoardCoolSet(Index: Integer): TCoolSet; |
| 435 |
function GetBrowserCoolSet(Index: Integer): TCoolSet; |
function GetBrowserCoolSet(Index: Integer): TCoolSet; |
| 747 |
property MaxRecordCount : Integer read FMaxRecordCount write FMaxRecordCount; |
property MaxRecordCount : Integer read FMaxRecordCount write FMaxRecordCount; |
| 748 |
//! スレッド一覧ダウンロード後にスレッド名で昇順ソートするか |
//! スレッド一覧ダウンロード後にスレッド名で昇順ソートするか |
| 749 |
property AutoSortThreadList : Boolean read FAutoSortThreadList write FAutoSortThreadList; |
property AutoSortThreadList : Boolean read FAutoSortThreadList write FAutoSortThreadList; |
| 750 |
|
//! InputAssistフォームの位置 |
| 751 |
|
property InputAssistFormLeft :Integer read FInputAssistFormLeft write FInputAssistFormLeft; |
| 752 |
|
property InputAssistFormTop :Integer read FInputAssistFormTop write FInputAssistFormTop; |
| 753 |
|
//! InputAssistフォームのサイズ |
| 754 |
|
property InputAssistFormWidth: Integer read FInputAssistFormWidth write FInputAssistFormWidth; |
| 755 |
|
property InputAssistFormHeight: Integer read FInputAssistFormHeight write FInputAssistFormHeight; |
| 756 |
|
|
| 757 |
end; |
end; |
| 758 |
|
|
| 759 |
|
|
| 1367 |
//履歴の最大保存件数 |
//履歴の最大保存件数 |
| 1368 |
FMaxRecordCount := Max(ini.ReadInteger('Recode', 'Max', 100), 1); |
FMaxRecordCount := Max(ini.ReadInteger('Recode', 'Max', 100), 1); |
| 1369 |
|
|
| 1370 |
|
// 入力アシスト |
| 1371 |
|
FInputAssistFormTop := ini.ReadInteger('IAtWindowsSize', 'Top', 0); |
| 1372 |
|
FInputAssistFormLeft := ini.ReadInteger('IAtWindowsSize', 'Left', 0); |
| 1373 |
|
FInputAssistFormWidth := ini.ReadInteger('IAtWindowsSize', 'Width', 400); |
| 1374 |
|
FInputAssistFormHeight := ini.ReadInteger('IAtWindowsSize', 'Height', 460); |
| 1375 |
|
|
| 1376 |
ini.UpdateFile; |
ini.UpdateFile; |
| 1377 |
finally |
finally |
| 1378 |
ini.Free; |
ini.Free; |
| 1499 |
|
|
| 1500 |
ini.WriteInteger('OptionDialog', 'TabIndex', FOptionDialogTabIndex); |
ini.WriteInteger('OptionDialog', 'TabIndex', FOptionDialogTabIndex); |
| 1501 |
|
|
| 1502 |
|
// 入力アシスト |
| 1503 |
|
ini.WriteInteger('IAtWindowsSize', 'Top', FInputAssistFormTop); |
| 1504 |
|
ini.WriteInteger('IAtWindowsSize', 'Left', FInputAssistFormLeft); |
| 1505 |
|
ini.WriteInteger('IAtWindowsSize', 'Width', FInputAssistFormWidth); |
| 1506 |
|
ini.WriteInteger('IAtWindowsSize', 'Height', FInputAssistFormHeight); |
| 1507 |
|
|
| 1508 |
//ツールバー |
//ツールバー |
| 1509 |
ini.WriteBool('ToolBar', 'StdVisible', FStdToolBarVisible); |
ini.WriteBool('ToolBar', 'StdVisible', FStdToolBarVisible); |
| 1510 |
ini.WriteBool('ToolBar', 'AddressVisible', FAddressBarVisible); |
ini.WriteBool('ToolBar', 'AddressVisible', FAddressBarVisible); |