現在、独自の型をプロパティ型として使用するときに問題があります。
私のカスタム型は名前空間内で定義されています。グローバル名前空間に入れると、すべて問題なく動作します。
名前空間内でカスタム型をプロパティ値として使用することはできますか?
これは最小限の例です(私はQt5.0とg ++ 4.7.3を使用しています)
test.pro
ファイルは次のとおりです。
LANGUAGE = C++
QT += core gui widgets
TARGET = test
QMAKE_CXXFLAGS += -std=c++11
HEADERS += test.h
SOURCES += test.cpp
test.h
ファイルは次のとおりです。
#include <QtCore>
#include <QtGui>
#include <QtWidgets>
namespace MyNamespace
{
struct MyValue
{
private:
QString a;
int b;
public:
MyValue(const QString &a="", int b=0)
: a(a), b(b)
{
}
bool operator !=(const MyValue &other) const
{
return (this->a!=other.a) || (this->b!=other.b);
}
friend QDataStream &operator<<(QDataStream &stream, const MyNamespace::MyValue &value);
friend QDataStream &operator>>(QDataStream &stream, MyNamespace::MyValue &value);
friend QDebug operator<<(QDebug debug, const MyNamespace::MyValue &value);
};
inline QDataStream &operator<<(QDataStream &stream, const MyNamespace::MyValue &value)
{
stream << value.a;
return stream << value.b;
}
inline QDataStream &operator>>(QDataStream &stream, MyNamespace::MyValue &value)
{
stream >> value.a;
return stream >> value.b;
}
inline QDebug operator<<(QDebug debug, const MyNamespace::MyValue &value)
{
return debug << "MyValue("<<value.a<<", "<<value.b<<")";
}
}
Q_DECLARE_METATYPE(MyNamespace::MyValue)
namespace AnotherNamespace
{
typedef MyNamespace::MyValue MyValue;
class MyClass : public QObject
{
Q_OBJECT
Q_PROPERTY(MyValue value READ value WRITE setValue NOTIFY valueChanged)
public:
MyValue value()
{
return value_;
}
public slots:
void setValue(const MyValue &value)
{
if(this->value() != value)
{
value_ = value;
emit valueChanged(value);
}
}
signals:
void valueChanged(const MyValue &value);
private:
MyValue value_;
};
}
test.cpp ファイルは次のとおりです。
#include "test.h"
int main(int argc, char** argv)
{
QApplication app(argc, argv);
qRegisterMetaTypeStreamOperators<MyNamespace::MyValue>("MyNamespace::MyValue");
AnotherNamespace::MyClass myObject;
myObject.setValue(MyNamespace::MyValue("the answer", 42));
QMetaObject metaObject = AnotherNamespace::MyClass::staticMetaObject;
QMetaProperty metaProperty = metaObject.property(metaObject.indexOfProperty("value"));
QVariant variant = metaProperty.read(&myObject);
MyNamespace::MyValue value = variant.value<MyNamespace::MyValue>();
qDebug() << value;
qDebug() << "\nIt's interesting, that this is working without problems:";
variant = QVariant::fromValue(MyNamespace::MyValue("2^4", 16));
value = variant.value<MyNamespace::MyValue>();
qDebug() << value;
return 0;
}
この最小の例の出力は次のとおりです。
QMetaProperty::read: Unable to handle unregistered datatype 'MyValue' for property 'AnotherNamespace::MyClass::value'
MyValue( "" , 0 )
It's interesting, that this is working without problems:
MyValue( "2^4" , 16 )
すでに述べたように、最小限の例から名前空間の使用を削除した後、次の出力ですべてが問題なく機能します
MyValue( "the answer" , 42 )
It's interesting, that this is working without problems:
MyValue( "2^4" , 16 )