请教WebBrowser的怎么设背景颜色、字体? ( 积分: 20 )

  • 主题发起人 主题发起人 ayc_1999
  • 开始时间 开始时间
A

ayc_1999

Unregistered / Unconfirmed
GUEST, unregistred user!
请教WebBrowser的怎么设背景颜色、字体?
 
请教WebBrowser的怎么设背景颜色、字体?
 
Delphi 3开始有了TWebBrowser构件,不过那时是以ActiveX控件的形式出现的,而且需要自己引入,在其后的4.0和5.0中,它就在封装好shdocvw.dll之后作为Internet构件组之一出现在构件面板上了。常常听到有人骂Delphi的帮助做得极差,这次的TWebBrowser又是Microsoft的东东,自然不会好到哪里去,虽说MSDN上什么都有,可是内容太过庞杂,如果没有入口点更是件烦人的事,查找起来给人的感觉大概可以用一句话来形容:非常复杂、复杂非常。

  这里有平时我自己用TWebBrowser做程序的一些心得和上网收集到的部分例子和资料,整理了一下,希望能给有兴趣用TWebBrowser编程的朋友带来些帮助。



1、初始化和终止化(Initialization & Finalization)

  大家在执行TWebBrowser的某个方法以进行期望的操作,如ExecWB等的时候可能都碰到过“试图激活未注册的丢失目标”或“OLE对象未注册”等错误,或者并没有出错但是得不到希望的结果,比如不能将选中的网页内容复制到剪贴板等。以前用它编程的时候,我发现ExecWB有时侯起作用但有时侯又不行,在Delphi生成的缺省工程主窗口上加入TWebBrowser,运行时并不会出现“OLE对象未注册”的错误。同样是一个偶然的机会,我才知道OLE对象需要初始化和终止化(懂得的东东实在太少了)。
  我用我的前一篇文章《Delphi程序窗口动画&正常排列平铺的解决》所说的方法编程,运行时出了上面所说的错误,我便猜想应该有OleInitialize之类的语句,于是,找到并加上了下面几句话,终于搞定!究其原因,我想大概是由于TWebBrowser是一个嵌入的OLE对象而不算是用Delphi编写的VCL吧。

  initialization
   OleInitialize(nil);
  finalization
   try
    OleUninitialize;
   except
   end;

  这几句话放在主窗口所有语句之后,“end.”之前。

--------------------------------------------------------------------------------------------------------

2、EmptyParam

  在Delphi 5中TWebBrowser的Navigate方法被多次重载:

  procedure Navigate(const URL: WideString); overload;
  procedure Navigate(const URL: WideString; var Flags: OleVariant); overload;
  procedure Navigate(const URL: WideString; var Flags: OleVariant; var TargetFrameName:     OleVariant); overload;
  procedure Navigate(const URL: WideString; var Flags: OleVariant; var TargetFrameName:     OleVariant; var PostData: OleVariant); overload;
  procedure Navigate(const URL: WideString; var Flags: OleVariant; var TargetFrameName:     OleVariant; var PostData: OleVariant; var Headers: OleVariant); overload;

  而在实际应用中,使用后几种方法调用时,由于我们很少用到后面几个参数,但函数声明又要求是变量参数,一般的做法如下:

  var
   t:OleVariant;
  begin
   webbrowser1.Navigate(edit1.text,t,t,t,t);
  end;

  需要定义变量t(还有很多地方要用到它),很麻烦。其实我们可以用EmptyParam来代替(EmptyParam是一个公用的Variant空变量,不要对它赋值),只需一句话就可以了:

  webbrowser1.Navigate(edit1.text,EmptyParam,EmptyParam,EmptyParam,EmptyParam);

  虽然长一点,但比每次都定义变量方便得多。当然,也可以使用第一种方式。

  webbrowser1.Navigate(edit1.text)

--------------------------------------------------------------------------------------------------------

