| 272 |
|
|
| 273 |
//終了時に確認ダイアログを表示するか |
//終了時に確認ダイアログを表示するか |
| 274 |
FShowDialogForEnd : Boolean; |
FShowDialogForEnd : Boolean; |
| 275 |
|
//取得レス数とスレッドのレス数が異なったときに通常背景色と違った色の背景色を使用するか |
| 276 |
|
FUseOddColorOddResNum: Boolean; |
| 277 |
|
FOddColor: TColor; |
| 278 |
|
|
| 279 |
function GetMainCoolSet(Index: Integer): TCoolSet; |
function GetMainCoolSet(Index: Integer): TCoolSet; |
| 280 |
function GetBoardCoolSet(Index: Integer): TCoolSet; |
function GetBoardCoolSet(Index: Integer): TCoolSet; |
| 520 |
|
|
| 521 |
//終了時に確認ダイアログを表示するか |
//終了時に確認ダイアログを表示するか |
| 522 |
property ShowDialogForEnd : Boolean read FShowDialogForEnd write FShowDialogForEnd; |
property ShowDialogForEnd : Boolean read FShowDialogForEnd write FShowDialogForEnd; |
| 523 |
|
//取得レス数とスレッドのレス数が異なったときに通常背景色と違った色の背景色を使用するか |
| 524 |
|
property UseOddColorOddResNum: Boolean read FUseOddColorOddResNum write FUseOddColorOddResNum; |
| 525 |
|
property OddColor: TColor read FOddColor write FOddColor; |
| 526 |
|
|
| 527 |
end; |
end; |
| 528 |
|
|
| 656 |
FListFontItalic := ini.ReadBool('Window', 'ListFontItalic', False); |
FListFontItalic := ini.ReadBool('Window', 'ListFontItalic', False); |
| 657 |
FListFontColor := StringToColor(ini.ReadString('Window', 'ListFontColor', DEFAULT_FONT_COLOR)); |
FListFontColor := StringToColor(ini.ReadString('Window', 'ListFontColor', DEFAULT_FONT_COLOR)); |
| 658 |
FListBackColor := StringToColor(ini.ReadString('Window', 'ListBackColor', DEFAULT_WINDOW_COLOR)); |
FListBackColor := StringToColor(ini.ReadString('Window', 'ListBackColor', DEFAULT_WINDOW_COLOR)); |
| 659 |
|
FUseOddColorOddResNum := ini.ReadBool('Window','UseOddColor', False); |
| 660 |
|
FOddColor := StringToColor(ini.ReadString('Window', 'OddColor', DEFAULT_WINDOW_COLOR)); |
| 661 |
|
|
| 662 |
FEditorFontName := ini.ReadString('Window', 'EditorFontName', DEFAULT_FONT_NAME); |
FEditorFontName := ini.ReadString('Window', 'EditorFontName', DEFAULT_FONT_NAME); |
| 663 |
FEditorFontSize := ini.ReadInteger('Window', 'EditorFontSize', DEFAULT_FONT_SIZE); |
FEditorFontSize := ini.ReadInteger('Window', 'EditorFontSize', DEFAULT_FONT_SIZE); |
| 959 |
ini.WriteInteger('Window', 'ListFontSize', FListFontSize); |
ini.WriteInteger('Window', 'ListFontSize', FListFontSize); |
| 960 |
ini.WriteString('Window', 'ListFontColor', ColorToString(FListFontColor)); |
ini.WriteString('Window', 'ListFontColor', ColorToString(FListFontColor)); |
| 961 |
ini.WriteString('Window', 'ListBackColor', ColorToString(FListBackColor)); |
ini.WriteString('Window', 'ListBackColor', ColorToString(FListBackColor)); |
| 962 |
|
ini.WriteBool('Window','UseOddColor',FUseOddColorOddResNum); |
| 963 |
|
ini.WriteString('Window', 'OddColor',ColorToString(FOddColor)); |
| 964 |
|
|
| 965 |
ini.WriteString('Window', 'EditorFontName', FEditorFontName); |
ini.WriteString('Window', 'EditorFontName', FEditorFontName); |
| 966 |
ini.WriteInteger('Window', 'EditorFontSize', FEditorFontSize); |
ini.WriteInteger('Window', 'EditorFontSize', FEditorFontSize); |