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.32 by h677, Wed Mar 24 09:51:44 2004 UTC revision 1.33 by h677, Tue Mar 30 12:45:25 2004 UTC
# Line 286  type Line 286  type
286                  FUseOddColorOddResNum: Boolean;                  FUseOddColorOddResNum: Boolean;
287                  FOddColor: TColor;                  FOddColor: TColor;
288    
289            //Samba24対策機能を使うか
290            FUseSamba: Boolean;
291                  function GetMainCoolSet(Index: Integer): TCoolSet;                  function GetMainCoolSet(Index: Integer): TCoolSet;
292                  function GetBoardCoolSet(Index: Integer): TCoolSet;                  function GetBoardCoolSet(Index: Integer): TCoolSet;
293                  function GetBrowserCoolSet(Index: Integer): TCoolSet;                  function GetBrowserCoolSet(Index: Integer): TCoolSet;
# Line 539  type Line 541  type
541          //取得レス数とスレッドのレス数が異なったときに通常背景色と違った色の背景色を使用するか          //取得レス数とスレッドのレス数が異なったときに通常背景色と違った色の背景色を使用するか
542          property UseOddColorOddResNum: Boolean read FUseOddColorOddResNum write FUseOddColorOddResNum;          property UseOddColorOddResNum: Boolean read FUseOddColorOddResNum write FUseOddColorOddResNum;
543          property OddColor: TColor read FOddColor write FOddColor;          property OddColor: TColor read FOddColor write FOddColor;
544            property UseSamba: Boolean read FUseSamba write FUseSamba;
545          end;          end;
546    
547    
# Line 830  begin Line 832  begin
832                  FDeleteMsg := ini.ReadBool('Function', 'LogDeleteMessage', True);                  FDeleteMsg := ini.ReadBool('Function', 'LogDeleteMessage', True);
833                  //終了確認                  //終了確認
834                  FShowDialogForEnd := ini.ReadBool('Function','ShowDialogForEnd',false);                  FShowDialogForEnd := ini.ReadBool('Function','ShowDialogForEnd',false);
835            //Samba
836            FUseSamba := ini.ReadBool('Function','UseSamba', True);
837                  //ログフォルダ                  //ログフォルダ
838                  FLogFolder := ini.ReadString('Folder', 'LogFolder', ExtractFilePath(Application.ExeName) + 'Log');                  FLogFolder := ini.ReadString('Folder', 'LogFolder', ExtractFilePath(Application.ExeName) + 'Log');
839                  NewLogFolder := '';                  NewLogFolder := '';
# Line 1095  begin Line 1098  begin
1098                  ini.WriteBool('Function', 'LogDeleteMessage', FDeleteMsg);                  ini.WriteBool('Function', 'LogDeleteMessage', FDeleteMsg);
1099                  //終了確認                  //終了確認
1100                  ini.WriteBool('Function','ShowDialogForEnd',FShowDialogForEnd);                  ini.WriteBool('Function','ShowDialogForEnd',FShowDialogForEnd);
1101            //Samba
1102            ini.WriteBool('Function','UseSamba', FUseSamba);
1103    
1104                  //非アクティブ時ポップアップ表示                  //非アクティブ時ポップアップ表示
1105                  ini.WriteBool('Thread', 'UnActivePopup', FUnActivePopup);                  ini.WriteBool('Thread', 'UnActivePopup', FUnActivePopup);
1106                  //レスポップアップヘッダーボールド                  //レスポップアップヘッダーボールド

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.33

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