3、命令操作

  常用的命令操作用ExecWB方法即可完成,ExecWB同样多次被重载:

  procedure ExecWB(cmdID: OLECMDID; cmdexecopt: OLECMDEXECOPT); overload;
  procedure ExecWB(cmdID: OLECMDID; cmdexecopt: OLECMDEXECOPT; var pvaIn:
    OleVariant); overload;
  procedure ExecWB(cmdID: rOLECMDID; cmdexecopt: OLECMDEXECOPT; var pvaIn:
    OleVariant; var pvaOut: OleVariant); overload;

  打开: 弹出“打开Internet地址”对话框,CommandID为OLECMDID_OPEN(若浏览器版本为IE5.0,
      则此命令不可用)。
  另存为:调用“另存为”对话框。
      ExecWB(OLECMDID_SAVEAS,OLECMDEXECOPT_DODEFAULT, EmptyParam,
           EmptyParam);


  打印、打印预览和页面设置: 调用“打印”、“打印预览”和“页面设置”对话框(IE5.5及以上版本才支持打
                印预览,故实现应该检查此命令是否可用)。
      ExecWB(OLECMDID_PRINT, OLECMDEXECOPT_DODEFAULT, EmptyParam,
           EmptyParam);
      if QueryStatusWB(OLECMDID_PRINTPREVIEW)=3 then
       ExecWB(OLECMDID_PRINTPREVIEW, OLECMDEXECOPT_DODEFAULT,
           EmptyParam,EmptyParam);
      ExecWB(OLECMDID_PAGESETUP, OLECMDEXECOPT_DODEFAULT, EmptyParam,
           EmptyParam);


  剪切、复制、粘贴、全选: 功能无须多说,需要注意的是:剪切和粘贴不仅对编辑框文字,而且对网页上的非编
               辑框文字同样有效,用得好的话,也许可以做出功能特殊的东东。获得其命令使能状
               态和执行命令的方法有两种(以复制为例,剪切、粘贴和全选分别将各自的关键字替
               换即可,分别为CUT,PASTE和SELECTALL):
   A、用TWebBrowser的QueryStatusWB方法。
     if(QueryStatusWB(OLECMDID_COPY)=OLECMDF_ENABLED) or
      OLECMDF_SUPPORTED) then
      ExecWB(OLECMDID_COPY, OLECMDEXECOPT_DODEFAULT, EmptyParam,
           EmptyParam);
   B、用IHTMLDocument2的QueryCommandEnabled方法。
     var
      Doc: IHTMLDocument2;
     begin
      Doc :=WebBrowser1.Document as IHTMLDocument2;
      if Doc.QueryCommandEnabled('Copy') then
       Doc.ExecCommand('Copy',false,EmptyParam);
     end;

  查找: 参考第九条“查找”功能。

--------------------------------------------------------------------------------------------------------

4、字体大小

  类似“字体”菜单上的从“最大”到“最小”五项(对应整数0~4,Largest等假设为五个菜单项的名字,Tag 属性分别设为0~4)。
   A、读取当前页面字体大小。
     var
      t: OleVariant;
     Begin
      WebBrowser1.ExecWB(OLECMDID_ZOOM, OLECMDEXECOPT_DONTPROMPTUSER,
       EmptyParam,t);
      case t of
      4: Largest.Checked :=true;
      3: Larger.Checked :=true;
      2: Middle.Checked :=true;
      1: Small.Checked :=true;
      0: Smallest.Checked :=true;
      end;
     end;
   B、设置页面字体大小。
     Largest.Checked :=false;
     Larger.Checked :=false;
     Middle.Checked :=false;
     Small.Checked :=false;
     Smallest.Checked :=false;
     TMenuItem(Sender).Checked :=true;
     t :=TMenuItem(Sender).Tag;
     WebBrowser1.ExecWB(OLECMDID_ZOOM, OLECMDEXECOPT_DONTPROMPTUSER,
      t,t);

--------------------------------------------------------------------------------------------------------

