QObject is a Qt class which serves as a base class for all Qt objects.
0
votes
3answers
22 views
How to cast QTableWidgetItem to custom child class
I'm trying to cast a QTableWidgetItem into a child class. I have a class hierarchy like this:
(Parent -> Child)
QTableWidgetItem -> SortableTableWidgetItem -> EnhancedTableWidgetItem
or
...
5
votes
1answer
112 views
Properties undefined only when accessed through script
I'm running into some strange behaviour where a property can be accessed directly through QObject's property function, but not through JavaScript:
#include <QApplication>
#include ...
0
votes
1answer
37 views
Qt (4.8) simplest way to call slot with AutoConnection behavior
Please excuse typos in code below, I am typing it here quickly. I have something like this:
class Thing : public QObject {
...
public slots:
void doSomething ();
...
};
I then have an ...
0
votes
2answers
46 views
QObject set QList as parent using setParent()
I'm trying to use QObject tree delete mechanism to delete the list and all QObjects that are stored in the list. QT is still my very week area...
QList<QObject*>* list = new ...
0
votes
2answers
47 views
qt link error related to Q_OBJECT
Here is a sample qt code that is copied from qt documentation site.
#include <QtCore/QCoreApplication>
#include <QtCore/QFile>
#include <QtCore/QFileInfo>
#include ...
1
vote
1answer
61 views
Detach object from thread
Simple question: is it possible to detach a QObject from a QThread in order to move it to the main thread?
I use the following code:
QThread *thread = new QThread();
MyObject *object = new ...
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
2answers
40 views
When are dynamically allocated QObjects freed
My program does not appear to be leaking so I am curious about this. If I have initialized a subclassed QObject with new and I did not give the object a parent, when is it being destroyed? It seems to ...
0
votes
1answer
96 views
How heavy is QObject really? [duplicate]
I recently posted a question about the overhead of QObject in typical usage scenarios, but unfortunately the question got closed as a duplicate of another question that didn't technically answer the ...
1
vote
1answer
56 views
What is the right way to suppress Qt signals when values are explicitely set
I got a from QWidget derived class that holds three QSpinBoxes (e.g. coordinates). The valueChanged() signal is connected and is emitted in at least these three cases:
up/down button
manually ...
3
votes
0answers
76 views
How big is QObject? [duplicate]
I was curious how big QObject actually is, including the typical private data each instance creates dynamically. I couldn't get a sizeof for those, because of the way they are implemented.
EDIT: NOTE ...
1
vote
1answer
68 views
Multiple inheritance with QObject
I want to inherit QObject and another class and got an error:
undefined reference for `vtable for EduGraph'
I've read some threads about it and have fixed the sequence of the inherited classes in the ...
0
votes
2answers
81 views
Qt: block temporarily signals between 2 QObjects
I would like to block generically and temporarily the signals between 2 QObjects without modifying the other signals/slots behavior, and without knowing their contexts.
Something like ...
2
votes
2answers
85 views
C++ BlackBerry10: Should all custom classes extends from QObject?
I want to make my first BB10 app. My Questions is, should all objects extend from QObject, also custom classes that only used by a controller and not inside the QML file?
1
vote
1answer
47 views
QGraphicsObject auto destruction
QGraphicsObject inherit from both QGraphicsItem and QObject, but unlike most of QObject subclasses the constructor of QGraphicsObject doesn't have a QObject *parent parameter.
so does that mean that ...
0
votes
1answer
54 views
Qt Q_OBJECT class compilation
What is needed for errorfree compilation when adding a class that is flagged as
Q_OBJECT
? Should one run qmake file ?
New classes are written in .h .cpp files that are already added in .pro .pri ...
0
votes
1answer
75 views
Convert const QObject* to QObject*
I am quite new to Qt. Let MyClass be a sub-class of QObject.
Is there a way to convert properly a const MyClass * object to a MyClass * object?
I wanted to create a constructor MyClass(const MyClass ...
1
vote
2answers
35 views
Make QObject wait for its listeners before executing function
I'm working with structured light, and I have QCamera and QProjector classes I wrote. When the projector projects a pattern, it must wait for all attached cameras to capture that pattern before it ...
0
votes
1answer
190 views
Object::connect: No such signal
I have a problem to create custom slots/signal with a struct. I have the following code :
qRegisterMetaType<namespace::myClassA::aStruct>();
QObject::connect(&myClassA, ...
0
votes
2answers
322 views
connecting signal/slot across different threads between QObjects
I wanted to know what is the best practice to connect signal/slots between two QObjects created in the contructor of MainWindow but moved to different threads later...default connections seems not ...
2
votes
3answers
61 views
reinterpret_cast to QObject's subling
I've got some kind of object factory (template based), that works pretty good for my purposes. But now I've tried to work with class, that derives from both QObject and pure abstract class (interface) ...
2
votes
2answers
72 views
How do I define containers that inherit each other if the contained objects inherit too? (With QObject as base)
Background:
I have my class called ObjectListModel which inherits QAbstractListModel and contains a QObjectList. The objects are rows and their properties are columns (set using a QMetaObject), and ...
0
votes
0answers
43 views
A potential solution to QObject multiple inheritance? [duplicate]
Possible Duplicate:
QObject Multiple Inheritance
Problem
In Qt, the base class QObject DO NOT support multiple inheritance.
QObject Multiple Inheritance
Example
class Test : public ...
0
votes
1answer
60 views
Force javascript to reevaluate on signals?
So I have the following case:
QML file:
import "Script.js" as MyScript
SomeItem{
source: MyScript.getSource
}
JavaScript file ( Script.js ) :
function getSource(){
return ...
3
votes
3answers
2k views
Unresolved external symbol "public: virtual struct QMetaObject const * __thiscall Parent
I inherent a class from QObject :
class Parent: public QObject
{
Q_OBJECT
QObject* cl;
public:
Parent(QObject *paretn=0):QObject(paretn) {
cl = NULL;
}
QObject* getCl() ...
1
vote
2answers
114 views
Using pointers for QObject attributes
Since I learned Qt, I've been confused by the fact that in the documentations, and books I've read, they use pointers for attributes that are instances of QObject subclasses, such as widgets.
I know ...
-1
votes
2answers
70 views
assignment of two QObject [closed]
i have two class names "mamad" and "student" and both of them are inherit from my class "Base"
that "Base" inherit from QObject
in Student Class i have a field : "subject" that is a mamad
and i ...
1
vote
1answer
366 views
Serializing my custom class in Qt
i use Reading/writing QObjects
is it true?
i serialize a class with it but when deserialize it isn't the original class!
what can i do?
this is my base class header:
class Base : public QObject
...
2
votes
1answer
129 views
QObject error with macro and include
I want to use signal and slot in my program and for this I am told Ineed to add Q_OBJECT as below.
Well I have a class:
class A
{
Q_OBJECT
public:
A();
};
This gives an error which says ...
5
votes
1answer
66 views
will destroyed() be emitted if the constructor of a class derived from QObject throws?
Ive seen Qt GUI syntax like the following all over the place:
myDialog::myDialog(QWidget *parent, Qt::WFlags flags):QDialog(parent, flags)
{
QPushButton *button = new QPushButton("&Download", ...
0
votes
2answers
180 views
Qt interfaces class
How can I create an interface class, something like this :
template<typename file_system_t>
class ireciver_intervace : public QObject
{
public:
typedef typename ...
1
vote
1answer
85 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.
...
0
votes
1answer
250 views
QSharedPointer and QObject::deleteLater
I have a situation where a QSharedPointer managed object signalizes that it has finished it's purpose and is ready for deletion soon (after execution left the function emitting my readyForDeletion ...
3
votes
1answer
167 views
Does QObject distinguish between stack and heap allocated children when deleting?
According to the Qt documentation:
QObjects organize themselves in object trees. When you create a
QObject with another object as parent, the object will automatically
add itself to the ...
1
vote
1answer
75 views
Qt - Q_OBJECT and macros
In Qt, we know that Q_OBJECT is a macro. What does macro mean in this context? Especially that I have found that the term macro may have several different definitions.
Thanks.
2
votes
1answer
536 views
QThread finished() connected to deletelater of a QObject
I have thought a lot and read lot of articles before asking this question here. None of the articles gave me a proper answer.
...
1
vote
0answers
84 views
Qt-fy existing enum to use with Qt metadata
Let's assume I have an existing enum X { A, B } and want to use it with Qt metadata such as QMetaObject / QMetaEnum.
QMetaObject meta = FsxSimConnectQtfier::staticMetaObject;
for (int i=0; i < ...
1
vote
1answer
119 views
Qt: No metadata by meta.enumeratorCount() for enum in Q_OBJECT, why?
I have the following class, where I try to obtain some metadata of an enum MyEnum. However, when looping over meta.enumeratorCount() its count is always 0. Basically I was follwing this example here. ...
3
votes
1answer
162 views
Generated moc names are not correct
I am working on a Qt based project that uses cmake. All of my generated moc files are named *.moc, but I have some files that their generated moc files have names moc_*.cpp, not *.moc. Why this ...
1
vote
2answers
143 views
Qt: RemoveWidget and object deletion
I have been reading Qt documentation and playing around with the qobject tree. I was wondering if there is a way to remove widgets from inside the tree that would delete them from memory.
When ...
0
votes
1answer
230 views
How to compile the header file with Q_OBJECT macro in Xcode?
I create C++ project in Xcode which links against the Qt framework. The hello world program works well. When I add a class derived from QObject and add the Q_OBJCET macro, there is link error.
The ...
1
vote
2answers
218 views
QObject based class has a queued connection to itself
I was digging into some source code I am working on. I found a peculiar statement that someone had coded. The source code is a GUI application with a QML GUI and uses QT 4.7.x.
The snippet below ...
0
votes
1answer
294 views
Use custom class as Q_PROPERTY
I have two classes, TestA and TestB. TestA extends QObject. I have it set up with a few Q_PROPERTY's like so.
Q_PROPERTY(QString a_string READ getString WRITE setString)
Q_PROPERTY(int a_int READ ...
1
vote
1answer
350 views
QObject.moveToThread(thread) if thread is a child of that object
I wanted to create QObject (object) with the child QThread (thread) with that object as parent (for keeping thread alive while object is alive) and make object.moveToThread(thread) but signal to start ...
0
votes
1answer
56 views
Which parts of Windows does Qt rely on?
I believe Qt uses GDI(+) and you start with a QObject. Does it call ActiveX components, COM etc?
For example, putting WebKit in a form is there anything happening there that uses the Windows bits and ...
0
votes
1answer
70 views
Qt/C++, QObject::connect() effect on currently executed function?
I always use QObject::connect() in all my applications but it is not clear to me its effect when my program is currently inside a function. Suppose I have the following code:
void main() {
...
0
votes
3answers
238 views
QObject multiple inheritance and operator new
Stuck with this weird question
Why following code is OK for g++
#include <QObject>
class B {
public:
B(){}
~B(){}
};
class A : public QObject, public B {
Q_OBJECT
public:
A(QObject * ...
0
votes
4answers
678 views
Optimal way to self-delete QObjects
I have two classes Node and NodeContainer:
class Node: public QObject
{
NodeContainer* parent;
}
class NodeContainer : QObject
{
bool deleteChild(Node*child)
{
...
2
votes
1answer
629 views
QObject::QObject(QObject parent=0) is private in this context
I have a class called mesh. I want to keep track of its objects. So when ever a new
mesh is created, I wanted to have a signal. And soo I've added
class mesh: public QObject
and made all methods ...
2
votes
1answer
1k views
Why can't I set a QObject parent in a class of which QObject is only an indirect base?
I have a class BatchItem that inherits QObject, plus several classes that inherit from BatchItem:
#ifndef BATCHITEM_H
#define BATCHITEM_H
#include <QObject>
class BatchItem : public QObject
{
...






