QVariant is a data type in Qt library, that acts as a "container" for most of the common Qt data types.
0
votes
1answer
18 views
Derives from QSettings and store QIcon
I tried to store QIcon using class, which derives from QSettings as follows:
setValue("fancy_icon", QIcon::fromTheme("document-new"));
but I've got an error:
QVariant::save: unable to save ...
0
votes
0answers
24 views
Read array of custom metatype from QSettings
I have a problem with reading custom metatype data from QSetting.
I have a class:
class MusicOwner
{
public:
MusicOwner() :
songs_count(0),
id(0)
{}
explicit ...
0
votes
1answer
41 views
BlackBerry10 Cascades: How to convert QObject to QVariant?
I have a list of QObjects* and want to add them to my DataModel. But the datamodel needs a QVariant instead of QObject.
Is is possible to convert QObjects to QVariant?
0
votes
0answers
22 views
QVariant<Custom> streaming
I have the following problem.
I have a custom class declared with Q_DECLARE_METATYPE macro, and input/output streaming operands registered with qRegisterMetaTypeStreamOperators(). I use this class to ...
0
votes
1answer
115 views
C++ error: no matching function call from pointer to pointer reference using Qt and QVariant
I have a QObject subclass defined as such (inside a "Danbooru" namespace):
#ifndef DANBOORUPOST_H
#define DANBOORUPOST_H
// Qt
#include <QtCore/QObject>
#include <QtCore/QVariant>
...
0
votes
1answer
69 views
QVariant.value<T>() Causing Problems
So I have a custom class Foo which has been registered as a metatype using the Q_DECLARE_METATYPE(Foo) macro at the end of the class definition.
I can set items within a list, check to see if ...
2
votes
1answer
134 views
qVariantValue is “QT_DEPRECATED” - what is the replacement?
i need to convert Qt legacy code from 4 to 5.1
now i have compilation error in visual studio 2010 :
SingleItem* item = qVariantValue<SingleItem*>(index.data());
gives me :
.cpp(63): ...
1
vote
0answers
43 views
Convert QVariant back to dict in Python
I've saved dict with QSetting, and when I load it i get QVariant
>>dict
{u'key1': u'val1', u'key2': u'val2',....}
...
>>loadedDict
<PyQt4.QtCore.QVariant object at 0x02B11848>
...
0
votes
0answers
215 views
Qt QDbus Sending Custom Types with QVariant
I'm trying to send a custom class ( "Span" ) inside a QVariant across the Dbus session bus in Qt between 2 simple applications. Span is a simple class that contains 2 double type properties. I have ...
0
votes
0answers
60 views
Strange ghost data QVariant: None TypeName
def headerData(self, section, orientation, role=QtCore.Qt.DisplayRole):
if (orientation == QtCore.Qt.Vertical):
index = self.index(section, 0)
variant = self.data(index, role)
b ...
1
vote
1answer
172 views
PyQt: How do I find tuples using QComboBox::findData()?
I can't get QComboBox::findData to work properly in my PyQt application.
It seems as if PyQt doesn't compare QVariant's with Python tuples properly, causing Qt not to find my tuples. Example follows:
...
1
vote
1answer
84 views
How to make a class in Qt both scriptable and serializable?
I'm trying to write a class with two basic characteristics:
It needs to be scriptable - the class contains a number of properties and methods decorated with Q_INVOKABLE that are exposed to scripts.
...
4
votes
1answer
374 views
How to avoid duplicate declarations of Q_DECLARE_METATYPE<aCommonType>
My project consists of an app that links to two static libraries. Each of the libraries declares Q_DECLARE_METATYPE< QUuid >, in order to use QUuid with QVariant, which leads to a 'redefinition ...
0
votes
1answer
96 views
Map QVariant type to SQLite type
I need to convert type of QVariant variable to QString of SQLite data type.
It seems, that QSqlDriver should do that, but I can't find any method for such conversion.
2
votes
2answers
850 views
Assigning to nested QVariantMap
#include <QtCore/QCoreApplication>
#include <QVariant>
#include <QtDebug>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
QVariantMap map;
map["foo"] ...
1
vote
1answer
751 views
How to access the array that is value of a QVariantMap?
I have a QVariantMap whose key is a string and value is an array(of ints or strings)
How do I get the individual elements of the array?
map["key"] has a method toList(). Can I apply that to arrays?
0
votes
1answer
90 views
And so a QVariant instantiation silently registeres a (previously declared) metatype
Take this program (adapted from an exploratory test-case, where I noticed that a custom metatype bahaves as if it was registered, although qRegisterMetaType had not been called):
#include ...
1
vote
1answer
246 views
How deserialize the output from a QVariant without Qt
How Can I deserialize the output QVariant to std::string without using QT.
by reqs, My program could not include a Qt.
QVariant.toString().toStdString();
Example.
file.ini (write with ...
1
vote
1answer
250 views
what is the format for saving a qml QVariantList<QVariant> in qml file so it can be bindable in qml when loading the file?
i am doing an application and i need to save the QVariantList list in a qml file so i can load it in qml every time i start the application
to make it more clear i read qpoints from qml and store ...
0
votes
1answer
305 views
convert function return from ‘std::vector<QString>’ to ‘QVariant’
I am working on a QT based application.One of of my class is a child class of QAbstractTableModel. The data fuction has a return type of QVariant(Union).But i want to return a custom type ...
0
votes
1answer
566 views
Qt, QStandarItemModel: Delegation items on custom QComboBox filling its contents from instantiator of model.
I need to implement a table in Qt that shows a QComboBox on each row on a particular column.
Based on this question: QStandardItem + QComboBox I succesfully managed to create a QItemDelegate. In that ...
3
votes
1answer
3k views
Casting a list as QVariant or QVariant List
My problem is this. I have lists of different numeric types, for example:
QList<qreal> mylist;
Now, in my code I have a function that that expects a QVariant argument which is mylist. The ...
0
votes
2answers
799 views
Is there an easy way of using the QVariant class with hexadecimal strings?
This code sample works as I would expect:
v = QVariant("123456");
qDebug() << v; // QVariant(QString, "123456")
v.convert(QVariant::Int);
qDebug() << v; // QVariant(int, 123456)
...
1
vote
1answer
319 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 ...
1
vote
1answer
468 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 ...
0
votes
2answers
498 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
41 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?
2
votes
1answer
473 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 ...
0
votes
2answers
949 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 ...
2
votes
4answers
1k 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 ...
5
votes
2answers
605 views
5
votes
1answer
631 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) ...
2
votes
2answers
2k 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 {
...
3
votes
2answers
2k 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, ...
3
votes
1answer
3k 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 ...
13
votes
2answers
2k 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
...
3
votes
2answers
2k 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 ...
2
votes
3answers
1k 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, ...
6
votes
3answers
9k 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 ...
1
vote
1answer
1k 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
2k 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:
...