5、添加到收藏夹和整理收藏夹

     const
     CLSID_ShellUIHelper: TGUID = '{64AB4BB7-111E-11D1-8F79-00C04FC2FBE1}';

    var
     p:procedure(Handle: THandle; Path: PChar); stdcall;

    procedure TForm1.OrganizeFavorite(Sender: Tobject);
    var
     H: HWnd;
    begin
     H := LoadLibrary(PChar('shdocvw.dll'));
     if H <> 0 then
     begin
    p := GetProcAddress(H, PChar('DoOrganizeFavDlg'));
      if Assigned(p) then p(Application.Handle, PChar(FavFolder));
     end;
     FreeLibrary(h);
    end;
    
    procedure TForm1.AddFavorite(Sender: TObject);
    var
     ShellUIHelper: ISHellUIHelper;
     url, title: Olevariant;
    begin
     Title := Webbrowser1.LocationName;
     Url := Webbrowser1.LocationUrl;
     if Url <> '' then
     begin
      ShellUIHelper := CreateComObject(CLSID_SHELLUIHELPER) as IShellUIHelper;
      ShellUIHelper.AddFavorite(url, title);
     end;
    end;

  用上面的通过ISHellUIHelper接口来打开“添加到收藏夹”对话框的方法比较简单,但是有个缺陷,就是打开的窗口不是模式窗口,而是独立于应用程序的。可以想象,如果使用与OrganizeFavorite过程同样的方法来打开对话框,由于可以指定父窗口的句柄,自然可以实现模式窗口(效果与在资源管理器和IE中打开“添加到收藏夹”对话框相同)。问题显然是这样的,上面两个过程的作者当时只知道shdocvw.dll中DoOrganizeFavDlg的原型而不知道DoAddToFavDlg的原型,所以只好用ISHellUIHelper接口来实现(或许是他不够严谨,认为是否是模式窗口无所谓?)。
  下面的过程就告诉你DoAddToFavDlg的函数原型。需要注意的是,这样打开的对话框并不执行“添加到收藏夹”的操作,它只是告诉应用程序用户是否选择了“确定”,同时在DoAddToFavDlg的第二个参数中返回用户希望放置Internet快捷方式的路径,建立.Url文件的工作由应用程序自己来完成。

    procedure TForm1.AddFavorite(IE: TEmbeddedWB);
     procedure CreateUrl(AUrlPath, AUrl: PChar);
     var
      URLfile: TIniFile;
     begin
      URLfile := TIniFile.Create(String(AUrlPath));
     ?RLfile.WriteString('InternetShortcut', 'URL', String(AUrl));
     ?RLfile.Free;
     end;
    var
     AddFav: function(Handle: THandle;
      UrlPath: PChar; UrlPathSize: Cardinal;
      Title: PChar; TitleSize: Cardinal;
      FavIDLIST: pItemIDList): Bool; stdcall;
     FDoc: IHTMLDocument2;
     UrlPath, url, title: array[0..MAX_PATH] of char;
     H: HWnd;
     pidl: pItemIDList;
     FRetOK: Bool;
    begin
     FDoc := IHTMLDocument2(IE.Document);
     if FDoc = nil then exit;
     StrPCopy(Title, FDoc.Get_title);
     StrPCopy(url, FDoc.Get_url);
     if Url <> '' then
     begin
      H := LoadLibrary(PChar('shdocvw.dll'));
      if H <> 0 then
      begin
       SHGetSpecialFolderLocation(0, CSIDL_FAVORITES, pidl);
       AddFav := GetProcAddress(H, PChar('DoAddToFavDlg'));
       if Assigned(AddFav) then
        FRetOK :=AddFav(Handle, UrlPath, Sizeof(UrlPath), Title, Sizeof(Title), pidl)
      end;
      FreeLibrary(h);
      if FRetOK then
       CreateUrl(UrlPath, Url);
     end
    end;


--------------------------------------------------------------------------------------------------------

6、使WebBrowser获得焦点

  TWebBrowser非常特殊,它从TWinControl继承来的SetFocus方法并不能使得它所包含的文档获得焦点,从而不能立即使用Internet Explorer本身具有得快捷键,解决方法如下:<

  procedure TForm1.SetFocusToDoc;
  begin
   if WebBrowser1.Document <> nil then
    with WebBrowser1.Application as IOleobject do
     DoVerb(OLEIVERB_UIACTIVATE, nil, WebBrowser1, 0, Handle, GetClientRect);
  end;

  除此之外,我还找到一种更简单的方法,这里一并列出:

  if WebBrowser1.Document <> nil then
   IHTMLWindow2(IHTMLDocument2(WebBrowser1.Document).ParentWindow).focus

  刚找到了更简单的方法,也许是最简单的:

  if WebBrowser1.Document <> nil then
   IHTMLWindow4(WebBrowser1.Document).focus

  还有,需要判断文档是否获得焦点这样来做:

  if IHTMLWindow4(WebBrowser1.Document).hasfocus then

--------------------------------------------------------------------------------------------------------

