zoukankan      html  css  js  c++  java
  • 让一个非窗口组件(non-windowed component)可以接受来自Windows的消息

    为什么要这样做?

    有时候我们需要一个非窗口组件(比如一个非继承自TWinContrl的组件)可以接受Windows消息。要接受消息就需要一个窗口句柄,但是非窗口组件却没有句柄。这篇文章将讲述怎么让一个没有句柄的组件如何通过一个隐藏的窗口接受消息

    这是怎么做到的?

    例如
    我的剪贴板查看组件就是一个不可视的组件。这个窗体可以接收提供信息关于更改剪贴板的消息。


    Delphi库里面的AllocateHWnd函数可以帮助我们创建一个隐藏的窗口,同时与之相关的DeallocateHWnd函数可以释放当我们使用完的隐藏窗口。

    这个隐藏的窗口将命令窗口过程。

    通常当Windows调用一个stdcall函数时,AllocateHWnd函数能让我们像窗体过程一样的使用方法。

    我们通过一个引用allocatehwnd函数所需的方法来并将它注册为一个窗口过程的方法来解决问题。

    在这个被注册的方法内部我们可以处理我们感兴趣的消息同时传递给Windows


    下面的代码清单2停工了一个如何使用AllocateHWnd函数的框架。尽管如此,我们的代码清单1定义一个组件类的轮廓:

    ------------------代码清单1------------------
    type
      {*******************************
       Our class derived from TComponent 
        or another ancestor class
      ********************************}
      TMyClass = class(TComponent)
      private
        fHWnd: HWND;
          {*******************************
           field to store the window handle
           存储窗口句柄的字段 
          ********************************}
        ...
      protected
        procedure WndMethod(var Msg: TMessage); virtual;
        {*******************************  
         window proc - called by Windows    窗口过程(window proc) 由windows系统调用
         to handle messages passed to our
         hidden window    该窗口过程是用来处理传递到我们的隐藏窗口的
        ********************************}
        ...
      public
         constructor Create(AOwner: TComponent); override;
         {*******************************
          create hidden window here: 
          store handle in fHWnd
          在这里创建隐藏窗体,并且把它的句柄存储在fHWnd字段。

         ********************************}
         destructor Destroy; override;
         {*******************************
          free hidden window here
          销毁隐藏窗口过程
         ********************************}
         ...
      end;
    ------------------代码清单1------------------



    同时下面将是实现部分的详细代码:


    ------------------代码清单2------------------
    constructor TMyClass.Create(AOwner: TComponent);
    begin
      inherited Create(AOwner);
      ...
      //创建一个隐藏窗体并且用WndMethod过程
      fHWnd := AllocateHWnd(WndMethod);
      ...
    end;

    destructor TMyClass.Destroy;
    begin
      ...
      //销毁隐藏窗口
      DeallocateHWnd(fHWnd);
      ...
      inherited Destroy;
    end;

    procedure TMyClass.WndMethod(var Msg : TMessage);
    var
      Handled: Boolean;
    begin
      //假定我们可以处理消息
      Handled := True;
      case Msg.Msg of
        WM_SOMETHING: DoSomething;
           //处理消息的代码

        WM_SOMETHINGELSE: DoSomethingElse;
           //处理另一个消息的代码
        //这里处理其他的消息
        else
          //我们不再处理消息
          Handled := False;
      end;

      if Handled then
        //我们在消息记录里处理消息
        Msg.Result := 0
      else
        //我们通过DefWindowProc函数
        //不处理的消息同时记录结果
        Msg.Result := DefWindowProc(fHWnd,
                                    Msg.Msg, 
                                    Msg.WParam,
                                    Msg.LParam);
    end;
    ------------------代码清单2------------------

    原文:Of course, we could just use the Windows API to create a window the hard way and provide a windows procedure.

    But it is more difficult to use a method as a window procedure if we do it this way.

    The clever features about AllocateHWnd are that (a) it creates the hidden window for us and (b) it allows us to use a method, rather than a simple procedure,

    as the window procedure – and a method is more useful since it has access to the class's private data.

    译文:当然,我们仅使用 Windows API提供的比较难的方式创建了一个window(窗口)并提供窗口过程。
    但是,如果我们采用这种方式,那么把一个方法作为窗口过程来使用的话将是困难的。

    关于AllocateHWnd灵活的特性有:
    (a)它创建一个隐藏窗口给我们使用
    (b)它允许我们使用一个方法,而不是一个简单的过程(procedure),作为该窗口过程——当使用这个方法来访问该类的私有数据的时候更加有用。



    后记:第一次翻译文章,可能有些地方理解的不是很透彻,所以附录原文地址如下.

    原文:http://www.delphidabbler.com/articles?article=1

  • 相关阅读:
    Android中Activity之间通信
    vs2017 2019 下载更新慢的解决方法
    c# 判断某个类是否实现某个接口
    mvc api 关于 post 跟get 请求的一些想法[FromUri] 跟[FromBody] 同一个控制器如何实现共存
    vs2017 mvc 自定义路由规则 出现 404.0 错误代码 0x80070002
    C# winform 发布的时候没有app.config去哪儿了?
    安装c#服务
    Type.GetType反射的对象创建Activator.CreateInstance
    c# 谷歌动态口令对接
    asp.net mvc 异步控制器
  • 原文地址:https://www.cnblogs.com/yzryc/p/6397393.html
Copyright © 2011-2022 走看看