delphi - 如何在不使用 VCL 的情况下使用自定义 Delphi 类创建窗口?

标签 delphi winapi delphi-2007

我正在尝试编写一个包含类 TMainWindow 的简单单元,以提高我对 native Windows API 的了解。

我想像这样使用这个类:

var
  MainWindow: TMainWindow;
begin
  MainWindow := TMainWindow.Create;
  try
    MainWindow.ShowModal;
  finally
    MainWindow.Free;
  end;
end.

我得到了一个几乎可以工作的原型(prototype),但我找不到问题,这是我到目前为止编写的代码:

unit NT.Window;

interface

uses
  Windows, Messages, Classes, SysUtils;

type
  PObject = ^TObject;

  TMainWindow = class(TObject)
  private
    FChild  : HWND;                          { Optional child window }
    FHandle : HWND;
    procedure WMCreate      (var Msg: TWMCreate);      message WM_CREATE;
    procedure WMDestroy     (var Msg: TWMDestroy);     message WM_DESTROY;
    procedure WMNcCreate    (var Msg: TWMNCCreate);    message WM_NCCREATE;
    procedure WMPaint       (var Msg: TWMPaint);       message WM_PAINT;
    procedure WMPrintClient (var Msg: TWMPrintClient); message WM_PRINTCLIENT;
    procedure WMSize        (var Msg: TWMSize);        message WM_SIZE;
    procedure PaintContent(const APaintStruct: TPaintStruct);
    function HandleMessage(var Msg: TMessage): Integer;
  public
    constructor Create;
    procedure DefaultHandler(var Message); override;
    function ShowModal: Boolean;
  end;

implementation

var
  WindowByHwnd: TStringList;

function PointerToStr(APointer: Pointer): string;
begin
  Result := IntToStr(NativeInt(APointer));
end;

function StrToPointerDef(AString: string; ADefault: Pointer): Pointer;
begin
  Result := Pointer(StrToIntDef(AString, Integer(ADefault)));
end;

function GetWindowByHwnd(hwnd: HWND): TMainWindow;
begin
  Result := TMainWindow(StrToPointerDef(WindowByHwnd.Values[IntToStr(hwnd)], nil));
end;

procedure StoreWindowByHwnd(hwnd: HWND; AWindow: TMainWindow);
begin
  AWindow.FHandle := hwnd;
  WindowByHwnd.Add(IntToStr(hwnd) + '=' + PointerToStr(Pointer(AWindow)));
end;

function WndProc(hwnd: HWND; uiMsg: UINT; wParam: WPARAM; lParam: LPARAM): LRESULT; stdcall;
var
  Msg    : TMessage;
  Window : TMainWindow;
begin
  Msg.Msg    := uiMsg;
  Msg.WParam := wParam;
  Msg.LParam := lParam;
  Msg.Result := 0;
  if uiMsg = WM_NCCREATE then begin
    StoreWindowByHwnd(hwnd, TMainWindow(TWMNCCreate(Msg).CreateStruct.lpCreateParams))
  end;
  Window := GetWindowByHwnd(hwnd);
  if Window = nil then begin
    Result := DefWindowProc(hwnd, Msg.Msg, Msg.WParam, Msg.LParam);
  end else begin
    Result := Window.HandleMessage(Msg);
  end;
end;

{ TMainWindow }

constructor TMainWindow.Create;
var
  wc: WNDCLASS;
begin
  inherited Create;
  wc.style         := 0;
  wc.lpfnWndProc   := @WndProc;
  wc.cbClsExtra    := 0;
  wc.cbWndExtra    := 0;
  wc.hInstance     := HInstance;
  wc.hIcon         := 0;
  wc.hCursor       := LoadCursor(0, IDC_ARROW);
  wc.hbrBackground := HBRUSH(COLOR_WINDOW + 1);
  wc.lpszMenuName  := nil;
  wc.lpszClassName := 'Scratch';
  if Windows.RegisterClass(wc) = 0 then begin
    raise Exception.Create('RegisterClass failed: ' + SysErrorMessage(GetLastError));
  end;
  if CreateWindow(
    'Scratch',                   { Class Name }
    'Scratch',                   { Title }
    WS_OVERLAPPEDWINDOW,         { Style }
    Integer(CW_USEDEFAULT),
    Integer(CW_USEDEFAULT),      { Position }
    Integer(CW_USEDEFAULT),
    Integer(CW_USEDEFAULT),      { Size }
    0,                           { Parent }
    0,                           { No menu }
    HInstance,                   { Instance }
    @Self                        { No special parameters }
  ) = 0 then begin
    raise Exception.Create('CreateWindow failed: ' + SysErrorMessage(GetLastError));
  end;
end;

procedure TMainWindow.DefaultHandler(var Message);
var
  Msg: TMessage;
begin
  Msg := TMessage(Message);
  Msg.Result := DefWindowProc(FHandle, Msg.Msg, Msg.WParam, Msg.LParam);
end;

function TMainWindow.HandleMessage(var Msg: TMessage): Integer;
begin
  // Dispatch(Msg);
  case Msg.Msg of
    WM_CREATE      : WMCreate(     TWMCreate(Msg));
    WM_DESTROY     : WMDestroy(    TWMDestroy(Msg));
    WM_NCCREATE    : WMNcCreate(   TWMNCCreate(Msg));
    WM_PAINT       : WMPaint(      TWMPaint(Msg));
    WM_PRINTCLIENT : WMPrintClient(TWMPrintClient(Msg));
    WM_SIZE        : WMSize(       TWMSize(Msg));
  else
    // DefaultHandler(Msg);
    Msg.Result := DefWindowProc(FHandle, Msg.Msg, Msg.WParam, Msg.LParam);
  end;

  Result := Msg.Result;