7、点击“提交”按钮

  如同程序里每个窗体上有一个“缺省”按钮一样,Web页面上的每个Form也有一个“缺省”按钮——即属性为“Submit”的按钮,当用户按下回车键时就相当于鼠标单击了“Submit”。但是TWebBrowser似乎并不响应回车键,并且,即使把包含TWebBrowser的窗体的KeyPreview设为True,在窗体的KeyPress事件里还是不能截获用户向TWebBrowser发出的按键。
  我的解决办法是用ApplicatinEvents构件或者自己编写TApplication对象的OnMessage事件,在其中判断消息类型,对键盘消息做出响应。至于点击“提交”按钮,可以通过分析网页源代码的方法来实现,不过我找到了更为简单快捷的方法,有两种,第一种是我自己想出来的,另一种是别人写的代码,这里都提供给大家,以做参考。

  A、用SendKeys函数向WebBrowser发送回车键
    在Delphi 5光盘上的Info/Extras/SendKeys目录下有一个SndKey32.pas文件,其中包含了两个函数SendKeys和AppActivate,我们可以用SendKeys函数来向WebBrowser发送回车键,我现在用的就是这个方法,使用很简单,在WebBrowser获得焦点的情况下(不要求WebBrowser所包含的文档获得焦点),用一条语句即可:

   Sendkeys('~',true);// press RETURN key

   SendKeys函数的详细参数说明等,均包含在SndKey32.pas文件中。

  B、在OnMessage事件中将接受到的键盘消息传递给WebBrowser。

   procedure TForm1.ApplicationEvents1Message(var Msg: TMsg; var Handled: Boolean);
   {fixes the malfunction of some keys within webbrowser control}
   const
    StdKeys = [VK_TAB, VK_RETURN]; { standard keys }
    ExtKeys = [VK_DELETE, VK_BACK, VK_LEFT, VK_RIGHT]; { extended keys }
    fExtended = $01000000; { extended key flag }
   begin
    Handled := False;
    with Msg do
    if ((Message >= WM_KEYFIRST) and (Message <= WM_KEYLAST)) and
     ((wParam in StdKeys) or
     {$IFDEF VER120}(GetKeyState(VK_CONTROL) < 0) or {$ENDIF}
     (wParam in ExtKeys) and
     ((lParam and fExtended) = fExtended)) then
    try
     if IsChild(Handle, hWnd) then { handles all browser related messages }
     begin
      with {$IFDEF VER120}Application_{$ELSE}Application{$ENDIF} as
        IOleInPlaceActiveObject do
       Handled := TranslateAccelerator(Msg) = S_OK;
       if not Handled then
       begin
        Handled := True;
        TranslateMessage(Msg);
        DispatchMessage(Msg);
       end;
       end;
    except
    end;
   end; // MessageHandler

  (此方法来自EmbeddedWB.pas)

--------------------------------------------------------------------------------------------------------

8、直接从TWebBrowser得到网页源码及Html

  下面先介绍一种极其简单的得到TWebBrowser正在访问的网页源码的方法。一般方法是利用TWebBrowser控件中的Document对象提供的IPersistStreamInit接口来实现,具体就是:先检查WebBrowser.Document对象是否有效,无效则退出;然后取得IPersistStreamInit接口,接着取得HTML源码的大小,分配全局堆内存块,建立流,再将HTML文本写到流中。程序虽然不算复杂,但是有更简单的方法,所以实现代码不再给出。其实基本上所有IE的功能TWebBrowser都应该有较为简单的方法来实现,获取网页源码也是一样。下面的代码将网页源码显示在Memo1中。

   Memo1.Lines.Add(IHtmlDocument2(WebBrowser1.Document).Body.OuterHtml);

  同时,在用TWebBrowser浏览HTML文件的时候要将其保存为文本文件就很简单了,不需要任何的语法解析工具,因为TWebBrowser也完成了,如下:

   Memo1.Lines.Add(IHtmlDocument2(WebBrowser1.Document).Body.OuterText);

--------------------------------------------------------------------------------------------------------

9、“查找”功能

  查找对话框可以在文档获得焦点的时候通过按键Ctrl-F来调出,程序中则调用IOleCommandTarget对象的成员函数Exec执行OLECMDID_FIND操作来调用,下面给出的方法是如何在程序中用代码来做出文字选择,即你可以自己设计查找对话框。

   var
    Doc: IHtmlDocument2;
    TxtRange: IHtmlTxtRange;
   begin
    Doc :=WebBrowser1.Document as IHtmlDocument2;
    Doc.SelectAll;    //此处为简写,选择全部文档的方法请参见第三条命令操作
                //这句话尤为重要,因为IHtmlTxtRange对象的方法能够操作的前提是
                //Document已经有一个文字选择区域。由于接着执行下面的语句,所以不会
                //看到文档全选的过程。
    TxtRange :=Doc.Selection.CreateRange as IHtmlTxtRange;
    TxtRange.FindText('Text to be searched',0.0);
    TxtRange.Select;
   end;

  还有,从Txt.Get_text可以得到当前选中的文字内容,某些时候是有用的。

--------------------------------------------------------------------------------------------------------

10、提取网页中所有链接

  这个方法来自大富翁论坛hopfield朋友的对一个问题的回答,我本想自己试验,但总是没成功。

  var
   doc:IHTMLDocument2;
   all:IHTMLElementCollection;
   len,i:integer;
   item:OleVariant;
  begin
   doc:=WebBrowser1 .Document as IHTMLDocument2;
   all:=doc.Get_links;             //doc.Links亦可
   len:=all.length;
   for i:=0 to len-1 do begin
    item:=all.item(i,varempty);        //EmpryParam亦可
    memo1.lines.add(item.href);
   end;
  end;

--------------------------------------------------------------------------------------------------------

