Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
6answers
235 views

Qt: Can child objects be composed in their parent object?

In Qt, can I embed child widgets in their parent via composition, or do I have to create them with new? class MyWindow : public QMainWindow { ... private: QPushButton myButton; } ...
6
votes
2answers
2k views

In Qt, how do I use Q_OBJECT slots and signals with multiple inheritance?

I looked through the related questions and couldn't find anything that addresses exactly what I was talking about, so let me describe. I have a class, let's say foo that needs to have its own slots ...
5
votes
6answers
246 views

QT: Is it a good idea to base my domain objects on QObject?

I'm reasonably new to using the QT framework in combination with C++. I was wondering: Is it a good idea to base my domain classes on QObject? Or should I only do this for classes higher up in the ...
4
votes
1answer
2k views

Qt interfaces or abstract classes and qobject_cast()

I have a fairly complex set of C++ classes that are re-written from Java. So each class has a single inherited class, and then it also implements one or more abstract classes (or interfaces). Is it ...
4
votes
2answers
338 views

Should non-QObject derived classes “always” be put on the stack?

Coming from the Symbian world, I'm used to using the heap as much as possible to avoid running out of stack space, especially when handling descriptors. CBase derived classes were always dynamically ...
3
votes
2answers
583 views

Is it possible to mix template-derived C++ classes with Qt's Q_OBJECT?

