I need to connect the valueChanged signal from QLineEdit to a custom slot programatically. I know how to do the connection by using Qt Designer and doing the connection with graphical interface but I would like to do it programmatically so I can learn more about the Signals and Slots.
This is what I have that doesn't work.
.cpp file
// constructor
connect(myLineEdit, SIGNAL(valueChanged(static QString)), this, SLOT(customSlot()));
void MainWindow::customSlot()
{
qDebug()<< "Calling Slot";
}
.h file
private slots:
void customSlot();
What am I missing here?
Thanks
QLineEdit
does not seem to havevalueChanged
signal, buttextChanged
(refer to the Qt documentation for complete list of supported signals). You need to change yourconnect()
function call too. It should be:If you need the handle the new text value in your slot, you can define it as
customSlot(const QString &newValue)
instead, so your connection will look like: