我正在尝试使用 ActiveQt 库来处理具有 IDispatch * 类型参数的 ActiveX 事件,例如在 idl 文件中。
// ...
library RecognitionClientLib
{
importlib("stdole2.tlb");
[
uuid(XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX),
helpstring("_IIFactoryEvents Interface")
]
dispinterface _IIRecognizerFactoryEvents
{
properties:
methods:
[id(1), helpstring("method OnError")] void OnError(
[in] LONG ilOperationCode,
[in] BSTR iszDescription
);
[id(2), helpstring("method OnResult")] void OnResult(
[in] IDispatch* ilpSource,
[in] LONG ilOperationCode
);
};
[
uuid(XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX),
control,
helpstring("IFactory Class")
]
// ...
我使用了 dumpcpp.exe 并为该对象生成了一个头文件和一个 cpp 文件。生成的文件跳过了事件生成,如头文件所示:
// skipping event interface _IIFactoryEvents
根据该文档,IDispatch* 参数应转换为“QAxBase::asVariant()”。因此,我尝试将事件连接如下:
ClientLib::IFactory* lpFactory(new ClientLib::IFactory());
bool lbOk(connect(
lpFactory,
SIGNAL(OnError(
int,
const QString&
)),
SLOT(onError(
int,
const QString&
))
));
assert(lbOk);
lbOk = connect(
lpFactory,
SIGNAL(OnResult(
QVariant,
int
)),
SLOT(onResult(
QVariant,
int
))
);
assert(lbOk);
我连接 OnError 的信号没有问题,但是 OnResult 的连接失败了
Object::connect: 没有这样的信号 ClientLib::IFactory::OnResult(QAxObject*,int)
请帮助我了解 IDispatch* 类型的参数应该使用什么参数类型?
非常感谢!