end;

procedure TMainWindow.PaintContent(const APaintStruct: TPaintStruct);
begin

end;

function TMainWindow.ShowModal: Boolean;
var
  msg_  : MSG;
begin
  ShowWindow(FHandle, CmdShow);
  while GetMessage(msg_, 0, 0, 0) do begin
    TranslateMessage(msg_);
    DispatchMessage(msg_);
  end;
  Result := True;
end;

procedure TMainWindow.WMCreate(var Msg: TWMCreate);
begin
  Msg.Result := 0;
end;

procedure TMainWindow.WMDestroy(var Msg: TWMDestroy);
begin
  PostQuitMessage(0);
end;

procedure TMainWindow.WMNcCreate(var Msg: TWMNCCreate);
begin
  Msg.Result := Ord(True);
end;

procedure TMainWindow.WMPaint(var Msg: TWMPaint);
var
  ps: PAINTSTRUCT;
begin
  BeginPaint(FHandle, ps);
  PaintContent(ps);
  EndPaint(FHandle, ps);
end;

procedure TMainWindow.WMPrintClient(var Msg: TWMPrintClient);
var
  ps: PAINTSTRUCT;
begin
  ps.hdc := Msg.DC;
  GetClientRect(FHandle, ps.rcPaint);
  PaintContent(ps);
end;

procedure TMainWindow.WMSize(var Msg: TWMSize);
begin
  if FChild <> 0 then begin
    MoveWindow(FChild, 0, 0, Msg.Width, Msg.Height, True);
  end;
end;

initialization
  WindowByHwnd := TStringList.Create;

finalization
  WindowByHwnd.Free;

end.

该代码部分基于 Raymond Chen 的临时程序: http://blogs.msdn.com/b/oldnewthing/archive/2003/07/23/54576.aspx

我正在使用 TStringList 在 WndProc 函数中查找 TMainWindow 的实例,这效率相当低,但应该可以工作。

程序按原样崩溃,当我在 HandleMessage 函数中使用 Dispatch 时也会崩溃。

为什么它在离开构造函数后或在 Dispatch 调用中的修改版本中立即崩溃?

最佳答案

您调用CreateWindow像这样:

CreateWindow(
  'Scratch',                   { Class Name }
  'Scratch',                   { Title }
  WS_OVERLAPPEDWINDOW,         { Style }
  Integer(CW_USEDEFAULT),
  Integer(CW_USEDEFAULT),      { Position }
  Integer(CW_USEDEFAULT),
  Integer(CW_USEDEFAULT),      { Size }
  0,                           { Parent }
  0,                           { No menu }
  HInstance,                   { Instance }
  @Self                        { No special parameters }
)

除了最后一个参数的注释错误之外,也是错误的。表达式@Self是一个指向本地 Self 的指针多变的。 指向局部变量的指针。结果肯定很糟糕。您认为您正在传递一个指向正在创建的对象的指针,但这是由 Self 的值给出的。直接地。 删除@ .

<小时/>

有一些更直接的方法可以将对象引用与窗口句柄关联起来,而不是将句柄和引用都转换为字符串并进行 name=value 查找。

  • 对于初学者,您可以使用类型更安全的关联容器,例如 TDictionary<HWnd, TMainWindow> 。这至少可以让您摆脱所有字符串转换。

  • 您可以使用 SetWindowLongPtr 将对象引用直接与窗口句柄关联起来。和GetWindowLongPtr 。您可以按如下方式修改代码:

    constructor TMainWindow.Create;
      // ...
      wc.cbWndExtra := SizeOf(Self);
    
    function GetWindowByHwnd(hwnd: HWnd): TMainWindow;
    begin
      Result := TMainWindow(GetWindowLongPtr(hwnd, 0));
    end;
    
    procedure StoreWindowByHwnd(hwnd: HWND; AWindow: TMainWindow);
    begin
      AWindow.FHandle := hwnd;
      SetWindowLongPtr(hwnd, 0, IntPtr(AWindow));
    end;
    

    由于您使用“额外窗口字节”,因此您需要确保窗口类的后代不会尝试将相同的空间用于其他用途。您希望为后代提供某种机制来“注册”他们想要空间,将所有后代的请求相加,并将总数放入 cbWndExtra 中。 field 。然后为后代提供一种在他们保留的插槽中加载和存储数据的方法。

  • 您可以使用window properties 。将对象引用存储在属性值 SetProp 中在 wm_NCCreate消息,然后使用 RemoveProp 将其删除在 wm_NCDestroy消息。

    选择一个不太可能被后代类使用的属性名称。

  • 最后,您可以执行 VCL 所做的操作,即为每个对象分配一个新的“ stub ”窗口过程。它有一个模板过程跳转到常规窗口过程的地址;它为新的 stub 分配内存,使用当前对象引用填充模板,然后在调用RegisterClassEx时使用该 stub 指针。 .

关于delphi - 如何在不使用 VCL 的情况下使用自定义 Delphi 类创建窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11104206/

相关文章:

c++ - Win api MessageBox 替代方案,它有一组文本对齐 : center

c++ - win32 - 更高的随机最大值?

c++ - 创建自定义锁屏 Windows 7

delphi - 为什么编译器提示行前面有 [DCC 警告]?

mysql - Delphi DBX和MySQL连接噩梦: DBX Error: Driver could not be properly initialized

delphi - TGM map 访问被拒绝

forms - 启用表单大小调整

delphi - 谁在设计时绘制 TTimer?

Delphi 7/Soap/Xampp。我需要一个好的 Hello World 教程

delphi - 缓慢的内存释放(引用结构)-我的解决方法是一个好方法吗?