11、设置TWebBrowser的编码

  为什么我总是错过很多机会?其实早就该想到的,但是一念之差,便即天壤之别。当时我要是肯再多考虑一下,多试验一下,这就不会排到第11条了。下面给出一个函数,搞定,难以想象的简单。

  procedure SetCharSet(AWebBrowser: TWebBrowser; ACharSet: String);
  var
   RefreshLevel: OleVariant;
  Begin
   IHTMLDocument2(AWebBrowser.Document).Set_CharSet(ACharSet);
   RefreshLevel :=7;              //这个7应该从注册表来,帮助有Bug。
   AWebBrowser.Refresh2(RefreshLevel);
  End;
 
先说背景颜色
procedure TForm1.Button3Click(Sender: TObject);
begin
WebBrowser1.OleObject.Document.bgColor := '#000000';
end;
下面这些内容是从国外网站摘下来的,内容相当丰富,希望对你有用,
procedure TForm1.CheckFontState(Doc: IHTMLDocument2);

var

FontName: variant;

FontSize: variant;



begin

if Doc = nil then

Exit;

CBFontName.Visible := Doc.queryCommandSupported('FontName');

CBFontName.Enabled := Doc.queryCommandEnabled('FontName');

CBFontSize.Visible := Doc.queryCommandSupported('FontSize');

CBFontSize.Enabled := Doc.queryCommandEnabled('FontSize');

if CBFontName.Enabled then

begin

FontName := Doc.queryCommandValue('FontName');

if FontName <> null then

begin

if CBFontName.Items.IndexOf(FontName) >= 0 then

begin

CBFontName.ItemIndex := CBFontName.Items.IndexOf(FontName);

end

else

begin

if trim(FontName) <> '' then

begin

CBFontName.Items.Add(FontName);

CBFontName.ItemIndex := CBFontName.Items.Count-1;

end

else

begin

CBFontName.ItemIndex := -1;

end;

end;

end;

end;

if CBFontSize.Enabled then

begin

FontSize := Doc.queryCommandValue('FontSize');

if FontSize <> null then

begin

if CBFontSize.Items.IndexOf(FontSize) >= 0 then

begin

CBFontSize.ItemIndex := CBFontSize.Items.IndexOf(FontSize);

end

else

begin

if trim(FontSize) <> '' then

begin

CBFontSize.Items.Add(FontSize);

CBFontSize.ItemIndex := CBFontSize.Items.Count-1;

end

else

begin

CBFontSize.ItemIndex := -1;

end;

end;

end;

end;

end;



procedure TForm1.InsertHTMLContent(Doc: IHTMLDocument2; HTML: string);

var

Sel: IHTMLSelectionObject;

Range: IHTMLTxtRange;



begin

Sel := Doc.selection;

if assigned(Sel) then

begin

if (Sel.type_='None') or (Sel.type_='Text') then

begin

Range := Sel.createRange as IHTMLTxtRange;

Range.pasteHTML(HTML);

end;

end;

end;


procedure TForm1.SBInsertHTMLClick(Sender: TObject);

var

Doc: IHTMLDocument2;



begin

Doc := WebBrowser.Document as IHTMLDocument2;

if assigned(Doc) then

InsertHTMLContent(Doc, Memo1.Text);

end;



procedure TForm1.SBInsertBreakClick(Sender: TObject);

var

Doc: IHTMLDocument2;



begin

Doc := WebBrowser.Document as IHTMLDocument2;

if assigned(Doc) then

InsertHTMLContent(Doc, '<BR>');

end;



procedure TForm1.SBInsertTableClick(Sender: TObject);

var

Doc: IHTMLDocument2;

TableStr: string;



begin

Doc := WebBrowser.Document as IHTMLDocument2;

if assigned(Doc) then

begin

TableStr := '<table border="1">';

TableStr := TableStr + ' <tr><th aling="left">Name</td><th align="right">Wert</td></tr>';

TableStr := TableStr + ' <tr><td aling="left">Test</td><td align="right">1</td></tr>';

TableStr := TableStr + ' <tr><td aling="left">Test2</td><td align="right">2</td></tr>';

TableStr := TableStr + ' <tr><td aling="left">letzter Test</td><td align="right">3</td></tr>';

TableStr := TableStr + '</table>';

InsertHTMLContent(Doc, TableStr);

end;

end;


procedure TForm1.InsertBGImage(Doc: IHTMLDocument2; ImageURI: string);

var

Body: IHTMLBodyElement;



begin

Body := Doc.body as IHTMLBodyElement;

Body.background := ImageURI;

end;



procedure TForm1.SpeedButton2Click(Sender: TObject);

var

Doc: IHTMLDocument2;



begin

Doc := WebBrowser.Document as IHTMLDocument2;

if assigned(Doc) then

InsertBGImage(Doc, 'C:test.jpg');

end;


function TForm1.GetElementAtPos(Doc: IHTMLDocument2; x, y: integer): IHTMLElement;

begin

Result := nil;

Result := Doc.elementFromPoint(x,y);

