Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
5answers
4k views

Qt: meaning of slot return value?

According to the documentation the return value from a slot doesn't mean anything. Yet in the generated moc code I see that if a slot returns a value this value is used for something. Any idea what ...
15
votes
1answer
2k views

Does Qt support virtual pure slots?

My GUI project in Qt has a lot of "configuration pages" classes which all inherit directly from QWidget. Recently, I realized that all these classes share 2 commons slots (loadSettings() and ...
13
votes
5answers
794 views

When to use signals and slots and when not to

We're using Qt that offers signals and slots which I find really convenient. However, with great power comes great responsibility and I think it's very easy too misuse this feature. Are there any ...
10
votes
3answers
275 views

What is the correct Qt idiom for exposing signals/slots of contained widgets?

Suppose I have a MyWidget which contains a MySubWidget, e.g. a custom widget that contains a text field or something. I want other classes to be able to connect to signals and slots exposed by the ...
10
votes
2answers
894 views

How signal and slots are implemented under the hood?

This question is already asked in this forum but I don't understand the concept. I was reading around and it seems that signal and slots are implemented using function pointers i.e the signal is one ...
10
votes
7answers
6k views

Which C++ signals/slots library should I choose?

I want to use a signals/slots library in a project that doesn't use QT. I have pretty basic requirements: Connect two functions with any number of parameters. Signals can be connected to multiple ...
9
votes
4answers
1k views

Can Qt signals return a value?

Boost.Signals allows various strategies of using the return values of slots to form the return value of the signal. E.g. adding them, forming a vector out of them, or returning the last one. The ...
8
votes
1answer
145 views

If a Qt signal is emitted in the forest and noone is around to hear it, does it make a sound?

Sorry for the humorous phrasing of the question. I couldn't resist ;-) If I emit a signal that's not connected to a slot anywhere in the code, is there still a performance cost associated with that ...
8
votes
3answers
740 views

Architecture for Qt SIGNAL with subclass-specific, templated argument type

I am developing a scientific data acquisition application using Qt. Since I'm not a deep expert in Qt, I'd like some architecture advise from the community on the following problem: The application ...
8
votes
5answers
7k views

Qt signaling across threads, one is GUI thread?

What does it mean to move a object from one thread to another in Qt using moveToThread? Everything seems to work even before using moveToThread, which moves the object from one thread (GUI thread) to ...
7
votes
2answers
864 views

Debug Qt signals, slots and connections

Is there a way to see which signals are fired, and if there is a slot connected to them? Ideally, we'd like to see all signals, not just those of a particular class or method; e.g. QSignalSpy only ...
7
votes
3answers
2k views

How does Qt implement signals and slots?

Can someone explain to me the basic idea of Qt signals&slots mechanism IMPLEMENTATION? I want to know what all those Q_OBJECT macros do "in plain C++". This question is NOT about signals&slots ...
5
votes
3answers
489 views

Fastest C++ Signal/Slot Lib without dependency

I am going to pass data up/down a 5-10 layered object using signals and slots. Which should result in a few thousand signal per sec. Which is far form "I clicked a button". All my object will also ...
5
votes
6answers
1k views

Qt GUI app: warning if QObject::connect() failed?

I recently migrated my Qt project from Linux to Vista, and now I'm debugging signals blindly. On Linux, if QObject::connect() fails in a debug build, I get a warning message on stderr. On Windows, ...
5
votes
4answers
2k views

signals and slots

Can someone explain in simple terms the "signals and slots" pattern?
4
votes
1answer
149 views

Storing arbitrary function calls across threads

I'm trying to write a library aiming to reproduce Qt's threading semantics: signals can be connected to slots, and all slots execute in a known thread, so that slots tied to the same thread are ...
4
votes
3answers
575 views

How to process signals in a Qt subclass?

How do I process a signal of in a subclass? Let's say my subclass is derived from QTextEdit and is interested in the signal textChanged. It seems silly to connect an object to itself, I should be ...
4
votes
3answers
348 views

What exactly are signals and slots in Qt?

I know how they work conceptually, but how are signals and slots implemented in the Qt framework? Qt Creator treats them as keywords, but are they simply a set of macros, or is a special ...
4
votes
2answers
3k views

Argument type for Qt signal and slot, does const reference qualifiers matters?

For signal and slot of below type signals: void textChanged(const QString &); public slots: void setText(const QString & text) the type of argument of textChanged and setText ...
4
votes
3answers
579 views

How do I find out if a goroutine is done, without blocking?

All the examples I've seen so far involve blocking to get the result (via the <-chan operator). My current approach involves passing a pointer to a struct: type goresult struct { result ...
4
votes
2answers
1k views

Signal and Slot vs Multithreading in Boost Library

I have gone through similar questions on Stackoverflow but still can't get a good answer: how boost implements signals and slots How signal and slots are implemented I am quite puzzled on how this ...
4
votes
4answers
6k views

Qt signals & inheritance question

I am relatively new to programming with Qt and had a question. Short version: How do I inherit signals defined in superclasses? I am trying to subclass someone else's nicely made QTWidgets to ...
3
votes
2answers
142 views

C++ SIGNAL to QML SLOT in Qt

I want to send a Signal from C++ to a Slot in my QML File. I already got it working without and primitive type parameters, although if I want to send a QString to my QML Slot I get an error whilst ...
3
votes
2answers
113 views

Qt: some slots don't get executed in release mode

I am doing some simple program in Qt (MSVC++2008) with few checkboxes and buttons. In debug mode, everything works fine, but I can't distribute such executable, because most people don't have Visual ...
3
votes
2answers
137 views

Is this method of inter-thread-communication safe?

I have 3 objects(inherited from QObject) that each contain a separate std::list. Each object gets created in the main gui thread (with no parent) and then is pushed to it's own thread (using Qt's ...
3
votes
2answers
142 views

Can QT call two slots simultaneously, if they get called from the same signal?

If there are two slots in two different threads and these slots are connected to a signal in a third thread. Can it happen, that both slots get called at the same time by the signal or do they get ...
3
votes
4answers
623 views

How to pass variables to slot methods in QT?

I'm making a little chat messenger program, which needs a list of chat channels the user has joined. To represent this list graphically, I have made a list of QPushButtons, which all represent a ...
3
votes
1answer
114 views

How do I manage the deletion of an object that has been passed via a signal slot?

I have just added webcam support to my application using videoInput library and OpenCV. The video stream is in a QThread (producer) and emits a signal sending out a QImage* for my application to ...
3
votes
2answers
285 views

How should I delete a child object from within a parent's slot? Possibly boost::asio specific

I have written a network server class that maintains a std::set of network clients. The network clients emit a signal to the network server on disconnect (via boost::bind). When a network client ...
3
votes
2answers
537 views

Qt Signals/Slots and Threads

I'm new to GUI programming and multithreading. I am in the process of creating a real-time app that receives information from my car and renders it in some meaningful way. My app is layed out as 3 ...
3
votes
3answers
165 views

Can I access signals/slots of objects out of scope?

Do signal/slots follow the scope of native C++? Let's say I have the following classes: House, Kitchen, Cellar, Stove and Shelf. class House {Kitchen kitchen, Cellar cellar;}; class Kitchen {Stove ...
3
votes
2answers
189 views

What are the principles of an event system in C++?

First of all, I know there are excellent implementations (Qt, Boost, cpp-event, etc.), but I ask the question because I want to know how it works ! If I understand correctly, the "event system" uses ...
3
votes
1answer
216 views

Qt Signal-Slot intercation

Whan I want to use a signal of a private object in order to arise a signal of its parent object I do the following: 1. I create a signal and a slot (named, let's say, ParentSignal, ParentSlot) 2. ...
3
votes
7answers
363 views

In c++ is there any Events/delegates/interfaces/notifications! anything?

Say i have these classes ViewA and ViewB In objective C using the delegate pattern I could do @protocol ViewBDelegate{ - (void) doSomething(); } then in ViewB interface: id<ViewBDelegate> ...
3
votes
1answer
546 views

How to Track Emitted Signals in QT?

Is there any way to observe all signals which are emitted? PS. Of course we can write slots for all signals, but that is not I want. Thanks.
3
votes
2answers
1k views

Determine signals connected to a given slot in Qt

I've injected myself into a Qt application, and I'm attempting to figure out what signals a given slot is connected to, but can't find any information on doing this. Is there a mechanism for doing ...
3
votes
2answers
2k views

Qt - no such signal error

I'm trying to trigger a signal when a double click happens in one of the draggable widgets on the fridge magnets example. Here's the changes I made to the example source: DragLabel: class DragLabel ...
3
votes
1answer
907 views

Qt - Calling widget parent's slots

I wrote a small program to test accessing a widget parent's slot. Basically, it has two classes: Widget: namespace Ui { class Widget; } class Widget : public QWidget { Q_OBJECT public: ...
3
votes
1answer
363 views

Qt - arguments in signal-slots

I have a QPushButton, QDateEdit and another custom object. I want to connect the button to the date edit object in a way that when I click the button, the date edit object will change its set date to ...
3
votes
3answers
304 views

Qt - emitting slots instead of signals

Suppose I have a QPushButton widget that is connected to a slot by its clicked() signal. This first slot in turn calls another slot by the emit keyword. The second slot takes an argument from the ...
3
votes
1answer
573 views

boost signals - How control lifetime of objects sent to subscribers? Smart pointers?

I am using boost::signals2 under Red Hat Enterprise Linux 5.3. My signal creates an object copy and sends it's pointer to subscribers. This was implemented for thread safety to prevent the worker ...
3
votes
1answer
802 views

Qt: Do events get processed in order?

If I had a class A, where one of its functions does: void A::func() { emit first_signal(); emit second_signal(); } Assuming that a class B has 2 slots, one connected to first_signal, and ...
3
votes
2answers
1k views

Qt widget update later but when?

I'd like to know what happens exactly when I call a QWidget's update() method. Here is the documentation: http://doc.trolltech.com/4.5/qwidget.html#update This function does not cause an ...
3
votes
2answers
616 views

Qt Map Signals Based On Parameter Value

I know that i can use QSignalMapper to call a slot with different parameters based on connection. What i want to achieve is a little different. We are using plugins in our application and different ...
3
votes
5answers
5k views

QT + How to call slot from custom C++ code running in a different thread

I am new to QT and I am doing some learning. I would like to trigger a slot that modify a GUI widget from a C++ thread(Currently a Qthread). Unfortunatly I get a: ASSERTION failed at: Q_ASSERT(qApp ...
3
votes
2answers
1k views

Create PyQt menu from a list of strings

I have a list of strings and want to create a menu entry for each of those strings. When the user clicks on one of the entries, always the same function shall be called with the string as an argument. ...
2
votes
1answer
70 views

C++ Observer pattern listener event methods/class or signals & slots

Hy, I am implementing MVC in my game and i can't get this thing to work in my head. I decoupled view from game logics and controller is decoupled to. Thing actually works, but i can't decide if ...
2
votes
1answer
36 views

New-style Signal and Slot Support, PyQt

I'm writing a GUI application with PyQt4 (Python3). One my friend pointed out that using pyuic4 is a bad practice and referred me to uic module and Connecting Slots By Name features. He didn't have ...
2
votes
3answers
63 views

Qt: Is there notification when event loop starts?

I have a Qt application with this kind of main()... int main(int argc, char *argv[]) { QApplication app(argc, argv); MainWindow mainWin; ... A separate, non-GUI thread is launched here ...
2
votes
4answers
80 views

How can I do a check of the signal/slot connect's during compilation?

Checking the Qt signal slot connect calls at runtime is a worry for me. I should be possible to run a static check of the connect statements. Does such a tool exist?

1 2 3 4 5