另请参阅我的部分问题:从 JavaScript 传递到 Qt/C++ 对象的字符串
WebPage
我在我的WebView
(使用)上使用了这个自定义setPage
,字符串被错误地传递了。当我禁用调用setPage
时,字符串正确传递。
我有一个 C++ 对象(继承自QWidget
),它在网页上显示一个 activeX(使用ActiveQt
and QWebView
)。ActiveX 对象显示得很好。我已经注册了自定义类型并使用 Qt MetaType 系统来实例化 HTML 对象。
如果我想更新该 C++ 对象(不是 ActiveX)的属性并从 JavaScript 调用,则字符串会得到错误的翻译。如果我传入一些字符串,我只会在我的 C++ 方法中得到一个 1 个字符的字符串。查看内存告诉我整个字符串都存在(格式化为 UTF-32)。
如果我现在不调用WebPage
为我加载插件的自定义(使用setPage
on QWebView
),我不会得到 ActiveX - 这是预期的 - 并且字符串被正确传递。
我不太明白为什么这不起作用。即使setPage
被调用,我也是通过 JavaScript/QtWebKit 桥与 C++ 对象交谈,而不是与 ActiveX 组件交谈。
我在 Windows 7 上,64 位,使用 Qt 4.7.4。
一些代码(C++):
class Device : public QWidget
{
Q_OBJECT
public:
explicit Device(QWidget* parent = 0);
Device(const Device& other);
Device& operator=(const Device& other);
~Device();
QString name() const;
void setName(QString);
Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged)
signals:
void nameChanged(QString);
private:
QAxWidget* ax;
};
Q_DECLARE_METATYPE(Device);
Device::Device(QWidget* parent/* = 0*/)
: QWidget(parent)
{
ax = new QAxWidget(this);
ax->setControl("{...}");
}
QString Device::name() const
{
return _name;
}
void Device::setName(QString name)
{
if (_name != name) {
_name = name;
emit nameChanged(name);
}
}
// Needed for ActiveQt objects to work
class MapPage : public QWebPage
{
Q_OBJECT
protected:
QObject* createPlugin(const QString& classId, const QUrl& url, const QStringList& paramNames, const QStringList& paramValues);
public:
MapPage(QObject* parent = 0);
};
// ============================================================================
// Needed for ActiveQt objects to work
MapPage::MapPage(QObject* parent/* = 0*/)
: QWebPage(parent)
{
qRegisterMetaType<Device>();
settings()->setAttribute(QWebSettings::PluginsEnabled, true);
}
QObject* MapPage::createPlugin(const QString& classId, const QUrl& url, const QStringList& paramNames, const QStringList& paramValues)
{
// Create widget using QUiLoader, which means widgets don't need to be registered with meta object system (only for gui objects!).
QUiLoader loader;
QObject* result = 0;//loader.createWidget(classId, view());
// If loading failed, use the Qt Metatype system; expect objects derived from QObject
if (!result) {
//result = static_cast<QWidget*>(QMetaType::construct(QMetaType::type(classId.toLatin1())));
int id = QMetaType::type("Device");
void* classPtr = QMetaType::construct(id);
result = static_cast<QWidget*>(classPtr);
}
return result;
}
然后在我的窗户上
qRegisterMetaType<Device>();
mapPage = new MapPage(this);
ui.webView->setPage(mapPage); // Needed for ActiveQt objects to work - makes strings broken
...
ui.webView->setHtml(src);