Develop and Download Open Source Software

Browse CVS Repository

Diff of /gikonavigoeson/gikonavi/Setting.pas

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.19 by h677, Sun Nov 16 19:45:36 2003 UTC revision 1.20 by deux, Sun Nov 30 05:27:01 2003 UTC
# Line 173  type Line 173  type
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;
# Line 442  type Line 444  type
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;
# Line 694  begin Line 698  begin
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    
# Line 1005  begin Line 1011  begin
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    

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26