1

[RAD Studio XE3 / C++]
在这个阶段我有一个仅在 Windows 中运行的 FMX 项目,但我需要检测 USB 设备连接和断开时的事件。我有一个类似的 VCL 应用程序可以很好地做到这一点,但是 Application->HookMainWindow 没有在 FMX 中公开(仅 VCL)。

有没有一种优雅的方法来处理这个?还是我必须在我的 FMX 应用程序中加入一些 VCL 的东西才能让它工作?我想我必须把它抽象出来,这样我才能支持其他平台。与此同时,虽然我需要让 Windows 解决方案正常工作。

如果需要“VCL hack”,我将如何从我的 Fmx 应用程序中引用 vcl::Forms::Application ?

干杯。

4

2 回答 2

1

这可以帮助,使用 TMessage 方式?

type
TMyMessageClass = class(TMessage)
MyProp1 : Integer;
MyProp2 : string;
end;

procedure MyForm.FormCreate(Sender: TObject);
begin
TMessageManager.DefaultManager.SubscribeToMessage(TMyMessageClass, Self.ProcessMessage);
end;

procedure MyForm.ProcessMessage(Sender : TObject; M : TMessage);
begin

if M is TMyMessageClass then
begin
//Do something
end;

end;

从线程我做了类似的事情......

procedure TMyThread.Execute;
var
FMyMessage : TMyMessageClass;
begin

//stuff

Synchronize(
procedure
begin
FMyMessageClass := TMyMessageClass.Create;
FMyMessageClass.MyProp1 := 1;
FMyMessageClass.MyProp2 := 'Hello';
TMessageManager.DefaultManager.SendMessage(nil, FMyMessageClass);
end);

希望这可以帮助

于 2012-11-23T02:15:01.973 回答
0

我找到了一个解决方案,感谢http://www.haogongju.net/art/1480814 能够附加一些文件会很好,但看起来它必须内联。

系统事件.h

#ifndef SystemEventsH
#define SystemEventsH
#include <System.Classes.hpp>
#include <FMX.Controls.hpp>
#include <FMX.Forms.hpp>
#include "DeviceChanged.h"
//---------------------------------------------------------------------------
class TSystemEvents : TObject
{
private:
    TDeviceChangedMethod pDeviceChangeHandler;
    TForm *pOwnerForm;
#ifdef _Windows
    HWND Hwnd;      // Save the window handle
    LONG OldWndProc;// And remember the old WndProc so we can put it back later
#endif
public:
    __fastcall TSystemEvents(TForm *_pForm);
    __fastcall ~TSystemEvents();
    __property TForm *OwnerForm = {read=pOwnerForm};
#ifdef _Windows
    LRESULT __stdcall MessageHandler(Winapi::Messages::TMessage &Message);
#endif // _Windows
    __property TDeviceChangedMethod DeviceChangeHandler={read=pDeviceChangeHandler,write=pDeviceChangeHandler};
};
extern TSystemEvents *SystemEvents;
#endif

系统事件.cpp

#include <fmx.h>
#include <FMX.Platform.Win.hpp>
#pragma hdrstop
#include "SystemEvents.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#ifdef _Windows
LRESULT __stdcall WindowProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
    if (SystemEvents == NULL)
    {
        return 0;
    }
    // This routine can't be a closure because the winapi needs to call it as
    // a LONGPTR.  So from here I can pass it into the SystemEvents object.
    Winapi::Messages::TMessage _Message;
    _Message.Msg = msg;
    _Message.WParam = wParam;
    _Message.LParam = lParam;
    return (LRESULT)SystemEvents->MessageHandler(_Message);
}
#endif //_Windows
__fastcall TSystemEvents::TSystemEvents(TForm *_pForm)
{
    pOwnerForm = _pForm;
    pDeviceChangeHandler = NULL;
#ifdef _Windows
    // Owner form handle is in FMX framework, but we want a Hwnd handle:
    Hwnd = FmxHandleToHWND(pOwnerForm->Handle);
    // Save the original WindowProc address
    OldWndProc = GetWindowLongPtr(Hwnd, GWL_WNDPROC);
    // Redirect the messages to my own function
    SetWindowLongPtr(Hwnd, GWL_WNDPROC, (LONG_PTR)&WindowProc);
#endif
}
__fastcall TSystemEvents::~TSystemEvents()
{
#ifdef _Windows
    // Very important we undo our hack before the app finishes
    SetWindowLongPtr(Hwnd, GWL_WNDPROC, OldWndProc);
#endif
}
LRESULT __stdcall TSystemEvents::MessageHandler(Winapi::Messages::TMessage &Message)
{
#ifdef _Windows
    if (Message.Msg == WM_DEVICECHANGE)
    {
        if (DeviceChangeHandler != NULL)
        {
            DeviceChangeHandler(this, new TDeviceChangedMessage(TDeviceChangedMessage::ParamForWin32wParam(Message.WParam)));
            return 1;
        }
    }
    return CallWindowProc((WNDPROC)OldWndProc, Hwnd, Message.Msg, Message.WParam, Message.LParam);
#endif
    return 0;
}

DeviceChanged.h

#ifndef DeviceChangedH
#define DeviceChangedH
//---------------------------------------------------------------------------
typedef enum {Unknown = 0, DeviceNodesChanged} DeviceChangedParam;
class TDeviceChangedMessage
{
private:
    DeviceChangedParam eParam;
public:
    TDeviceChangedMessage(DeviceChangedParam _eParam)
    {
        eParam = _eParam;
    }
    __property DeviceChangedParam Param={read=eParam};
    static DeviceChangedParam __fastcall ParamForWin32wParam(WPARAM _wParam);
};
typedef void __fastcall (__closure *TDeviceChangedMethod)(System::TObject* Sender, TDeviceChangedMessage* M);
#endif

DeviceChanged.cpp

#include <fmx.h>
#include <Dbt.h>
#pragma hdrstop
#include "DeviceChanged.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
DeviceChangedParam __fastcall TDeviceChangedMessage::ParamForWin32wParam(WPARAM _wParam)
{
    if (_wParam == DBT_DEVNODES_CHANGED)
        return DeviceChangedParam::DeviceNodesChanged;
    return DeviceChangedParam::Unknown;
}

要使用它:

#include <SystemEvents.h>
TSystemEvents *SystemEvents;
// In Constructor:
{
    SystemEvents = new TSystemEvents(this);
    SystemEvents->DeviceChangeHandler = OnDeviceChanged;
}
// In Destructor:
{
    deletenullify(SystemEvents);
}
// Handler:
void __fastcall TMainForm::OnDeviceChanged(System::TObject* Sender, TDeviceChangedMessage *M)
{
    if (M->Param == DeviceChangedParam::DeviceNodesChanged)
    {
        OnUSBDeviceChanged();
    }
}

为我工作。:)

于 2012-11-23T04:57:57.520 回答