Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
903 views

How to support comparisons for QVariant objects containing a custom type?

According to the Qt documentation, QVariant::operator== does not work as one might expect if the variant contains a custom type: bool QVariant::operator== ( const QVariant & v ) const ...
4
votes
2answers
166 views

QVariant problem

Hi Although I read Qt documentation about QVriant but I didn't know what is QVriant and What is the application of QVariant . please someone describe it for me . thanks
4
votes
1answer
213 views

How QVariant Works Internally?

I want to know, How QVariant can internally stores, int, QMap, QList,... I mean what is the internal data-structure/Implementation? What is the overhead of storing and retrieving types (int, float) ...
4
votes
3answers
6k views

Convert a QVariant of a custom type to a QString

I have a custom class called Money that I have declared with Q_DECLARE_METATYPE(). class Money { public: Money(double d) { _value = d; } ~Money() {} QString toString() const { return ...
2
votes
4answers
372 views

Is there a reason why QVariant accepts only QList and not QVector nor QLinkedList

QVariant appears to accept QList<QVariant> and not QVector<QVariant> nor QLinkedList<QVariant>. Is it simply because it sees QList, QVector and QLinkedList as fundamentally similar ...
2
votes
2answers
781 views

In QT & C++, Covert QMap<QString, QMap<QString, int> > to a single QVariant type

Apparently QVariant (needed for QSettings class) supports creation from QMap<QString, QVariant> But trying to initialise something like this: QMap<QString, QVariant(QMap<QString, ...
2
votes
1answer
939 views

How to verify QVariant of type QVariant::UserType is expected type?

I'm writing testing code that will automatically iterate thru all Q_PROPERTY's of widgets and some properties are using types that are registered via qRegisterMetaType. If i want to read/write these ...
2
votes
3answers
487 views

Is there a possibility to automatically convert QVariants to Python objects?

PyQt 4.5.4, Python 2.6.2 Since version 4.5.2 PyQt is able to accept any Python objects where formerly only QVariants were allowed. This leads to some problems: >>> itemModel.data(index, ...
1
vote
1answer
149 views

Qt QMap.insert() failing

I have a levelObjects object that's a QList of QVariants of QMaps: QList< QVariant > levelObjects; Later on, when I try to change the value of something in one of the QMaps, it doesn't seem ...
1
vote
0answers
173 views

Qt enums comparison and output to QDebug

i am registering enums to the Qt meta-object system. i have double checked that all of those have a meta-type ID, and everything looks perfect. But i have some kind of unresolved issue with the ...
1
vote
2answers
603 views

Qt programming: How to use custom data type in QVariantMap?

I am writing a Qt app that maps a C++ class to Javascript object in QtWebkit. Firstly let me explain what I am trying to do: I have a class inherited from QObject: class myobj : public QObject { ...
1
vote
2answers
735 views

How do I get my python object back from a QVariant in PyQt4?

I am creating a subclass of QAbstractItemModel to be displayed in an QTreeView. My index() and parent() function creates the QModelIndex using the QAbstractItemModel inherited function createIndex ...
1
vote
1answer
870 views

Problem with QVariant/QTreeWidgetItem/iterator on qt4.4.3

In my qt app I have this object, filled before setting up my QTreeWidget's content: QList<QTreeWidgetItem*> items; I fill the QList by this way: QVariant qv; // I need this for ...
1
vote
2answers
1k views

QVariant and qRegisterMetaType question

I have a class Pkg and I need to use it under form of QVariant. At the end of my Pkg.h I have: Q_DECLARE_METATYPE(Pkg) and this does not give compile errors, but in my main.cpp I have to do: ...
0
votes
1answer
49 views

Convert a QStandardItemModel to a QVariant

I'm trying to send a QStandardItemModel-derived object to PythonQt, but I'm a little confused on how it needs to be sent. When I was using boost::python I had several controls like boost::noncopyable ...
0
votes
1answer
143 views

QVariantMap crash in destructor

I am building a JSON-object with Qt and convert it to a QString using QJson. This (normally) works fine and it does in this case but in the destructor of my Qt data structure, it crashes with an ...
0
votes
2answers
30 views

Unit Testing with QVariant

I want to make a unit-test for a function returning a qvariant to make sure if the qvariant is holding the right vlaue or not Please give me some idea to how should i proceed?
0
votes
0answers
245 views

PyQt: QAbstractListModel.setData gets passed a QVariant that cannot be converted to user data type

I'm implementing a QAbstractListModel derived class in PyQt that uses a custom data type. In C++, Qt uses QVariant to pass around the data of the model, and custom types are supported via ...
0
votes
2answers
228 views

How to call “QList<QVariant> QVariant::toList () const”

This is a pretty simple and probably dumb question, but I have forgotten how to use QList QVariant::toList () const QVariant s = this->page()->mainFrame()->evaluateJavaScript (QString ...