3
votes
2answers
76 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 …
0
votes
3answers
54 views
Qt tells me that my SLOT doesnt exist, but with a make clean, make it doesnt complain anymore
when i download a fresh copy from our SVN, make then run my program, Qt tells me that one of my SLOTS doesn't work but with a handy-dandy make clean then make, it seems to solve the problem. i …
0
votes
1answer
41 views
Trying to get signals to work in my QT. I need some advice and help
So I have in my main function:
string s = "\nWelcome to Rawr\n";
const QString output(s);
**emit output(output); …
0
votes
1answer
77 views
Qt library event loop problems
I'm writing a DLL that is used as a plugin by another application and would like to leverage Qt's abilities.
I have all of the classes set up, compiling and running, but no signals are being emitted.
…
4
votes
3answers
234 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 …
1
vote
2answers
111 views
Pointer to a Qt Slot
Hi,
i want to build a pointer to a Qt Slot:
union {
void (*set_slot)(unsigned long value);
void (*refresh_slot)(void);
} the_slot;
The slot definition is:
void set_pwm(unsigned long …
4
votes
6answers
250 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, …
1
vote
3answers
317 views
Qt signals and slots, threads, app.exec(), and related queries
[related to this question]
I wrote this piece of code to understand how qt signals and slots work. I need someone to explain the behaviour, and to tell me if I'm right about my own conclusions.
My …
1
vote
2answers
114 views
Qt Map Signals Based On Parameter Value
Hi folks,
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 …
-1
votes
3answers
193 views
Slot seemingly not recognized in Qt app
Hello, I have been working on learning C++ and Qt4 recently, but I have hit a stumbling block.
I have the following class and implementation:
class Window : public QWidget
{
public:
Window();
…
-3
votes
2answers
92 views
how to connect two window in qt
acctualy i want when i click a pushbutton then it will connect to another window. But i am unable to declare my own slot in Ui_example.h file.
so what i do?
2
votes
2answers
155 views
Why is Qt looking for my slot in the base class instead of derived one?
I have my class X which inherits from Qt's class Base. I declared and defined void mySlot() slot in my class X and I'm connecting some signal to this slot in X's constructor. However, when running my …
0
votes
1answer
173 views
How to connect a slot to signal QProcess::started() ? QT
Edit: Solved.
Hi, I'm starting with QT, I try to connect a slot to signal QProcess::started() but can't. QObject::connect() returns false.
Any idea what am I doing wrong?
Here's part of the code:
…
0
votes
2answers
54 views
Combining two QMainWindows
Good day pythonistas and the rest of the coding crowd,
I have two QMainWindows designed and coded separately. I need to:
display first
on a button-press close the first window
construct and display …
7
votes
4answers
913 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 …