end;



function TForm1.ElementHasParent(Element: IHTMLElement;

TagName: string): boolean;

begin

Result := false;

while Element.tagName <> 'BODY' do

begin

Element := Element.parentElement;

if Element.tagName = TagName then

begin

Result := true;

exit;

end;

end;

end;

procedure TForm1.DoMessage(var Msg: TMsg; var Handled: Boolean);

var

Pos: TPoint;

Doc: IHTMLDocument2;

Sel: IHTMLSelectionObject;

Element: IHTMLElement;



function GetWebBrowserPos(ScreenPos: TPoint; var BrowserPos: TPoint):boolean;

begin

BrowserPos := WebBrowser.ScreenToClient(ScreenPos);

Result:= (BrowserPos.x >= 0) and

(BrowserPos.x < WebBrowser.ClientWidth) and

(BrowserPos.y >= 0) and

(BrowserPos.y < WebBrowser.ClientHeight);

end;



function GetDoc(var Doc: IHTMLDocument2): boolean;

begin

Doc := WebBrowser.Document as IHTMLDocument2;

Result := assigned(Doc);

end;



begin

if Msg.message = WM_KEYDOWN then

begin

if Msg.wParam = 13 then

begin

if GetWebBrowserPos(Msg.pt, Pos) then

begin

if GetDoc(Doc) then

begin

Msg.wParam := 0;

InsertHTMLContent(Doc,'<br>');

end;

end;

end;

end;

if Msg.message = WM_MOUSEMOVE then

begin

if GetWebBrowserPos(Msg.pt, Pos) then

begin

StatusBar.Panels[0].Text := IntToStr(Pos.x);

StatusBar.Panels[1].Text := IntToStr(Pos.y);

if GetDoc(Doc) then

begin

Element := GetElementAtPos(Doc, Pos.X, Pos.Y);

if assigned(Element) then

begin

StatusBar.Panels[2].Text := Element.tagName;

if Element.tagName = 'A' then

begin

StatusBar.Panels[3].Text := 'Link';

end

else

begin

if ElementHasParent(Element, 'A') then

StatusBar.Panels[3].Text := 'Link'

else

StatusBar.Panels[3].Text := 'No Link';

end;

end;

end;

end;

end;

if Msg.message = WM_LBUTTONDOWN then

begin

//

end;

end;


procedure TForm1.SpeedButton1Click(Sender: TObject);

begin

if WebBrowser1.OleObject.Document.selection.Type = 'Text' then

WebBrowser1.OleObject.Document.execCommand('CreateLink');

end;


if btFarbe.Enabled then

begin

ForeColor := HTMLDocument2Ifc.queryCommandValue('ForeColor');

if ForeColor <> null then

begin

pnlFarbe.Color:=HTMLToColor(ForeColor);

end;

end;


function HtmlToColor(Color: string): TColor;

begin

Result := StringToColor('$' + Copy(Color, 6, 2) + Copy(Color, 4, 2) + Copy(Color, 2, 2));

end;

function HtmlToColor(Color: string): TColor;

begin

Result := StrToInt(AColor);

end;


procedure TForm1.ForceCaretNextLine(Doc: IHTMLDocument2);

var

DisplayServices: IDisplayServices;

Caret: IHTMLCaret;

DisplayPointer: IDisplayPointer;

IsAtBol: integer;

IsPositioned: integer;



begin

Doc.QueryInterface(IID_IDisplayServices, DisplayServices);

if assigned(DisplayServices) then

begin

DisplayServices.GetCaret(Caret);

DisplayServices.CreateDisplayPointer(DisplayPointer);

if assigned(Caret) and assigned(DisplayPointer) then

begin

Caret.MoveDisplayPointerToCaret(DisplayPointer);

DisplayPointer.IsPositioned(IsPositioned);

if Boolean(IsPositioned) then

begin

DisplayPointer.IsAtBOL(IsAtBOL);

if not Boolean(IsAtBol) then

begin

DisplayPointer.MoveUnit(DISPLAY_MOVEUNIT_NextLine, 0);

Caret.MoveCaretToPointer(DisplayPointer, 0,CARET_DIRECTION_INDETERMINATE);

end;

end;

end;

end;

end;


procedure TForm1.CheckFontState(Doc: IHTMLDocument2);

var

FontName: variant;

FontSize: variant;



begin

if Doc = nil then

Exit;

CBFontName.Visible := Doc.queryCommandSupported('FontName');

CBFontName.Enabled := Doc.queryCommandEnabled('FontName');

CBFontSize.Visible := Doc.queryCommandSupported('FontSize');

CBFontSize.Enabled := Doc.queryCommandEnabled('FontSize');

if CBFontName.Enabled then

begin

