我要做的是创建一种查看(不编辑)项目中包含的HTML页面的功能。欢迎页面已经嵌入了Web浏览器,因此它似乎是一个很好的候选者。
Curios为什么?这是一个带有背景信息的question。
答案 0 :(得分:26)
这是我专门为您制作的解决方案......
从here下载源代码,在Delphi中提取并加载包(我在Delphi XE中创建,但它将加载到任何版本中!您需要更改单位输出路径关于pre-XE版本的项目选项,但是)...安装包。
在“帮助”菜单中,找到创建浏览器并单击它。然后,这将创建并显示一个导航到我的博客的选项卡(用于示例)。
您可以轻松修改它以满足您的需求!帮助菜单项代码位于EditWizard.MenuItem.pas
,可以忽略不计!请注意,当点击(BorlandIDEServices as IOTAEditorViewServices).ShowEditorView(CreateTab('http://www.simonjstuart.com'));
时,它正在拨打电话,这实际上是创建浏览器标签实例!
浏览器选项卡的所有代码(包括其框架布局)都包含在EditorWizard.Frame.pas
中,这使得它很容易修改以满足您的需求!
单元EditorWizard.Wizard.pas
包含将自定义浏览器选项卡注册到IDE所需的少量代码。
当然,您需要做一些调整,但这肯定会成为您尝试做的事情的一个非常可接受的基础。
享受:)
答案 1 :(得分:8)
如果您愿意使用这样的黑客:
type
TOpenNewURLModule = procedure(const URL: string; EditorForm: TCustomForm);
procedure OpenURL(const URL: string);
var
EditWindow: INTAEditWindow;
Lib: HMODULE;
OpenNewURLModule: TOpenNewURLModule;
begin
EditWindow := (BorlandIDEServices as INTAEditorServices).TopEditWindow;
if not Assigned(EditWindow) or not Assigned(EditWindow.Form) then
Exit;
Lib := GetModuleHandle('startpageide150.bpl');
if Lib = 0 then
Exit;
OpenNewURLModule := GetProcAddress(Lib, '@Urlmodule@OpenNewURLModule$qqrx20System@UnicodeStringp22Editorform@TEditWindow');
if @OpenNewURLModule <> nil then
OpenNewURLModule(URL, EditWindow.Form);
end;
缺点:
编辑:似乎可以重用现有的打开欢迎页面,并使此黑客与旧版本的Delphi兼容。以下显示了两个备选方案:Delphi XE和Delphi 2007(两者似乎都在工作):
type
IURLModule = interface(IOTAModuleData)
['{9D215B02-6073-45DC-B007-1A2DBCE2D693}']
function GetURL: string;
procedure SetURL(const URL: string);
property URL: string read GetURL write SetURL;
end;
TOpenNewURLModule = procedure(const URL: string; EditorForm: TCustomForm);
function FindURLModule: IURLModule;
var
I: Integer;
begin
Result := nil;
with BorlandIDEServices as IOTAModuleServices do
for I := 0 to ModuleCount - 1 do
if Supports(Modules[I], IURLModule, Result) then
Break;
end;
procedure OpenURL(const URL: string; ReuseExistingView: Boolean = True);
{$IFDEF VER220} // Delphi XE
const
SStartPageIDE = 'startpageide150.bpl';
SOpenNewURLModule = '@Urlmodule@OpenNewURLModule$qqrx20System@UnicodeStringp22Editorform@TEditWindow';
{$ENDIF}
{$IFDEF VER185} // Delphi 2007
const
SStartPageIDE = 'startpageide100.bpl';
SOpenNewURLModule = '@Urlmodule@OpenNewURLModule$qqrx17System@AnsiStringp22Editorform@TEditWindow';
{$ENDIF}
var
Module: IURLModule;
EditWindow: INTAEditWindow;
Lib: HMODULE;
OpenNewURLModule: TOpenNewURLModule;
begin
EditWindow := nil;
Module := nil;
if ReuseExistingView then
Module := FindURLModule;
if Assigned(Module) then
begin
Module.URL := URL;
(Module as IOTAModule).Show;
end
else
begin
{$IFDEF VER220}
EditWindow := (BorlandIDEServices as INTAEditorServices).TopEditWindow;
{$ENDIF}
{$IFDEF VER185}
if Assigned((BorlandIDEServices as IOTAEditorServices).TopView) then
EditWindow := (BorlandIDEServices as IOTAEditorServices).TopView.GetEditWindow;
{$ENDIF}
if not Assigned(EditWindow) or not Assigned(EditWindow.Form) then
Exit;
Lib := GetModuleHandle(SStartPageIDE);
if Lib = 0 then
Exit;
OpenNewURLModule := GetProcAddress(Lib, SOpenNewURLModule);
if @OpenNewURLModule <> nil then
OpenNewURLModule(URL, EditWindow.Form);
end;
end;
剩下的缺点:
如果您需要兼容其他版本,也许可以将此作为开头。
答案 2 :(得分:3)
最好显示自己的TForm
,其中包含TWebBrowser
组件,您可以将HTML加载到其中。