派生自QSettings并存储QIcon



我尝试使用类来存储QIcon,它派生自QSettings,如下所示:

setValue("fancy_icon",QIcon: fromTheme(记录新的"));

但是我有一个错误:

QVariant::save:无法保存69.

它不起作用。令人惊讶的是,如果我只是构造一个QSettings实例并保存任何69类型(QIcon)元素-它工作得很好。

QSettings set;
set.setValue("foo", QIcon());
setValue("fancy_icon", QIcon::fromTheme("document-new"));

问题是-为什么现在它工作?我怎样才能做得更好?

在Qt的源代码中做了一些挖掘。

qvariant.cpp中,unable to save type错误调用的唯一地方是这里:

if (!QMetaType::save(s, d.type, constData())) {
    Q_ASSERT_X(false, "QVariant::save", "Invalid type to save");
    qWarning("QVariant::save: unable to save type %d.", d.type);
}

所以我去了QMetaType::save:

bool QMetaType::save(QDataStream &stream, int type, const void *data)
{
    ...
    case QMetaType::QPalette:
    case QMetaType::QIcon:
    case QMetaType::QImage:
    ...
        if (!qMetaTypeGuiHelper)
            return false;
        qMetaTypeGuiHelper[type - FirstGuiType].saveOp(stream, data);
        break;
    ...
    return true;
}

qMetaTypeGuiHelper声明如下:

Q_CORE_EXPORT const QMetaTypeGuiHelper *qMetaTypeGuiHelper = 0;  

显然,在您的例子中,qMetaTypeGuiHelper等于零。所以我决定去找它的产地。并发现在QtGui模块:

static const QVariant::Handler *qt_guivariant_last_handler = 0;
int qRegisterGuiVariant()
{
    qt_guivariant_last_handler = QVariant::handler;
    QVariant::handler = &qt_gui_variant_handler;
    qMetaTypeGuiHelper = qVariantGuiHelper;
    return 1;
}
Q_CONSTRUCTOR_FUNCTION(qRegisterGuiVariant)
int qUnregisterGuiVariant()
{
    QVariant::handler = qt_guivariant_last_handler;
    qMetaTypeGuiHelper = 0;
    return 1;
}
Q_DESTRUCTOR_FUNCTION(qUnregisterGuiVariant)

这意味着,为了将QIcon保存到QVariant,您只需要调用qRegisterGuiVariant();。但是这个函数已经在QApplicationPrivate::initialize()中被调用了,它是从QApplicationPrivate::construct中调用的,从QApplication::QApplication(int &argc, char **argv)

中调用(哇,好长的列表…)

所以我不得不问,在你的main函数中,你是否创建了QApplication实例?

p。S:真好玩!

相关内容

  • 没有找到相关文章

最新更新