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.5 by yoffy, Wed Aug 27 17:23:49 2003 UTC revision 1.6 by yoffy, Thu Sep 25 21:10:07 2003 UTC
# Line 71  type Line 71  type
71                  FListBackColor: TColor;                  FListBackColor: TColor;
72    
73                  //ブラウザ                  //ブラウザ
74                  //FBrowserFontColor: TColor;                  FBrowserFontName: string;                       // ''...default
75                  //FBrowserBackColor: TColor;                  FBrowserFontSize: Integer;              // 0...default
76                  //FBrowserFontSize: Integer;                  FBrowserFontBold: Integer;              // 0...default, -1...False, 1...True
77                    FBrowserFontItalic: Integer;    // 上に同じ
78                    FBrowserFontColor: Integer;     // -1...default
79                    FBrowserBackColor: Integer;     // 上に同じ
80    
81                  //エディタ                  //エディタ
82                  FEditorFontName: string;                  FEditorFontName: string;
# Line 97  type Line 100  type
100                  FHintFontColor: TColor;                  FHintFontColor: TColor;
101                  FHintBackColor: TColor;                  FHintBackColor: TColor;
102    
103    
104                  //ウィンドウサイズ                  //ウィンドウサイズ
105                  FWindowTop: Integer;                  FWindowTop: Integer;
106                  FWindowLeft: Integer;                  FWindowLeft: Integer;
# Line 226  type Line 230  type
230                  FTimeAdjustSec: Integer;                  FTimeAdjustSec: Integer;
231                  FTimeAdjust: Boolean;                  FTimeAdjust: Boolean;
232    
233          //あぼ〜ん      //あぼ〜ん
234          FAbonDeleterlo : Boolean; //&rlo;を削るか      FAbonDeleterlo : Boolean; //&rlo;を削るか
235          FAbonReplaceul : Boolean; //<ul>タグを<br>タグに置換するか      FAbonReplaceul : Boolean; //<ul>タグを<br>タグに置換するか
236          FPopUpAbon     : Boolean; //レスポップアップ時のあぼ〜ん有効      FPopUpAbon     : Boolean; //レスポップアップ時のあぼ〜ん有効
237    
238      // スレッド絞込フィールドの幅      // スレッド絞込フィールドの幅
239      FSelectComboBoxWidth : Integer;      FSelectComboBoxWidth : Integer;
# Line 301  type Line 305  type
305                  property ListFontColor: TColor read FListFontColor write FListFontColor;                  property ListFontColor: TColor read FListFontColor write FListFontColor;
306                  property ListBackColor: TColor read FListBackColor write FListBackColor;                  property ListBackColor: TColor read FListBackColor write FListBackColor;
307    
308  //              property BrowserFontColor: TColor read FBrowserFontColor write FBrowserFontColor;                  property BrowserFontName: string read FBrowserFontName write FBrowserFontName;
309  //              property BrowserBackColor: TColor read FBrowserBackColor write FBrowserBackColor;                  property BrowserFontSize: Integer read FBrowserFontSize write FBrowserFontSize;
310  //              property BrowserFontSize: Integer read FBrowserFontSize write FBrowserFontSize;                  property BrowserFontBold: Integer read FBrowserFontBold write FBrowserFontBold;
311                    property BrowserFontItalic: Integer read FBrowserFontItalic write FBrowserFontItalic;
312                    property BrowserFontColor: Integer read FBrowserFontColor write FBrowserFontColor;
313                    property BrowserBackColor: Integer read FBrowserBackColor write FBrowserBackColor;
314    
315                  property EditorFontName: string read FEditorFontName write FEditorFontName;                  property EditorFontName: string read FEditorFontName write FEditorFontName;
316                  property EditorFontSize: Integer read FEditorFontSize write FEditorFontSize;                  property EditorFontSize: Integer read FEditorFontSize write FEditorFontSize;
# Line 426  type Line 433  type
433                  property TimeAdjustSec: Integer read FTimeAdjustSec write FTimeAdjustSec;                  property TimeAdjustSec: Integer read FTimeAdjustSec write FTimeAdjustSec;
434                  property TimeAdjust: Boolean read FTimeAdjust write FTimeAdjust;                  property TimeAdjust: Boolean read FTimeAdjust write FTimeAdjust;
435    
436          //あぼ〜ん      //あぼ〜ん
437          property AbonDeleterlo : Boolean read FAbonDeleterlo write FAbonDeleterlo;      property AbonDeleterlo : Boolean read FAbonDeleterlo write FAbonDeleterlo;
438          property AbonReplaceul : Boolean read FAbonReplaceul write FAbonReplaceul;      property AbonReplaceul : Boolean read FAbonReplaceul write FAbonReplaceul;
439          property PopUpAbon     : Boolean read FPopUpAbon write FPopUpAbon;      property PopUpAbon     : Boolean read FPopUpAbon write FPopUpAbon;
440    
441      // スレッド絞込フィールドの幅      // スレッド絞込フィールドの幅
442      property SelectComboBoxWidth : Integer read FSelectComboBoxWidth write FSelectComboBoxWidth;      property SelectComboBoxWidth : Integer read FSelectComboBoxWidth write FSelectComboBoxWidth;
# Line 535  begin Line 542  begin
542                  FWriteProxyUserID := ini.ReadString('WriteProxy', 'UserID', '');                  FWriteProxyUserID := ini.ReadString('WriteProxy', 'UserID', '');
543                  FWriteProxyPassword := ini.ReadString('WriteProxy', 'Password', '');                  FWriteProxyPassword := ini.ReadString('WriteProxy', 'Password', '');
544    
545                    FBrowserFontName := ini.ReadString('Window', 'BrowserFontName', '');
546                    FBrowserFontSize := ini.ReadInteger('Window', 'BrowserFontSize', 0);
547                    FBrowserFontBold := ini.ReadInteger('Window', 'BrowserFontBold', 0);
548                    FBrowserFontItalic := ini.ReadInteger('Window', 'BrowserFontItalic', 0);
549                    FBrowserFontColor := ini.ReadInteger('Window', 'BrowserFontColor', -1);
550                    FBrowserBackColor := ini.ReadInteger('Window', 'BrowserBackColor', -1);
551    
552                  FCabinetFontName := ini.ReadString('Window', 'CabinetFontName', DEFAULT_FONT_NAME);                  FCabinetFontName := ini.ReadString('Window', 'CabinetFontName', DEFAULT_FONT_NAME);
553                  FCabinetFontSize := ini.ReadInteger('Window', 'CabinetFontSize', DEFAULT_FONT_SIZE);                  FCabinetFontSize := ini.ReadInteger('Window', 'CabinetFontSize', DEFAULT_FONT_SIZE);
554                  FCabinetFontBold := ini.ReadBool('Window', 'CabinetFontBold', False);                  FCabinetFontBold := ini.ReadBool('Window', 'CabinetFontBold', False);
# Line 801  begin Line 815  begin
815                  ini.WriteString('WriteProxy', 'UserID', FWriteProxyUserID);                  ini.WriteString('WriteProxy', 'UserID', FWriteProxyUserID);
816                  ini.WriteString('WriteProxy', 'Password', FWriteProxyPassword);                  ini.WriteString('WriteProxy', 'Password', FWriteProxyPassword);
817    
818                    ini.WriteString('Window', 'BrowserFontName', FBrowserFontName);
819                    ini.WriteInteger('Window', 'BrowserFontSize', FBrowserFontSize);
820                    ini.WriteInteger('Window', 'BrowserFontSize', FBrowserFontSize);
821                    ini.WriteInteger('Window', 'BrowserFontBold', FBrowserFontBold);
822                    ini.WriteInteger('Window', 'BrowserFontItalic', FBrowserFontItalic);
823                    ini.WriteInteger('Window', 'BrowserFontColor', FBrowserFontColor);
824                    ini.WriteInteger('Window', 'BrowserBackColor', FBrowserBackColor);
825    
826                  ini.WriteString('Window', 'CabinetFontName', FCabinetFontName);                  ini.WriteString('Window', 'CabinetFontName', FCabinetFontName);
827                  ini.WriteInteger('Window', 'CabinetFontSize', FCabinetFontSize);                  ini.WriteInteger('Window', 'CabinetFontSize', FCabinetFontSize);
828                  ini.WriteString('Window', 'CabinetFontColor', ColorToString(FCabinetFontColor));                  ini.WriteString('Window', 'CabinetFontColor', ColorToString(FCabinetFontColor));
# Line 989  begin Line 1011  begin
1011                          ini.WriteBool('BrowserCoolBar', 'Break' + IntToStr(i), CoolSet.FCoolBreak);                          ini.WriteBool('BrowserCoolBar', 'Break' + IntToStr(i), CoolSet.FCoolBreak);
1012                  end;                  end;
1013    
1014          //あぼ〜ん      //あぼ〜ん
1015          ini.WriteBool('Abon','Deleterlo',FAbonDeleterlo);      ini.WriteBool('Abon','Deleterlo',FAbonDeleterlo);
1016          ini.WriteBool('Abon','Replaceul',FAbonReplaceul);      ini.WriteBool('Abon','Replaceul',FAbonReplaceul);
1017          ini.WriteBool('abon','Popup',FPopUpAbon);      ini.WriteBool('abon','Popup',FPopUpAbon);
1018    
1019                  ini.UpdateFile;                  ini.UpdateFile;
1020          finally          finally

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

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