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.76 by genyakun, Tue Oct 12 01:21:04 2004 UTC revision 1.77 by genyakun, Sun Oct 17 16:09:42 2004 UTC
# Line 412  type Line 412  type
412    
413                  //2ch言語設定                  //2ch言語設定
414                  F2chLanguage : TStringList;                  F2chLanguage : TStringList;
415    
416                    //フシアナトラップ設定
417                    FLocalTrapAtt : Boolean;
418                    FRemoteTrapAtt : Boolean;
419                                    
420                  function GetMainCoolSet(Index: Integer): TCoolSet;                  function GetMainCoolSet(Index: Integer): TCoolSet;
421                  function GetBoardCoolSet(Index: Integer): TCoolSet;                  function GetBoardCoolSet(Index: Integer): TCoolSet;
# Line 704  type Line 708  type
708                  property Gestures : TGestureModel read FGestures write FGestures;                  property Gestures : TGestureModel read FGestures write FGestures;
709                  //! マウスジェスチャーを使用するかどうか                  //! マウスジェスチャーを使用するかどうか
710                  property GestureEnabled : Boolean read FGestureEnabled write FGestureEnabled;                  property GestureEnabled : Boolean read FGestureEnabled write FGestureEnabled;
711                    //フシアナトラップ設定
712                    property LocalTrapAtt : Boolean read FLocalTrapAtt write FLocalTrapAtt;
713                    property RemoteTrapAtt : Boolean read FRemoteTrapAtt write FRemoteTrapAtt;
714    
715  end;  end;
716    
717    
# Line 1250  begin Line 1258  begin
1258    
1259                  // マウスジェスチャー                  // マウスジェスチャー
1260                  FGestureEnabled := ini.ReadBool( 'Guesture', 'Enabled', False );                  FGestureEnabled := ini.ReadBool( 'Guesture', 'Enabled', False );
1261    
1262                    //2ch言語サポ
1263                    F2chSupport := ini.ReadBool('2chSupport', 'Support', False);
1264    
1265                    //FusianaTrap
1266                    FLocalTrapAtt := ini.ReadBool('Trap', 'LocalTrap', False);
1267                    FRemoteTrapAtt := ini.ReadBool('Trap', 'RemoteTrap', False);
1268    
1269                    ini.UpdateFile;
1270          finally          finally
1271                  ini.Free;                  ini.Free;
1272          end;          end;
# Line 1579  begin Line 1596  begin
1596                  ini.WriteInteger('OptionDialog', 'KuroutTabIndex', FKuroutSettingTabIndex);                  ini.WriteInteger('OptionDialog', 'KuroutTabIndex', FKuroutSettingTabIndex);
1597    
1598                  //にちゃん語案内機能                  //にちゃん語案内機能
1599                                                                  ini.WriteBool('2chSupport', 'Support', F2chSupport);                  ini.WriteBool('2chSupport', 'Support', F2chSupport);
1600    
1601                  // マウスジェスチャーを使用するかどうか                  // マウスジェスチャーを使用するかどうか
1602                  ini.WriteBool( 'Guesture', 'Enabled', FGestureEnabled );                  ini.WriteBool( 'Guesture', 'Enabled', FGestureEnabled );
1603    
1604                                                                  ini.UpdateFile;                  //FusianaTrap
1605                    ini.WriteBool('Trap', 'LocalAtt', FLocalTrapAtt);
1606                    ini.WriteBool('Trap', 'RemoteAtt', FRemoteTrapAtt);
1607    
1608                    ini.UpdateFile;
1609          finally          finally
1610                  ini.Free;                  ini.Free;
1611          end;          end;

Legend:
Removed from v.1.76  
changed lines
  Added in v.1.77

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