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.106 by h677, Wed Feb 22 17:21:21 2006 UTC revision 1.107 by h677, Sun Feb 26 16:40:51 2006 UTC
# Line 422  type Line 422  type
422    
423                  //スレッド一覧をダウンロード後にソートするか                  //スレッド一覧をダウンロード後にソートするか
424                  FAutoSortThreadList : Boolean;                  FAutoSortThreadList : Boolean;
425    
426                    //InputAssistフォームの位置
427                    FInputAssistFormLeft :Integer;
428                    FInputAssistFormTop :Integer;
429                    //InputAssistフォームのサイズ
430                    FInputAssistFormWidth: Integer;
431                    FInputAssistFormHeight: Integer;
432    
433                  function GetMainCoolSet(Index: Integer): TCoolSet;                  function GetMainCoolSet(Index: Integer): TCoolSet;
434                  function GetBoardCoolSet(Index: Integer): TCoolSet;                  function GetBoardCoolSet(Index: Integer): TCoolSet;
435                  function GetBrowserCoolSet(Index: Integer): TCoolSet;                  function GetBrowserCoolSet(Index: Integer): TCoolSet;
# Line 739  type Line 747  type
747                  property MaxRecordCount : Integer read FMaxRecordCount write FMaxRecordCount;                  property MaxRecordCount : Integer read FMaxRecordCount write FMaxRecordCount;
748                  //! スレッド一覧ダウンロード後にスレッド名で昇順ソートするか                  //! スレッド一覧ダウンロード後にスレッド名で昇順ソートするか
749                  property AutoSortThreadList : Boolean read FAutoSortThreadList write FAutoSortThreadList;                  property AutoSortThreadList : Boolean read FAutoSortThreadList write FAutoSortThreadList;
750                    //! InputAssistフォームの位置
751                    property InputAssistFormLeft :Integer read FInputAssistFormLeft write FInputAssistFormLeft;
752                    property InputAssistFormTop :Integer read FInputAssistFormTop write FInputAssistFormTop;
753                    //! InputAssistフォームのサイズ
754                    property InputAssistFormWidth: Integer read FInputAssistFormWidth write FInputAssistFormWidth;
755                    property InputAssistFormHeight: Integer read FInputAssistFormHeight write FInputAssistFormHeight;
756    
757  end;  end;
758    
759    
# Line 1352  begin Line 1367  begin
1367                  //履歴の最大保存件数                  //履歴の最大保存件数
1368                  FMaxRecordCount := Max(ini.ReadInteger('Recode', 'Max', 100), 1);                  FMaxRecordCount := Max(ini.ReadInteger('Recode', 'Max', 100), 1);
1369    
1370                    // 入力アシスト
1371                    FInputAssistFormTop := ini.ReadInteger('IAtWindowsSize', 'Top', 0);
1372                    FInputAssistFormLeft := ini.ReadInteger('IAtWindowsSize', 'Left', 0);
1373                    FInputAssistFormWidth := ini.ReadInteger('IAtWindowsSize', 'Width', 400);
1374                    FInputAssistFormHeight := ini.ReadInteger('IAtWindowsSize', 'Height', 460);
1375    
1376                  ini.UpdateFile;                  ini.UpdateFile;
1377          finally          finally
1378                  ini.Free;                  ini.Free;
# Line 1478  begin Line 1499  begin
1499    
1500                  ini.WriteInteger('OptionDialog', 'TabIndex', FOptionDialogTabIndex);                  ini.WriteInteger('OptionDialog', 'TabIndex', FOptionDialogTabIndex);
1501    
1502                    // 入力アシスト
1503                    ini.WriteInteger('IAtWindowsSize', 'Top', FInputAssistFormTop);
1504                    ini.WriteInteger('IAtWindowsSize', 'Left', FInputAssistFormLeft);
1505                    ini.WriteInteger('IAtWindowsSize', 'Width', FInputAssistFormWidth);
1506                    ini.WriteInteger('IAtWindowsSize', 'Height', FInputAssistFormHeight);
1507    
1508                  //ツールバー                  //ツールバー
1509                  ini.WriteBool('ToolBar', 'StdVisible', FStdToolBarVisible);                  ini.WriteBool('ToolBar', 'StdVisible', FStdToolBarVisible);
1510                  ini.WriteBool('ToolBar', 'AddressVisible', FAddressBarVisible);                  ini.WriteBool('ToolBar', 'AddressVisible', FAddressBarVisible);

Legend:
Removed from v.1.106  
changed lines
  Added in v.1.107

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