線上訂房服務-台灣趴趴狗聯合訂房中心
發文 回覆 瀏覽次數:4885
推到 Plurk!
推到 Facebook!

How to use open tool api to set tab order?

 
axsoft
版主


發表:681
回覆:1056
積分:969
註冊:2002-03-13

發送簡訊給我
#1 引用回覆 回覆 發表時間:2003-02-11 13:45:11 IP:61.218.xxx.xxx 未訂閱
How to use open tool api to set tab order?    資料來源: www.delphi3000.com    This time I show a wizard, which use Delphi Open Tools API to auto adjust tab order on a form. After the wizard has done, the tab order of all the control in the form will be set from left to right, from top to bottom.    My friend Hong Liang writes this unit. I got the permit with him, you can use it freely.    Here is the source code of Autotab.pas: 
unit AutoTab;     interface     uses 
  Windows, Dialogs, ExptIntf, ToolIntf, 
  FileCtrl, SysUtils, EditIntf, classes;     type 
  POrderComponent = ^TOrderComponent; 
  TOrderComponent = record 
    ParentName: string; 
    SelfName: string; 
    Left: Integer; 
    Top: Integer; 
    TabOrder: Integer; 
  end;       TAutoTab = class (TIExpert) 
  private 
    procedure SortList;  //sort ComponentList 
    procedure SetListOrder; //set TabOrder's value 
  public 
    function GetStyle: TExpertStyle; override; 
    function GetName: string; override; 
    function GetAuthor: string; override; 
    function GetComment: string; override; 
    function GetPage: string; override; 
    function GetGlyph: HICON; override; 
    function GetState: TExpertState; override; 
    function GetIDString: string; override; 
    function GetMenuText: string; override; 
    procedure Execute; override; 
  end;     procedure Register;     var 
  ComponentList: TList;     implementation     procedure Register; 
begin 
  RegisterLibraryExpert(TAutoTab.Create); 
end;     function TAutoTab.GetStyle: TExpertStyle; 
begin 
  Result := esStandard; 
end;     function TAutoTab.GetName: String; 
begin 
  Result := 'Auto Set TabOrder Wizard' 
end;     function TAutoTab.GetAuthor: string; 
begin 
  Result := 'LightHong'; 
end;     function TAutoTab.GetComment: String; 
begin 
  Result := 'First expert'; 
end;     function TAutoTab.GetPage: string; 
begin 
  Result := ''; 
end;     function TAutoTab.GetGlyph: HICON; 
begin 
  Result := 0; 
end;     function TAutoTab.GetState: TExpertState; 
begin 
  // always enabled, never checked 
  Result := [esEnabled]; 
end;     function TAutoTab.GetIDString: String; 
begin 
  // must be unique 
  Result := 'LightHong.BlankWizard' 
end;     function TAutoTab.GetMenuText: String; 
begin 
  Result := '&Auto Set TabOrder Wizard' 
end;     function ChildrenCallBack(Param: Pointer; 
    ComponentInterface: TIComponentInterface): Boolean stdcall; 
var 
  pComponent: POrderComponent; 
begin 
  if ComponentInterface <> nil then 
  begin 
    New(pComponent); 
    pComponent.ParentName := string(Param); 
    ComponentInterface.GetPropValueByName('Name', pComponent.SelfName); 
    ComponentInterface.GetPropValueByName('Left', pComponent.Left); 
    ComponentInterface.GetPropValueByName('Top', pComponent.Top);         ComponentList.Add(pComponent); 
    ComponentInterface.GetChildren(PChar(pComponent.SelfName), ChildrenCallBack); 
  end; 
  Result := True; 
end;     function MyEnumProc(Param: Pointer; const FileName, UnitName, 
    FormName: string): Boolean stdcall; 
var 
  aFormModule: TIModuleInterface; 
  aFormInterface: TIFormInterface; 
  aFormComponent: TIComponentInterface; 
  aChildComponent: TIComponentInterface; 
  strFile, strName: string; 
  i, j: Integer; 
  PComponent: POrderComponent; 
begin 
  if FormName = '' then 
  begin 
    Result := True; 
    Exit; 
  end; 
  strFile := toolservices.getcurrentfile; 
  strFile := ExtractFileName(strFile); 
  Delete(strFile, Pos('.', strFile), Length(strFile) - Pos('.', strFile)   1); 
  if UnitName = strFile then 
  begin 
    aFormModule := ToolServices.GetFormModuleInterface(FormName); 
    aFormInterface := aFormModule.GetFormInterface; 
    aFormComponent := aFormInterface.GetFormComponent; 
    aFormComponent.GetPropValueByName('Name', strName); 
    if not Assigned(Param) then 
      //È¡µÃcomponentList; 
      aFormComponent.GetChildren(PChar(strName), ChildrenCallBack) 
    else begin 
      //set componentlist order 
