| 173 |
FEditWindowHeight: Integer; |
FEditWindowHeight: Integer; |
| 174 |
FEditWindowWidth: Integer; |
FEditWindowWidth: Integer; |
| 175 |
FEditWindowMax: Boolean; |
FEditWindowMax: Boolean; |
| 176 |
|
FEditWindowStay: Boolean; |
| 177 |
|
FEditWindowTranslucent: Boolean; |
| 178 |
|
|
| 179 |
//リスト番号表示 |
//リスト番号表示 |
| 180 |
FListViewNo: Boolean; |
FListViewNo: Boolean; |
| 444 |
property EditWindowHeight: Integer read FEditWindowHeight write FEditWindowHeight; |
property EditWindowHeight: Integer read FEditWindowHeight write FEditWindowHeight; |
| 445 |
property EditWindowWidth: Integer read FEditWindowWidth write FEditWindowWidth; |
property EditWindowWidth: Integer read FEditWindowWidth write FEditWindowWidth; |
| 446 |
property EditWindowMax: Boolean read FEditWindowMax write FEditWindowMax; |
property EditWindowMax: Boolean read FEditWindowMax write FEditWindowMax; |
| 447 |
|
property EditWindowStay: Boolean read FEditWindowStay write FEditWindowStay; |
| 448 |
|
property EditWindowTranslucent: Boolean read FEditWindowTranslucent write FEditWindowTranslucent; |
| 449 |
|
|
| 450 |
property ListViewNo: Boolean read FListViewNo write FListViewNo; |
property ListViewNo: Boolean read FListViewNo write FListViewNo; |
| 451 |
property UseCSS: Boolean read FUseCSS write SetUseCSS; |
property UseCSS: Boolean read FUseCSS write SetUseCSS; |
| 698 |
FEditWindowHeight := ini.ReadInteger('EditorWindowSize', 'Height', -1); |
FEditWindowHeight := ini.ReadInteger('EditorWindowSize', 'Height', -1); |
| 699 |
FEditWindowWidth := ini.ReadInteger('EditorWindowSize', 'Width', -1); |
FEditWindowWidth := ini.ReadInteger('EditorWindowSize', 'Width', -1); |
| 700 |
FEditWindowMax := ini.ReadBool('EditorWindowSize', 'Max', False); |
FEditWindowMax := ini.ReadBool('EditorWindowSize', 'Max', False); |
| 701 |
|
FEditWindowStay := ini.ReadBool('EditorWindowSize', 'Stay', False); |
| 702 |
|
FEditWindowTranslucent := ini.ReadBool('EditorWindowSize', 'Translucent', False); |
| 703 |
|
|
| 704 |
FOptionDialogTabIndex := ini.ReadInteger('OptionDialog', 'TabIndex', 0); |
FOptionDialogTabIndex := ini.ReadInteger('OptionDialog', 'TabIndex', 0); |
| 705 |
|
|
| 1011 |
ini.WriteInteger('EditorWindowSize', 'Height', EditWindowHeight); |
ini.WriteInteger('EditorWindowSize', 'Height', EditWindowHeight); |
| 1012 |
ini.WriteInteger('EditorWindowSize', 'Width', EditWindowWidth); |
ini.WriteInteger('EditorWindowSize', 'Width', EditWindowWidth); |
| 1013 |
ini.WriteBool('EditorWindowSize', 'Max', EditWindowMax); |
ini.WriteBool('EditorWindowSize', 'Max', EditWindowMax); |
| 1014 |
|
ini.WriteBool('EditorWindowSize', 'Stay', EditWindowStay); |
| 1015 |
|
ini.WriteBool('EditorWindowSize', 'Translucent', EditWindowTranslucent); |
| 1016 |
|
|
| 1017 |
ini.WriteInteger('OptionDialog', 'TabIndex', FOptionDialogTabIndex); |
ini.WriteInteger('OptionDialog', 'TabIndex', FOptionDialogTabIndex); |
| 1018 |
|
|