FontName := Doc.queryCommandValue('FontName');

if FontName <> null then

begin

if CBFontName.Items.IndexOf(FontName) >= 0 then

begin

CBFontName.ItemIndex := CBFontName.Items.IndexOf(FontName);

end

else

begin

if trim(FontName) <> '' then

begin

CBFontName.Items.Add(FontName);

CBFontName.ItemIndex := CBFontName.Items.Count-1;

end

else

begin

CBFontName.ItemIndex := -1;

end;

end;

end;

end;

if CBFontSize.Enabled then

begin

FontSize := Doc.queryCommandValue('FontSize');

if FontSize <> null then

begin

if CBFontSize.Items.IndexOf(FontSize) >= 0 then

begin

CBFontSize.ItemIndex := CBFontSize.Items.IndexOf(FontSize);

end

else

begin

if trim(FontSize) <> '' then

begin

CBFontSize.Items.Add(FontSize);

CBFontSize.ItemIndex := CBFontSize.Items.Count-1;

end

else

begin

CBFontSize.ItemIndex := -1;

end;

end;

end;

end;

end;


procedure TForm1.InsertHTMLContent(Doc: IHTMLDocument2; HTML: string);

var

Sel: IHTMLSelectionObject;

Range: IHTMLTxtRange;



begin

Sel := Doc.selection;

if assigned(Sel) then

begin

if (Sel.type_='None') or (Sel.type_='Text') then

begin

Range := Sel.createRange as IHTMLTxtRange;

Range.pasteHTML(HTML);

end;

end;

end;


procedure TForm1.tfXPButton5Click(Sender: TObject);

var

HTMLDocument2Ifc: IHTMLDocument2;



begin

HTMLDocument2Ifc := WebBrowser1.Document as IHTMLDocument2;

HTMLDocument2Ifc.execCommand('Bold', False, 0);



end;



procedure TForm1.tfXPButton6Click(Sender: TObject);

var

HTMLDocument2Ifc: IHTMLDocument2;



begin

HTMLDocument2Ifc := WebBrowser1.Document as IHTMLDocument2;



HTMLDocument2Ifc.execCommand('Italic', False, 0);



end;



procedure TForm1.tfXPButton10Click(Sender: TObject);

var

HTMLDocument2Ifc: IHTMLDocument2;

begin

HTMLDocument2Ifc := WebBrowser1.Document as IHTMLDocument2;

HTMLDocument2Ifc.execCommand('Underline', False, 0);



end;



procedure TForm1.tfXPButton30Click(Sender: TObject);

var

HTMLDocument2Ifc: IHTMLDocument2;



begin

HTMLDocument2Ifc := WebBrowser1.Document as IHTMLDocument2;



HTMLDocument2Ifc.execCommand('StrikeThrough', False, 0);



end;



procedure TForm1.tfXPButton31Click(Sender: TObject);

var

HTMLDocument2Ifc: IHTMLDocument2;



begin

HTMLDocument2Ifc := WebBrowser1.Document as IHTMLDocument2;



HTMLDocument2Ifc.execCommand('SubScript', False, 0);



end;



procedure TForm1.tfXPButton32Click(Sender: TObject);



var

HTMLDocument2Ifc: IHTMLDocument2;



begin

HTMLDocument2Ifc := WebBrowser1.Document as IHTMLDocument2;



HTMLDocument2Ifc.execCommand('SuperScript', False, 0);



end;



procedure TForm1.tfXPButton19Click(Sender: TObject);

var

HTMLDocument2Ifc: IHTMLDocument2;



begin

HTMLDocument2Ifc := WebBrowser1.Document as IHTMLDocument2;

HTMLDocument2Ifc.execCommand('InsertOrderedList', false, '0');



end;



procedure TForm1.tfXPButton18Click(Sender: TObject);

var

HTMLDocument2Ifc: IHTMLDocument2;



begin

HTMLDocument2Ifc := WebBrowser1.Document as IHTMLDocument2;

HTMLDocument2Ifc.execCommand('InsertUnorderedList', false, '0');



end;



procedure TForm1.tfXPButton7Click(Sender: TObject);

var

HTMLDocument2Ifc: IHTMLDocument2;



begin

HTMLDocument2Ifc := WebBrowser1.Document as IHTMLDocument2;

HTMLDocument2Ifc.execCommand('Justifyleft', false, '0');



end;



procedure TForm1.tfXPButton22Click(Sender: TObject);

var

HTMLDocument2Ifc: IHTMLDocument2;



begin

HTMLDocument2Ifc := WebBrowser1.Document as IHTMLDocument2;

HTMLDocument2Ifc.execCommand('Justifycenter', false, '0');



end;



procedure TForm1.tfXPButton23Click(Sender: TObject);

var

