same signal-slot connection in two windows
-
@jazzco2 Thanks a lot.
The new connect syntax seems ok. It did not complain about anything. But I'm not getting the expected output. Just to summarize.
I'm calling QMainWindow
PatientsfromSettings. In thePatientsconstructor, I did connect as follows:connect(&api, &tetra_grip_api::tetraGripEvent,this, &Patients::eventHandlerTwo);When I put a breakpoint in the connect statement, it did not went into the
eventHandlerTwoslot. which means something wrong in the way I did the connection.where
apiis global variable.eventHandlerTwois a public slot:void Patients::eventHandlerTwo( STIM_GUI_TOPIC_T topic, uint8_t reg, uint32_t value) { if (topic==TOPIC_STIMULATOR) { switch(reg) { case STIM_REG_BATTERY_CAPACITY_REMAINING: if(value<86) ui->qLed_p2->setOnColor(QLed::Red); else ui->qLed_p2->setOnColor(QLed::Green); ui->qLed_p2->setValue(true); break; } } ui->label_batteryVal->setText(QString::number(value)); }Patientsbeing called fromSettingsas follows:void Settings::on_pushButton_patients_clicked() { hide(); stagetwo = new Patients(this); stagetwo -> show(); }Any thoughts?
-
So where do you call your connect() statement?
-
@jazzco2 Thanks a lot.
The new connect syntax seems ok. It did not complain about anything. But I'm not getting the expected output. Just to summarize.
I'm calling QMainWindow
PatientsfromSettings. In thePatientsconstructor, I did connect as follows:connect(&api, &tetra_grip_api::tetraGripEvent,this, &Patients::eventHandlerTwo);When I put a breakpoint in the connect statement, it did not went into the
eventHandlerTwoslot. which means something wrong in the way I did the connection.where
apiis global variable.eventHandlerTwois a public slot:void Patients::eventHandlerTwo( STIM_GUI_TOPIC_T topic, uint8_t reg, uint32_t value) { if (topic==TOPIC_STIMULATOR) { switch(reg) { case STIM_REG_BATTERY_CAPACITY_REMAINING: if(value<86) ui->qLed_p2->setOnColor(QLed::Red); else ui->qLed_p2->setOnColor(QLed::Green); ui->qLed_p2->setValue(true); break; } } ui->label_batteryVal->setText(QString::number(value)); }Patientsbeing called fromSettingsas follows:void Settings::on_pushButton_patients_clicked() { hide(); stagetwo = new Patients(this); stagetwo -> show(); }Any thoughts?
@russjohn834 said in same signal-slot connection in two windows:
connect(&api, &tetra_grip_api::tetraGripEvent,this, &Patients::eventHandlerTwo);When I put a breakpoint in the
connectstatement, it did not went into theeventHandlerTwoslot. which means something wrong in the way I did connection.What do you mean? When the
connectstatement is executed it will not cause any entry intoPatients::eventHandlerTwo, that only comes when the signal is lateremitted. -
Connect is called as in the following:
Patients::Patients(QWidget *parent) : QMainWindow(parent), ui(new Ui::Patients) { ui->setupUi(this); this->setStyleSheet("background-color: white;"); this->setFixedSize(this->width(),this->height()); connect(&api, &tetra_grip_api::tetraGripEvent,this, &Patients::eventHandlerTwo); //--->connect is called here // Setup table ui->tableWidget->setColumnCount(5); ui->tableWidget->setHorizontalHeaderLabels(QStringList{"Patient ID","Name", "Surname", "LastSession", "Note"}); ui->tableWidget->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch); ui->tableWidget->setSelectionBehavior(QAbstractItemView::SelectRows); QString path = QCoreApplication::applicationDirPath()+"/data/"; QStringList qdiFilter("*.xml"); QDirIterator qdi( path, qdiFilter, QDir::Files); while (qdi.hasNext()) { parseDataEntry(qdi.next()); } } -
@russjohn834 said in same signal-slot connection in two windows:
connect(&api, &tetra_grip_api::tetraGripEvent,this, &Patients::eventHandlerTwo);When I put a breakpoint in the
connectstatement, it did not went into theeventHandlerTwoslot. which means something wrong in the way I did connection.What do you mean? When the
connectstatement is executed it will not cause any entry intoPatients::eventHandlerTwo, that only comes when the signal is lateremitted.I'm connecting with the same signal in the previous window , so do I need to
disconnectthat and connection to use the same signal in with a new slot?Basically in
Settingswindow this works:connect(&api, &tetra_grip_api::tetraGripEvent,this, &Settings::eventHandler); //--> slot is eventHandlerBut in
Patientsthis is not working:connect(&api, &tetra_grip_api::tetraGripEvent,this, &Patients::eventHandlerTwo);//--->Slot is eventHandlerTwo -
I'm connecting with the same signal in the previous window , so do I need to
disconnectthat and connection to use the same signal in with a new slot?Basically in
Settingswindow this works:connect(&api, &tetra_grip_api::tetraGripEvent,this, &Settings::eventHandler); //--> slot is eventHandlerBut in
Patientsthis is not working:connect(&api, &tetra_grip_api::tetraGripEvent,this, &Patients::eventHandlerTwo);//--->Slot is eventHandlerTwo@russjohn834
So I now take it you mean you find the slot does not get entered, not the the connect fails?No, you do not have to disconnect, a signal may have any number of slots attached. Though if a previously-attached slot does not return, or misbehaves like if the slot instance is no longer around, it is possible the second slot might not get called.
So if debugging what is going you might be advised to temporarily not connect the
Settingsslot, just thePatientsslot and concentrate on sorting that out. It is not possible to say from what you have posted why one slot works and the other does not. -
@JonB Thank you. I tried to connect only the
Patientsslot but cant see where I'm wrong..Patientswindow is opened fromSettingsas given below:void Settings::on_pushButton_patients_clicked() { hide(); stagetwo = new Patients(this); stagetwo -> show(); }Where
stagetwois publicpublic: Settings(QString,QWidget *parent = nullptr); ~Settings(); Patients *stagetwo;Anything wrong I'm doing here!?
-
Hi all,
I just noticed this thing if I call both my
SettingsandPatientsfrom my main the connection is successful (see below)#include <QApplication> tetra_grip_api api; int main(int argc, char *argv[]) { QApplication a(argc, argv); api.openSerialPort(); QObject::connect(api.serial, SIGNAL(readyRead()), &api, SLOT(readData())); QObject::connect(api.serial, SIGNAL(error(QSerialPort::SerialPortError)),&api, SLOT(ErrorHandler(QSerialPort::SerialPortError))); // error handling Settings w(nullptr); w.show(); Patients v(nullptr); //---------> this makes connection successfull v.show(); return a.exec(); }but instead, if I call
PatientsfromSettingseven though the connection is successful im not getting the expected output.My signal source
apiis a global variable which is initialized in the main as shown above.
So constructing both classes in the main makes connection ok and I'm gettting expected output. But if I call one window from other makes connection true but my slot is not being called at all.What is the reason for this?
-
Hi all,
I just noticed this thing if I call both my
SettingsandPatientsfrom my main the connection is successful (see below)#include <QApplication> tetra_grip_api api; int main(int argc, char *argv[]) { QApplication a(argc, argv); api.openSerialPort(); QObject::connect(api.serial, SIGNAL(readyRead()), &api, SLOT(readData())); QObject::connect(api.serial, SIGNAL(error(QSerialPort::SerialPortError)),&api, SLOT(ErrorHandler(QSerialPort::SerialPortError))); // error handling Settings w(nullptr); w.show(); Patients v(nullptr); //---------> this makes connection successfull v.show(); return a.exec(); }but instead, if I call
PatientsfromSettingseven though the connection is successful im not getting the expected output.My signal source
apiis a global variable which is initialized in the main as shown above.
So constructing both classes in the main makes connection ok and I'm gettting expected output. But if I call one window from other makes connection true but my slot is not being called at all.What is the reason for this?
@russjohn834
If you're asking me to guess, show how you gain access totetra_grip_api api;fromSettings/Patients? In these cases where do you do theconnect()s from? And, how do you know yourconnect()s are successful? -
Hi,
@russjohn834 said in same signal-slot connection in two windows:
QObject::connect(api.serial, SIGNAL(readyRead()), &api, SLOT(readData()));
QObject::connect(api.serial, SIGNAL(error(QSerialPort::SerialPortError)),&api, SLOT(ErrorHandler(QSerialPort::SerialPortError))); // error handlingSince serial is internal to
apiwhy don't you connect it in the constructor of your tetra_grip_api class ? -
@russjohn834
If you're asking me to guess, show how you gain access totetra_grip_api api;fromSettings/Patients? In these cases where do you do theconnect()s from? And, how do you know yourconnect()s are successful?This is how I make the connection in
Settings.Settings::Settings(QString patientLabel, QWidget *parent) : QMainWindow(parent) , ui(new Ui::Settings) { ui->setupUi(this); connect(&api, &tetra_grip_api::tetraGripEvent,this, &Settings::eventHandler); }Connection is successfull (
qDebug()<<connect(....)gives TRUE) also the aQLabeland an LED in theeventHandlerslot works perfectly.In the same way I try to connect in the
Patients:Patients::Patients(QWidget *parent) : QMainWindow(parent) , ui(new Ui::Patients) { ui->setupUi(this); connect(&api, &tetra_grip_api::tetraGripEvent,this, &Patients::eventHandlerTwo); }here connection is successfull (
qDebug()<<connect(....)gives TRUE) but the aQLabeland an LED in theeventHandlerTwoare not working. -
This is how I make the connection in
Settings.Settings::Settings(QString patientLabel, QWidget *parent) : QMainWindow(parent) , ui(new Ui::Settings) { ui->setupUi(this); connect(&api, &tetra_grip_api::tetraGripEvent,this, &Settings::eventHandler); }Connection is successfull (
qDebug()<<connect(....)gives TRUE) also the aQLabeland an LED in theeventHandlerslot works perfectly.In the same way I try to connect in the
Patients:Patients::Patients(QWidget *parent) : QMainWindow(parent) , ui(new Ui::Patients) { ui->setupUi(this); connect(&api, &tetra_grip_api::tetraGripEvent,this, &Patients::eventHandlerTwo); }here connection is successfull (
qDebug()<<connect(....)gives TRUE) but the aQLabeland an LED in theeventHandlerTwoare not working.@russjohn834
How do I know&apirefers to the same, global, initializedapiinstance in both cases?
And I see nothing in code about anyQLabelin either case, not mentioned by you before...
You have to supply the necessary/relevant code if you want people to help.
Use a debugger to make sure whether slots are being hit. -
I thought
apishould be known and accessible to all classes if intialized as global in themain.cpp#include <QApplication> tetra_grip_api api; //-------------> api instance int main(int argc, char *argv[]) { QApplication a(argc, argv); api.openSerialPort(); QObject::connect(api.serial, SIGNAL(readyRead()), &api, SLOT(readData())); QObject::connect(api.serial, SIGNAL(error(QSerialPort::SerialPortError)),&api, SLOT(ErrorHandler(QSerialPort::SerialPortError))); // error handling Settings w(nullptr); w.show(); return a.exec(); }Correct me if I'm wrong.
-
I thought
apishould be known and accessible to all classes if intialized as global in themain.cpp#include <QApplication> tetra_grip_api api; //-------------> api instance int main(int argc, char *argv[]) { QApplication a(argc, argv); api.openSerialPort(); QObject::connect(api.serial, SIGNAL(readyRead()), &api, SLOT(readData())); QObject::connect(api.serial, SIGNAL(error(QSerialPort::SerialPortError)),&api, SLOT(ErrorHandler(QSerialPort::SerialPortError))); // error handling Settings w(nullptr); w.show(); return a.exec(); }Correct me if I'm wrong.
@russjohn834
YourSettings&Patientsclasses are defined in a different source module frommain.cpp, right? So how do they gain access to reference theapisymbol in order to compile?connect(&api, &tetra_grip_api::tetraGripEvent,this, &Patients::eventHandlerTwo);I am having to tease out each bit of relevant information, one at a time....
-
@JonB
Correct. I actually did not do anything other that makingapiinstance as global inmain.cpp. That might be the issue. But dont know how to proceed. How do I makePatientsclasses know about globalapiinstance? -
@JonB
Correct. I actually did not do anything other that makingapiinstance as global inmain.cpp. That might be the issue. But dont know how to proceed. How do I makePatientsclasses know about globalapiinstance?@russjohn834 You should avoid global variables as much as possible.
Just pass the pointer to api to Settings & Patients constructors... -
Did you ensure that the connection in
Patientsis done before the signaltetra_grip_api::tetraGripEventis emitted? SomeqDebugs around connection, in the very first line ofPatients::eventHandlerTwoand in the deconstructor ofPatientsshould help to prove that. -
@JonB
Correct. I actually did not do anything other that makingapiinstance as global inmain.cpp. That might be the issue. But dont know how to proceed. How do I makePatientsclasses know about globalapiinstance?@russjohn834 said in same signal-slot connection in two windows:
@JonB
Correct. I actually did not do anything other that making apiinstance as global in main.cpp. That might be the issue. But dont know how to proceed. How do I make Patients classes know about global api instance?I truly, truly do not understand. You said your program runs but does/does not behave properly in the cases you mentioned. I asked how you can even compile your
Settings/Patientsmodules/.cppsource files which contain the lineconnect(&api, ..., whenapiis defined inmain.cpp? From what you have said/shown they should error at compile-time with a "No such variable:api" message. So I will leave others to help, who obviously understand your source code better than I. -
@russjohn834 said in same signal-slot connection in two windows:
@JonB
Correct. I actually did not do anything other that making apiinstance as global in main.cpp. That might be the issue. But dont know how to proceed. How do I make Patients classes know about global api instance?I truly, truly do not understand. You said your program runs but does/does not behave properly in the cases you mentioned. I asked how you can even compile your
Settings/Patientsmodules/.cppsource files which contain the lineconnect(&api, ..., whenapiis defined inmain.cpp? From what you have said/shown they should error at compile-time with a "No such variable:api" message. So I will leave others to help, who obviously understand your source code better than I.