에 대한
검사에게 이러한 링크를 패키지가 언로드 될 때 제거되고 항목의 활성화/비활성화가 처리되면이 마법사 코드가 도움이 될 수 있습니다. 나는 GExperts 문서가 보여주는 샘플 마법사 코드를 시작 프로젝트로 사용하여 약간 더 좋은 시작 프로젝트로 게시했습니다. 당신은 당신이 코드를 잡아 경우 매우 빠르게 시작하고 그냥을 연장받을 수 있습니다
그들은 "마법사"가 무엇을 의미
https://bitbucket.org/wpostma/helloworldwizard/
는 "간단한 IDE 전문가"입니다, 즉, 메뉴와 뭔가에 추가 IDE는 IOTAWizard와 IOTAMenuWizard를 구현합니다. 이 접근법은 많은 이점을 가지고 있으며 GExperts 마법사가 쓰여지는 방식입니다.
코드의 핵심은 IDE와 패키지 (DPK)에 넣어 설치하고, 등록해야이 스타터 마법사이다, 등록 코드를 상기 도시되지 않은
// "Hello World!" for the OpenTools API (IDE versions 4 or greater)
// By Erik Berry: http://www.gexperts.org/, [email protected]
unit HelloWizardUnit;
interface
uses ToolsAPI;
type
// TNotifierObject has stub implementations for the necessary but
// unused IOTANotifer methods
THelloWizard = class(TNotifierObject, IOTAMenuWizard, IOTAWizard)
public
// IOTAWizard interface methods(required for all wizards/experts)
function GetIDString: string;
function GetName: string;
function GetState: TWizardState;
procedure Execute;
// IOTAMenuWizard (creates a simple menu item on the help menu)
function GetMenuText: string;
end;
implementation
uses Dialogs;
procedure THelloWizard.Execute;
begin
ShowMessage('Hello World!');
end;
function THelloWizard.GetIDString: string;
begin
Result := 'EB.HelloWizard';
end;
function THelloWizard.GetMenuText: string;
begin
Result := '&Hello Wizard';
end;
function THelloWizard.GetName: string;
begin
Result := 'Hello Wizard';
end;
function THelloWizard.GetState: TWizardState;
begin
Result := [wsEnabled];
end;
end.
하지만 위의 링크에서 다운로드하면 자체 "등록 (Reg)"(등록) 단위에 포함됩니다. A tutorial link is on EDN here.
lookup GExperts 소스 코드 (http://gexperts.svn.sourceforge.net/viewvc/gexperts/)이 방법을 사용하면 IDE를 확장하는 방법을 알 수 있습니다. – ComputerSaysNo
또는 CnWizards에 [소스 코드]가 있습니다. ] (http://code.google.com/p/cnpack/source/browse/#svn%2Ftrunk%2Fcnwizards)를 사용할 수 있지만 배우기에는 꽤 큰 프로젝트입니다. – TLama
@DorinDuminica 확인하십시오 – PresleyDias