HTMLDocument2Ifc: IHTMLDocument2;



begin

HTMLDocument2Ifc := WebBrowser1.Document as IHTMLDocument2;

HTMLDocument2Ifc.execCommand('Justifyright', false, 'Left');





end;



procedure TForm1.tfXPButton25Click(Sender: TObject);

var

HTMLDocument2Ifc: IHTMLDocument2;

begin



if ColorDialog1.Execute then

edit1.Text := ColorToHtml(ColorDialog1.Color);



HTMLDocument2Ifc := WebBrowser1.Document as IHTMLDocument2;

HTMLDocument2Ifc.execCommand('ForeColor', False, '' + edit1.text + '');

end;







procedure TForm1.FlatComboBox1Click(Sender: TObject);

begin

if WebBrowser1.OleObject.Document.selection.Type = 'Text' then

WebBrowser1.OleObject.Document.execCommand('FormatBlock', False, '' + FlatComboBox1.text + '');

FlatComboBox1.text + '');

end;



procedure TForm1.FlatComboBox2Click(Sender: TObject);

var

HTMLDocument2Ifc: IHTMLDocument2;

begin

HTMLDocument2Ifc := WebBrowser1.Document as IHTMLDocument2;



HTMLDocument2Ifc.execCommand('FontSize', False, '' + FlatComboBox2.text + '');



end;


procedure TForm1.tfXPButton1Click(Sender: TObject);

var

HTMLDocument2Ifc: IHTMLDocument2;



begin

HTMLDocument2Ifc := WebBrowser1.Document as IHTMLDocument2;

HTMLDocument2Ifc.execCommand('Undo', False, 0);



end;



procedure TForm1.tfXPButton2Click(Sender: TObject);

var

HTMLDocument2Ifc: IHTMLDocument2;



begin

HTMLDocument2Ifc := WebBrowser1.Document as IHTMLDocument2;

HTMLDocument2Ifc.execCommand('Redo', False, 0);



end;

procedure TForm1.Bildeinfuegen3Click(Sender: TObject);

var

HTMLDocument2Ifc: IHTMLDocument2;

begin

HTMLDocument2Ifc := WebBrowser1.Document as IHTMLDocument2;

HTMLDocument2Ifc.ExecCommand('InsertImage', False, 'C:test.bmp');

end;


procedure TForm1.LinkeinfuegenClick(Sender: TObject);

var

HTMLDocument2Ifc: IHTMLDocument2;

begin

HTMLDocument2Ifc := WebBrowser1.Document as IHTMLDocument2;

WebBrowser1.OleObject.Document.ExecCommand('CreateLink');

end;


procedure TForm1.CheckButtonState(Doc: IHTMLDocument2; Btn: TSpeedButton; Command: string);

begin

if Doc = nil then

Exit;

Btn.Visible := Doc.queryCommandSupported(Command);

Btn.Enabled := Doc.queryCommandEnabled(Command);

Btn.Down := Doc.queryCommandState(Command);

end;


procedure TForm1.WebBrowserCommandStateChange(Sender: TObject;

Command: Integer; Enable: WordBool);

var

Doc: IHTMLDocument2;

begin

Doc := WebBrowser.Document as IHTMLDocument2;

if not assigned(Doc) then

exit;

CheckButtonState(Doc, SBBold, 'Bold');

CheckButtonState(Doc, SBItalic, 'Italic');

CheckButtonState(Doc, SBUnderline, 'Underline');

CheckButtonState(Doc, SBJustifyLeft, 'JustifyLeft');

CheckButtonState(Doc, SBJustifyCenter, 'JustifyCenter');

CheckButtonState(Doc, SBJustifyRight, 'JustifyRight');

CheckFontState(Doc);

end;


function TForm1.EditDesigner1PreHandleEvent(inEvtDispId: Integer;

const pIEventObj: IHTMLEventObj): HRESULT;

var

SpecialKeys: string;



begin

Result := S_FALSE;

case inEvtDispID of

-602 :; // key down

-603 :; // key press

-604 :; // key up

-2147418104 :; //Mouseover

-2147418103 :; //Mouseout

-606 : //MouseMove

begin

Label1.Caption := pIEventObj.srcElement.tagName;

Label2.Caption := IntToStr(pIEventObj.x);

Label3.Caption := IntToStr(pIEventObj.y);

if pIEventObj.ctrlKey then

SpecialKeys := SpecialKeys + '-Ctrl';

if pIEventObj.altKey then

SpecialKeys := SpecialKeys + '-Alt';

if pIEventObj.shiftKey then

SpecialKeys := SpecialKeys + '-Shift';

Label4.Caption := SpecialKeys;

end;

-605 :;//MouseDown

-607 :; //MouseUp

end;

end;
 
后退
顶部