📄 initwiz.pas
字号:
unit InitWiz;
interface
uses
Windows, ToolsAPI;
type
TSearchWizard = class(TNotifierObject, IOTAWizard, IOTAMenuWizard)
// IOTAWizard methods
function GetIDString: string;
function GetName: string;
function GetState: TWizardState;
procedure Execute;
// IOTAMenuWizard method
function GetMenuText: string;
end;
function InitWizard(const BorlandIDEServices: IBorlandIDEServices;
RegisterProc: TWizardRegisterProc;
var Terminate: TWizardTerminateProc): Boolean stdcall;
var
ActionSvc: IOTAActionServices;
implementation
uses SysUtils, Dialogs, Forms, Controls, Main, PriU;
function TSearchWizard.GetName: string;
{ Return name of expert }
begin
Result := 'DDG Search';
end;
function TSearchWizard.GetState: TWizardState;
{ This expert is always enabled on the menu }
begin
Result := [wsEnabled];
end;
function TSearchWizard.GetIDString: String;
{ Return the unique Vendor.Product name of expert }
begin
Result := 'DDG.DDGSearch';
end;
function TSearchWizard.GetMenuText: string;
{ Return text for Help menu }
begin
Result := 'DDG Search Expert';
end;
procedure TSearchWizard.Execute;
{ Called when expert name is selected from Help menu of IDE. }
{ This function invokes the expert }
begin
// if not created, created it and show it
if MainForm = nil then
begin
MainForm := TMainForm.Create(Application);
ThreadPriWin := TThreadPriWin.Create(Application);
MainForm.Show;
end
else
// if created then restore window and show it
with MainForm do
begin
if not Visible then Show;
if WindowState = wsMinimized then WindowState := wsNormal;
SetFocus;
end;
end;
function InitWizard(const BorlandIDEServices: IBorlandIDEServices;
RegisterProc: TWizardRegisterProc;
var Terminate: TWizardTerminateProc): Boolean stdcall;
var
Svcs: IOTAServices;
begin
Result := BorlandIDEServices <> nil;
if Result then
begin
Svcs := BorlandIDEServices as IOTAServices;
ActionSvc := BorlandIDEServices as IOTAActionServices;
ToolsAPI.BorlandIDEServices := BorlandIDEServices;
Application.Handle := Svcs.GetParentHandle;
RegisterProc(TSearchWizard.Create);
end;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -