How to prevent space bar event from the QLineEdit
-
@maniron The compiler is configured in the Kit.
But actually you could simply copy what I posted and see whether it works...@jsulm
I tried adding this but still the line edit is not getting any input
ui->lineEdit->setInputMask("000.000.000.000");QRegExp rx(R"(([0-9]|[1-8][0-9]|9[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.([0-9]|[1-8][0-9]|9[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.([0-9]|[1-8][0-9]|9[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.([0-9]|[1-8][0-9]|9[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))"); // the validator treats the regexp as "^[1-9]\\d{0,3}$" QRegExpValidator *ipValidator = new QRegExpValidator(rx, this); ui->lineEdit->setValidator(ipValidator);
-
@jsulm
I tried adding this but still the line edit is not getting any input
ui->lineEdit->setInputMask("000.000.000.000");QRegExp rx(R"(([0-9]|[1-8][0-9]|9[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.([0-9]|[1-8][0-9]|9[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.([0-9]|[1-8][0-9]|9[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.([0-9]|[1-8][0-9]|9[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))"); // the validator treats the regexp as "^[1-9]\\d{0,3}$" QRegExpValidator *ipValidator = new QRegExpValidator(rx, this); ui->lineEdit->setValidator(ipValidator);
@maniron said in How to prevent space bar event from the QLineEdit:
line edit is not getting any input
Do you mean you can't input anything?
-
@maniron said in How to prevent space bar event from the QLineEdit:
line edit is not getting any input
Do you mean you can't input anything?
-
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
ui->lineEdit->setInputMask("000.000.000.000");
QRegExp rx(R"(([0-9]|[1-8][0-9]|9[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]).([0-9]|[1-8][0-
9]|9[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]).([0-9]|[1-8][0-9]|9[0-9]|1[0-9]{2}|2[0-4][0-
9]|25[0-5]).([0-9]|[1-8][0-9]|9[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))");
// the validator treats the regexp as "^[1-9]\d{0,3}$"
QRegExpValidator *ipValidator = new QRegExpValidator(rx, this);ui->lineEdit->setValidator(ipValidator);
}
-
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
ui->lineEdit->setInputMask("000.000.000.000");
QRegExp rx(R"(([0-9]|[1-8][0-9]|9[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]).([0-9]|[1-8][0-
9]|9[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]).([0-9]|[1-8][0-9]|9[0-9]|1[0-9]{2}|2[0-4][0-
9]|25[0-5]).([0-9]|[1-8][0-9]|9[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))");
// the validator treats the regexp as "^[1-9]\d{0,3}$"
QRegExpValidator *ipValidator = new QRegExpValidator(rx, this);ui->lineEdit->setValidator(ipValidator);
}
@maniron said in How to prevent space bar event from the QLineEdit:
ui->lineEdit->setInputMask("000.000.000.000");
Why is this line there?
-
@maniron said in How to prevent space bar event from the QLineEdit:
ui->lineEdit->setInputMask("000.000.000.000");
Why is this line there?
-
@maniron said in How to prevent space bar event from the QLineEdit:
to form the IP format
For that you now have the validator!
-
@maniron said in How to prevent space bar event from the QLineEdit:
to form the IP format
For that you now have the validator!
@jsulm Yes it worked but if the user is giving an input which is not in the form of an Ip
(For Example : I am entering an input as 255 and pressing a button also it accepts the input )
Is there a way which checks whether the entered Ip address is in the form of an IP Address -
@jsulm Yes it worked but if the user is giving an input which is not in the form of an Ip
(For Example : I am entering an input as 255 and pressing a button also it accepts the input )
Is there a way which checks whether the entered Ip address is in the form of an IP Address