//      showmessage('set order'); 
      for i := 0 to ComponentList.Count - 1 do 
      begin 
        PComponent := POrderComponent(ComponentList.Items[i]); 
        for j := 0 to aFormComponent.GetComponentCount - 1 do 
        begin 
          aChildComponent := aFormComponent.GetComponent(j); 
          aChildComponent.GetPropValueByName('Name', strName); 
          if PComponent.SelfName = strName then 
          begin 
            aChildComponent.SetPropByName('TabOrder', PComponent.TabOrder); 
            Break; 
          end; 
        end; 
      end; 
    end; 
    aFormModule.Free; 
    aFormInterface.Free; 
    aFormComponent.Free; 
  end; 
  Result := True; 
end;     procedure FreeComponentList; 
var 
  i: Integer; 
begin 
  for i := 0 to ComponentList.Count - 1 do 
    Dispose(ComponentList.Items[i]); 
  ComponentList.Free; 
end;     procedure TAutoTab.Execute; 
var 
  Order: Pchar; 
begin 
  New(Order); 
  ComponentList := TList.Create; 
  try 
    ToolServices.EnumProjectUnits(MyEnumProc, nil); 
//    showmessage('sort'); 
    SortList; 
//    showmessage('set'); 
    SetListOrder; 
//    showmessage('change'); 
    ToolServices.EnumProjectUnits(MyEnumProc, Order); 
  finally 
    FreeComponentList; 
    Dispose(Order); 
  end; 
  ShowMessage('Auto Set TabOrder Finished'); 
end;     procedure TAutoTab.SetListOrder; 
var 
  i: Integer; 
  intOrder: Integer; 
  PComponent: POrderComponent; 
  strPrevParentName: string; 
begin 
  if ComponentList.Count = 0 then 
    Exit; 
  PComponent := POrderComponent(ComponentList.Items[0]); 
  PComponent.TabOrder := 0; 
  strPrevParentName := PComponent.ParentName; 
  intOrder := 0; 
  for i := 1 to ComponentList.Count - 1 do 
  begin 
    PComponent := POrderComponent(ComponentList.Items[i]); 
    if PComponent.ParentName = strPrevParentName then 
    begin 
      Inc(intOrder); 
      PComponent.TabOrder := intOrder; 
    end 
    else begin 
      strPrevParentName := PComponent.ParentName; 
      PComponent.TabOrder := 0; 
      intOrder := 0; 
    end; 
  end; 
end;     procedure TAutoTab.SortList; 
var 
  i, j: Integer; 
  piComponent, pjComponent: POrderComponent; 
  bolSameParent: Boolean; 
begin 
  for i := 0 to ComponentList.Count - 1 do 
  begin 
    piComponent := POrderComponent(ComponentList.Items[i]); 
    bolSameParent := False; 
    for j := 0 to i - 1 do 
    begin 
      pjComponent := POrderComponent(ComponentList.Items[j]); 
      if pjComponent.ParentName <> piComponent.ParentName then 
      begin 
        if bolSameParent then 
        begin 
          ComponentList.Move(i, j); 
          Break; 
        end 
      end 
      else begin 
        if PiComponent.Top < PjComponent.Top then 
        begin 
          ComponentList.Move(i, j); 
          Break; 
        end 
        else begin 
          if PiComponent.Top = PjComponent.Top then 
          begin 
            if PiComponent.Left < PjComponent.Left then 
            begin 
              ComponentList.Move(i, j); 
              Break; 
            end 
          end; 
        end; 
        bolSameParent := True; 
      end; 
    end; 
  end; 
end;     end. 
( A little history about the unit: After I have finished my component TCcTab that translate Enter to Tab, I found to adjust tab order of a form manually cost me many time. If a program sort it, I can do little work. So I ask Hong Liang (English name LightHong) to write it, he does it. When I ask him to paste some articles in here, he said it's too difficult for him to write articles in English. So I do it. Hong Liang is very good at Component writing, Database, MIDAS, Open Tools API, you can connect it with lighthong@sina.com) 聯盟----Visita網站http://www.vista.org.tw ---[ 發問前請先找找舊文章 ]---
系統時間:2024-04-24 13:54:58
聯絡我們 | Delphi K.Top討論版
本站聲明
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。
2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。
3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇!