| 77 |
FBrowserFontItalic: Integer; // 上に同じ |
FBrowserFontItalic: Integer; // 上に同じ |
| 78 |
FBrowserFontColor: Integer; // -1...default |
FBrowserFontColor: Integer; // -1...default |
| 79 |
FBrowserBackColor: Integer; // 上に同じ |
FBrowserBackColor: Integer; // 上に同じ |
|
FSkinPopup: Boolean; // スキンでもポップアップ |
|
| 80 |
|
|
| 81 |
//エディタ |
//エディタ |
| 82 |
FEditorFontName: string; |
FEditorFontName: string; |
| 238 |
// スレッド絞込フィールドの幅 |
// スレッド絞込フィールドの幅 |
| 239 |
FSelectComboBoxWidth : Integer; |
FSelectComboBoxWidth : Integer; |
| 240 |
|
|
| 241 |
|
// 最後に選択されたオプションダイアログのタブ |
| 242 |
|
FOptionDialogTabIndex: Integer; |
| 243 |
|
|
| 244 |
|
// 最後に選択されたキャビネット |
| 245 |
|
FCabinetIndex: Integer; |
| 246 |
|
|
| 247 |
function GetMainCoolSet(Index: Integer): TCoolSet; |
function GetMainCoolSet(Index: Integer): TCoolSet; |
| 248 |
function GetBoardCoolSet(Index: Integer): TCoolSet; |
function GetBoardCoolSet(Index: Integer): TCoolSet; |
| 249 |
function GetBrowserCoolSet(Index: Integer): TCoolSet; |
function GetBrowserCoolSet(Index: Integer): TCoolSet; |
| 317 |
property BrowserFontItalic: Integer read FBrowserFontItalic write FBrowserFontItalic; |
property BrowserFontItalic: Integer read FBrowserFontItalic write FBrowserFontItalic; |
| 318 |
property BrowserFontColor: Integer read FBrowserFontColor write FBrowserFontColor; |
property BrowserFontColor: Integer read FBrowserFontColor write FBrowserFontColor; |
| 319 |
property BrowserBackColor: Integer read FBrowserBackColor write FBrowserBackColor; |
property BrowserBackColor: Integer read FBrowserBackColor write FBrowserBackColor; |
|
property SkinPopup: Boolean read FSkinPopup write FSkinPopup; |
|
| 320 |
|
|
| 321 |
property EditorFontName: string read FEditorFontName write FEditorFontName; |
property EditorFontName: string read FEditorFontName write FEditorFontName; |
| 322 |
property EditorFontSize: Integer read FEditorFontSize write FEditorFontSize; |
property EditorFontSize: Integer read FEditorFontSize write FEditorFontSize; |
| 447 |
// スレッド絞込フィールドの幅 |
// スレッド絞込フィールドの幅 |
| 448 |
property SelectComboBoxWidth : Integer read FSelectComboBoxWidth write FSelectComboBoxWidth; |
property SelectComboBoxWidth : Integer read FSelectComboBoxWidth write FSelectComboBoxWidth; |
| 449 |
|
|
| 450 |
|
// 最後に選択されたオプションダイアログのタブ |
| 451 |
|
property OptionDialogTabIndex : Integer read FOptionDialogTabIndex write FOptionDialogTabIndex; |
| 452 |
|
|
| 453 |
|
// 最後に選択されたキャビネット |
| 454 |
|
property CabinetIndex : Integer read FCabinetIndex write FCabinetIndex; |
| 455 |
|
|
| 456 |
end; |
end; |
| 457 |
|
|
| 458 |
|
|
| 611 |
FEditWindowWidth := ini.ReadInteger('EditorWindowSize', 'Width', -1); |
FEditWindowWidth := ini.ReadInteger('EditorWindowSize', 'Width', -1); |
| 612 |
FEditWindowMax := ini.ReadBool('EditorWindowSize', 'Max', False); |
FEditWindowMax := ini.ReadBool('EditorWindowSize', 'Max', False); |
| 613 |
|
|
| 614 |
|
FOptionDialogTabIndex := ini.ReadInteger('OptionDialog', 'TabIndex', 0); |
| 615 |
|
|
| 616 |
//ツールバー |
//ツールバー |
| 617 |
FStdToolBarVisible := ini.ReadBool('ToolBar', 'StdVisible', True); |
FStdToolBarVisible := ini.ReadBool('ToolBar', 'StdVisible', True); |
| 618 |
FAddressBarVisible := ini.ReadBool('ToolBar', 'AddressVisible', True); |
FAddressBarVisible := ini.ReadBool('ToolBar', 'AddressVisible', True); |
| 637 |
|
|
| 638 |
FCabinetVisible := ini.ReadBool('Cabinet', 'Visible', True); |
FCabinetVisible := ini.ReadBool('Cabinet', 'Visible', True); |
| 639 |
FCabinetWidth := ini.ReadInteger('Cabinet', 'Width', 200); |
FCabinetWidth := ini.ReadInteger('Cabinet', 'Width', 200); |
| 640 |
|
FCabinetIndex := ini.ReadInteger('Cabinet', 'Index', 0); |
| 641 |
|
|
| 642 |
FListOrientation := TGikoListOrientation(ini.ReadInteger('List', 'Orientation', Ord(gloHorizontal))); |
FListOrientation := TGikoListOrientation(ini.ReadInteger('List', 'Orientation', Ord(gloHorizontal))); |
| 643 |
FListHeight := ini.ReadInteger('List', 'Height', 180); |
FListHeight := ini.ReadInteger('List', 'Height', 180); |
| 706 |
FUseCSS := ini.ReadBool('CSS', 'UseCSS', True); |
FUseCSS := ini.ReadBool('CSS', 'UseCSS', True); |
| 707 |
//CSSファイル名 |
//CSSファイル名 |
| 708 |
FCSSFileName := ini.ReadString('CSS', 'FileName', 'default.css'); |
FCSSFileName := ini.ReadString('CSS', 'FileName', 'default.css'); |
|
//スキンでもポップアップ |
|
|
FSkinPopup := ini.ReadBool('CSS', 'SkinPopup', False); |
|
| 709 |
|
|
| 710 |
//Mail欄表示 |
//Mail欄表示 |
| 711 |
FShowMail := ini.ReadBool('Thread', 'ShowMail', True); |
FShowMail := ini.ReadBool('Thread', 'ShowMail', True); |
| 795 |
BrowserCoolSet[i] := CoolSet; |
BrowserCoolSet[i] := CoolSet; |
| 796 |
end; |
end; |
| 797 |
|
|
| 798 |
//あぼ〜ん |
//あぼ〜ん |
| 799 |
FAbonDeleterlo := ini.ReadBool('Abon','Deleterlo',false); |
FAbonDeleterlo := ini.ReadBool('Abon','Deleterlo',false); |
| 800 |
FAbonReplaceul := ini.ReadBool('Abon','Replaceul',false); |
FAbonReplaceul := ini.ReadBool('Abon','Replaceul',false); |
| 801 |
FPopUpAbon := ini.ReadBool('abon','Popup',false); |
FPopUpAbon := ini.ReadBool('abon','Popup',false); |
| 802 |
finally |
finally |
| 803 |
ini.Free; |
ini.Free; |
| 804 |
end; |
end; |
| 892 |
ini.WriteInteger('EditorWindowSize', 'Width', EditWindowWidth); |
ini.WriteInteger('EditorWindowSize', 'Width', EditWindowWidth); |
| 893 |
ini.WriteBool('EditorWindowSize', 'Max', EditWindowMax); |
ini.WriteBool('EditorWindowSize', 'Max', EditWindowMax); |
| 894 |
|
|
| 895 |
|
ini.WriteInteger('OptionDialog', 'TabIndex', FOptionDialogTabIndex); |
| 896 |
|
|
| 897 |
//ツールバー |
//ツールバー |
| 898 |
ini.WriteBool('ToolBar', 'StdVisible', FStdToolBarVisible); |
ini.WriteBool('ToolBar', 'StdVisible', FStdToolBarVisible); |
| 899 |
ini.WriteBool('ToolBar', 'AddressVisible', FAddressBarVisible); |
ini.WriteBool('ToolBar', 'AddressVisible', FAddressBarVisible); |
| 922 |
//キャビネット |
//キャビネット |
| 923 |
ini.WriteBool('Cabinet', 'Visible', FCabinetVisible); |
ini.WriteBool('Cabinet', 'Visible', FCabinetVisible); |
| 924 |
ini.WriteInteger('Cabinet', 'Width', FCabinetWidth); |
ini.WriteInteger('Cabinet', 'Width', FCabinetWidth); |
| 925 |
|
ini.WriteInteger('Cabinet', 'Index', FCabinetIndex); |
| 926 |
|
|
| 927 |
//リストのサイズと垂直水平 |
//リストのサイズと垂直水平 |
| 928 |
ini.WriteInteger('List', 'Orientation', Ord(FListOrientation)); |
ini.WriteInteger('List', 'Orientation', Ord(FListOrientation)); |
| 942 |
ini.WriteBool('CSS', 'UseCSS', FUseCSS); |
ini.WriteBool('CSS', 'UseCSS', FUseCSS); |
| 943 |
//CSSファイル名 |
//CSSファイル名 |
| 944 |
ini.WriteString('CSS', 'FileName', FCSSFileName); |
ini.WriteString('CSS', 'FileName', FCSSFileName); |
|
//スキンでもポップアップ |
|
|
ini.WriteBool('CSS', 'SkinPopup', FSkinPopup); |
|
| 945 |
//Mail欄表示 |
//Mail欄表示 |
| 946 |
ini.WriteBool('Thread', 'ShowMail', FShowMail); |
ini.WriteBool('Thread', 'ShowMail', FShowMail); |
| 947 |
//ログ削除確認 |
//ログ削除確認 |