In my application, I have the following class hierarchy: class Word { ... } template <typename T> class Dictionary { ... }; class WordDictionary : public Dictionary<Word> { ...
3
votes
1answer
661 views

Qt, CMake, Visual Studio and Q_OBJECT in cpp files

I'm developing a large project using Qt 4.6, CMake 2.8 and Visual Studio 2008 for the Windows platform. As far the build system goes, it's all standard stuff: I'm using CMake's QT4_WRAP_CPP macro to ...
3
votes
1answer
86 views

Get a list of all QObjects created in a Application

To get a list of all the QWidgets created in an application we can simply call QApplication::allWidgets(). I've read the documentation, and I haven't found anything like this to get a list of all ...
2
votes
1answer
77 views

QObject double deletion

I am currently running Qt 4.7.4 on Mac OS X 10.6. I installed Qt using MacPorts. I have been trying to use test-driven development as a part of my coding practice, and I am using QtTest for this ...
2
votes
5answers
93 views

Showing the same QPushButton on multiple widgets

I have two widgets (Real and Fake) and one of them has a QPushButton. Now I want the same button to be shown in the other widget. How do I do it? I dont want to create a copy, I want the same QObject ...
2
votes
1answer
262 views

Qt: Q_PROPERTY with pointer and forward declaration for QtScript access

Problem I am making a project using Q_OBJECT and Q_PROPERTY to access some objects from scripts. I have two problems: making classes that use forward declarations scriptable returning a property as ...
2
votes
3answers
280 views

How can I get the QObject::deleteLater() to zero the object?

Normally when I delete an object I set it to zero. This helps in that I code my routines to check the object is not zero then proceed. However if I use the deleteLater() function I have lost control ...
2
votes
1answer
264 views

Why won't this compile (link) with the Q_OBJECT macro in place?

I made a prototype of a project with PyQt and made it work there, now I'm trying to convert it to C++ and am having some problems. If I don't put the Q_OBJECT macro in, it compiles and works, but if ...
2
votes
1answer
117 views

Django search for strings containing spaces

I have a seach by name function, which should return the name of one person, if the search matches the first name or the last name. The problem is that if i search for strings like 'firstname ...
2
votes
2answers
2k views

How do I copy object in Qt?

I'm using Qt and have some real basic problems. I have created my own widget MyTest that have a variable obj. I need to set this variable obj from an object outside of the widget so that the variable ...
2
votes
6answers
1k views

Qt Object Linker Problem “ undefined reverence to vtable”

This is my header: #ifndef BARELYSOCKET_H #define BARELYSOCKET_H #include <QObject> //! The First Draw of the BarelySocket! class BarelySocket: public QObject { Q_OBJECT public: ...
2
votes
3answers
686 views

Qt: Setup my own QWidget in the right way

In Qt I'm trying to set up my own QWidget so everything should work good due to memory management and other things. But I can't seem to get it all right with pointers, heap and stack. I have my widget ...
1
vote
1answer
72 views

How can I create a new window from within QML?

Is there a way to create a completely new window instance, as a child window of the main QML window in a QmlApplication? // ChildWindow.qml Rectangle { id: childWindow width: 100 height: ...
1
vote
1answer
66 views

Trying to reduce Django Q objects with operator.or_ seems to result in reduction with 'AND'

I am working on an application in Python/Django. I am trying to make a filter by reducing a list of Q objects with Python's operator.or_ function. Unfortunately it results in a list that is combined ...
1
vote
0answers
179 views

Tracking mouse move in QGraphicsScene class

I subclassed QGraphicsScene and added method mouseMoveEvent to handle mouse move event. I created a ruler on top of GraphicsView and have the ruler tracking mouse movement. In the ...
1
vote
3answers
214 views

How to use SIGNAL and SLOT without deriving from QObject?

OR other way to formulate my question (though it didn't solve my problem): 'QObject::QObject' cannot access private member declared in class 'QObject' Heyho, i need SIGNALs and SLOTS ...
1
vote
2answers
128 views

Not able to find quit slot, and use Q_OBJECT macro

I am using VS2008 with QT 4.7.1 and add-ins. I am new to this environment. I managed to do necessary setting and run simple "hello world". But when I try to use simple quit() slot on click of a ...
1
vote
3answers
187 views

Q_OBJECT Problem in Visual C++

I have received a Visual C++ QT based project from our customer. I have installed QT libraries then I have compiled the project. The Project was compiled without any problems. Now, I need to include ...
1
vote
1answer
168 views

Problems with QObject multiple inheritance and policy/traits design in C++

I'm building a fairly large plugin-driven app in my spare time, and have come across a show stopping design flaw. My app uses policy/traits based design, but because I use Qt it is done just through ...
1
vote
1answer
112 views

Qt: Get notified when a signal is connected

Is it possible to get notified that a signal is being connected to some slot? For example, we have class Foo: class Foo : public QObject { Q_OBJECT ... signals: void fooChanged(int bar); }; ...
1
vote
1answer
211 views

Qt - iterating through QRadioButtons

I have a group project for school that I am working on. A member of my group has created a window that has ~75 radio buttons. I want to force all of them to be "clear" or "unchecked" on a button ...
1
vote
2answers
156 views

Sorting QObject children

i noticed that QObject::children() method return a const reference to QObjectList, that contains the children of the qobject. Will it be safe to cast away the constness and sort the list with qSort? ...
1
vote
1answer
100 views

QAbstractItemModel for QMetaObject, do I have to write it myself?

A suite of data models built on top of Qt's reflection system seems like a natural synergy, but I haven't found such a beast in the Qt library itself or from a 3rd party. Does anyone know if such a ...
1
vote
4answers
1k views

Q_OBJECT linker error!

I am receiving the following linker error when I build my application. HIMyClass.obj:: error: unresolved external symbol "public: virtual struct QMetaObject const * __thiscall ...
1
vote
2answers
215 views

Why am I able to create a copy constructor and overload the assignment operator for a QObject subclass?

I was under the impression that QObject disabled the copy constructor and assignment operator... why am I able to compile this QObject derivative containing both of these? #ifndef QVERSION_H #define ...
1
vote
3answers
224 views

Is there a way to be notified when a property changes in a QObject?

First off, I'm using the Qt 4 libraries and C++. Is there a way to be notified (signal, event, ?) when a property (dynamic or otherwise) changes on a QObject? I can't modify the QObject class as it ...
1
vote
2answers
476 views

django dynamic Q objects in generic view

I want to be able to pass a variable caught in the URL to a Q object for a generic view. I created a generic view which is imported as my_views.view which handles things like pagination, sorting, ...
1
vote
4answers
299 views

Order of QObject children (strategy question)

For one of my projects I have a tree of QObject derived objects, which utilize QObject's parent/child functionality to build the tree. This is very useful, since I make use of signals and slots, use ...
0
votes
3answers
50 views

Is there a simple way of limiting QObject::findChild() to direct children only?

Question is in the title. I can't find anything obvious in the documentation which suggests a way of doing this. Must I use the recursive children finding methods and test each child's parent ...
0
votes
0answers
30 views

application crashes in mini2440

I am running a Qtopia 2.2.0 application inside mini2440(FriendlyARM Board). So far the application size is 128kb and will grow more. There are all together 45-50 (source+header) files. Now, the ...
0
votes
1answer
82 views

Interface in C++ for Qt

My question is , can my interface inherit from QObject and how to do that ? Well , i know that interfaces in C++ are simply classes that contains only virtual methods , and normally a class can ...
0
votes
1answer
44 views

How to prevent a child from being deleted during deleteChildren() in Qt?

I have a logging interface that allows user to subclass a Logger and override the log() virtual function so users can create their own loggers. There is a manager that keeps track of all the ...
0
votes
1answer
48 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
55 views

QObject retunrs with exception even after the copy constructor being decared

I am trying to write a sample code for qt script. I thought I am doing the right thing when I declare the QObjecy with the copy construtor and I also took the liberty to decalre the = operator. But ...
0
votes
1answer
122 views

Looping QProgressBar gives error >> QObject::installEventFilter: Cannot filter events for objects in a different thread

This question seems to have been asked many times in many different forms but I haven't managed to find one with a -relevant to my code- solution. When I run the program it shows ...
0
votes
2answers
117 views

QObject inheritance Ambiguous Base

I have a simple class that stops and starts a timer when my program gains and loses focus but it gives the error tha QObject is Ambiguous base of MyApp on every signal-slot connection. Here is the ...
0
votes
1answer
70 views

Qt: bring base class method into slots in derived class

I have a class which derives from a QWidget and a model class. Based on my reading, I can't have the model class to derive from QObject. class PageWidget : public QWidget, public MyModelClass ...
0
votes
1answer
99 views

How to enumerate all QObject classes in Qt?

Is there a way to enumerate all QObject classes declared in an application or DLL? I am trying to create an application that loads DLLs and lists all QObject classes inside the DLLs. Update: Actually ...
0
votes
3answers
105 views

(Qt Creator - Cpp Based Application) Q<Objects> VS using Pointers?

here is my code: //MainWindow.h #ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QtGui> class MainWindow : public QWidget { Q_OBJECT public: MainWindow(QWidget *parent = 0); ...
0
votes
0answers
66 views

Qt - Allocating QObject & not allocating other objects causing segfault

Here's my situation - I have a QWidget that I'm allocating on the heap. This class has a member that inherits from QItemEditorFactory, which is not a QObject. It does, however, allocate other ...
0
votes
2answers
176 views

Multiple inheritance with QThread and QWidget ( Multiple inheritance with QObject )

I'm going to design "OgreWidget" class -A portable renderer widget with Qt. (With my design), I think my class need to be inherited with QThread (for infinite render loop ) and QWidget ( target ...
0
votes
1answer
94 views

Why does Qt Creator run MOC on all my files?

I have a Qt project with precompiled headers enabled. Compilation was working fine until recently. But since a dew days I've noticed that Qt Creator is always running MOC on all my Q_OBJECT files, ...
0
votes
1answer
55 views

Need to annotate Django querySet based on which Q object was found

So I have a query with a few Q objects that are OR-ed together (to achieve a UNION), and I want to annotate each result with which Q object was a match. This is so when I go to display my query ...
0
votes
1answer
50 views

Cannot declare Signal in baseclass

I am having a class A, parent of class B and class C. I have signals: declared and used in class B and class C. But when i try to write other signals: in class A, its giving me vtable reference ...
0
votes
2answers
197 views

C++ Assignment Operator without Copy Constructor

First the question, then an partial explanation of why I need it. The question: Can I define an assignment operator and not the copy constructor? For an internal class (not exposed in the API), is ...

1 2