0

另请参阅我的部分问题:从 JavaScript 传递到 Qt/C++ 对象的字符串

WebPage我在我的WebView(使用)上使用了这个自定义setPage,字符串被错误地传递了。当我禁用调用setPage时,字符串正确传递。

我有一个 C++ 对象(继承自QWidget),它在网页上显示一个 activeX(使用ActiveQtand QWebView)。ActiveX 对象显示得很好。我已经注册了自定义类型并使用 Qt MetaType 系统来实例化 HTML 对象。

如果我想更新该 C++ 对象(不是 ActiveX)的属性并从 JavaScript 调用,则字符串会得到错误的翻译。如果我传入一些字符串,我只会在我的 C++ 方法中得到一个 1 个字符的字符串。查看内存告诉我整个字符串都存在(格式化为 UTF-32)。

如果我现在不调用WebPage为我加载插件的自定义(使用setPageon 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);
4

1 回答 1

0

将其缩小到可能与 JavaScript/HTML 相关的问题。

//device.name = 'test'; // works 
var str = 'test'; 
previewCameo.view = str; // works 

但是当我通过 HTML 拖放事件(使用 e.dataTransfer)获得名称时,它会失败

var name = e.dataTransfer.getData('name'); 
alert(name); // shows correct name 
device.name = name; // fails <------ 
device.name = e.dataTransfer.getData('name'); // fails <------

因此,由于某种原因,dataTransfer 数据的检索失败。为什么?在 Linux 上,我确实得到了一个字符串,但它的格式类似于 t[]e[]s[]t[]。似乎是编码问题。

于 2011-11-04T20:33:05.350 回答