Line Edits Example▲
The example consists of a single Window class, containing a selection of line edits with different input constraints and display properties that can be changed by selecting items from comboboxes. Presenting these together helps developers choose suitable properties to use with line edits, and makes it easy to compare the effects of each validator on user input.
Window Class Definition▲
The Window class inherits QWidget and contains a constructor and several slots:
class
Window : public
QWidget
{
Q_OBJECT
public
:
Window(QWidget *
parent =
nullptr
);
public
slots:
void
echoChanged(int
);
void
validatorChanged(int
);
void
alignmentChanged(int
);
void
inputMaskChanged(int
);
void
accessChanged(int
);
private
:
QLineEdit *
echoLineEdit;
QLineEdit *
validatorLineEdit;
QLineEdit *
alignmentLineEdit;
QLineEdit *
inputMaskLineEdit;
QLineEdit *
accessLineEdit;
}
;
The slots are used to update the type of validator used for a given line edit when a new validator has been selected in the associated combobox. The line edits are stored in the window for use in these slots.
Window Class Implementation▲
The Window constructor is used to set up the line edits, validators, and comboboxes, connect signals from the comboboxes to slots in the Window class, and arrange the child widgets in layouts.
We begin by constructing a group box to hold a label, combobox, and line edit so that we can demonstrate the QLineEdit::echoMode property:
Window::
Window(QWidget *
parent)
:
QWidget(parent)
{
QGroupBox *
echoGroup =
new
QGroupBox(tr("Echo"
));
QLabel *
echoLabel =
new
QLabel(tr("Mode:"
));
QComboBox *
echoComboBox =
new
QComboBox;
echoComboBox-&
gt;addItem(tr("Normal"
));
echoComboBox-&
gt;addItem(tr("Password"
));
echoComboBox-&
gt;addItem(tr("PasswordEchoOnEdit"
));
echoComboBox-&
gt;addItem(tr("No Echo"
));
echoLineEdit =
new
QLineEdit;
echoLineEdit-&
gt;setPlaceholderText("Placeholder Text"
);
echoLineEdit-&
gt;setFocus();
At this point, none of these widgets have been arranged in layouts. Eventually, the echoLabel, echoComboBox, and echoLineEdit will be placed in a vertical layout inside the echoGroup group box.
Similarly, we construct group boxes and collections of widgets to show the effects of QIntValidator and QDoubleValidator on a line edit's contents:
QGroupBox *
validatorGroup =
new
QGroupBox(tr("Validator"
));
QLabel *
validatorLabel =
new
QLabel(tr("Type:"
));
QComboBox *
validatorComboBox =
new
QComboBox;
validatorComboBox-&
gt;addItem(tr("No validator"
));
validatorComboBox-&
gt;addItem(tr("Integer validator"
));
validatorComboBox-&
gt;addItem(tr("Double validator"
));
validatorLineEdit =
new
QLineEdit;
validatorLineEdit-&
gt;setPlaceholderText("Placeholder Text"
);
Text alignment is demonstrated by another group of widgets:
QGroupBox *
alignmentGroup =
new
QGroupBox(tr("Alignment"
));
QLabel *
alignmentLabel =
new
QLabel(tr("Type:"
));
QComboBox *
alignmentComboBox =
new
QComboBox;
alignmentComboBox-&
gt;addItem(tr("Left"
));
alignmentComboBox-&
gt;addItem(tr("Centered"
));
alignmentComboBox-&
gt;addItem(tr("Right"
));
alignmentLineEdit =
new
QLineEdit;
alignmentLineEdit-&
gt;setPlaceholderText("Placeholder Text"
);
QLineEdit supports the use of input masks. These only allow the user to type characters into the line edit that follow a simple specification. We construct a group of widgets to demonstrate a selection of predefined masks:
QGroupBox *
inputMaskGroup =
new
QGroupBox(tr("Input mask"
));
QLabel *
inputMaskLabel =
new
QLabel(tr("Type:"
));
QComboBox *
inputMaskComboBox =
new
QComboBox;
inputMaskComboBox-&
gt;addItem(tr("No mask"
));
inputMaskComboBox-&
gt;addItem(tr("Phone number"
));
inputMaskComboBox-&
gt;addItem(tr("ISO date"
));
inputMaskComboBox-&
gt;addItem(tr("License key"
));
inputMaskLineEdit =
new
QLineEdit;
inputMaskLineEdit-&
gt;setPlaceholderText("Placeholder Text"
);
Another useful feature of QLineEdit is its ability to make its contents read-only. This property is used to control access to a line edit in the following group of widgets:
QGroupBox *
accessGroup =
new
QGroupBox(tr("Access"
));
QLabel *
accessLabel =
new
QLabel(tr("Read-only:"
));
QComboBox *
accessComboBox =
new
QComboBox;
accessComboBox-&
gt;addItem(tr("False"
));
accessComboBox-&
gt;addItem(tr("True"
));
accessLineEdit =
new
QLineEdit;
accessLineEdit-&
gt;setPlaceholderText("Placeholder Text"
);
Now that all the child widgets have been constructed, we connect signals from the comboboxes to slots in the Window object:
connect(echoComboBox, &
amp;QComboBox::
activated,
this
, &
amp;Window::
echoChanged);
connect(validatorComboBox, &
amp;QComboBox::
activated,
this
, &
amp;Window::
validatorChanged);
connect(alignmentComboBox, &
amp;QComboBox::
activated,
this
, &
amp;Window::
alignmentChanged);
connect(inputMaskComboBox, &
amp;QComboBox::
activated,
this
, &
amp;Window::
inputMaskChanged);
connect(accessComboBox, &
amp;QComboBox::
activated,
this
, &
amp;Window::
accessChanged);
Each of these connections use the QComboBox::activated() signal that supplies an integer to the slot. This will be used to efficiently make changes to the appropriate line edit in each slot.
We place each combobox, line edit, and label in a layout for each group box, beginning with the layout for the echoGroup group box:
QGridLayout *
echoLayout =
new
QGridLayout;
echoLayout-&
gt;addWidget(echoLabel, 0
, 0
);
echoLayout-&
gt;addWidget(echoComboBox, 0
, 1
);
echoLayout-&
gt;addWidget(echoLineEdit, 1
, 0
, 1
, 2
);
echoGroup-&
gt;setLayout(echoLayout);
The other layouts are constructed in the same way:
QGridLayout *
validatorLayout =
new
QGridLayout;
validatorLayout-&
gt;addWidget(validatorLabel, 0
, 0
);
validatorLayout-&
gt;addWidget(validatorComboBox, 0
, 1
);
validatorLayout-&
gt;addWidget(validatorLineEdit, 1
, 0
, 1
, 2
);
validatorGroup-&
gt;setLayout(validatorLayout);
QGridLayout *
alignmentLayout =
new
QGridLayout;
alignmentLayout-&
gt;addWidget(alignmentLabel, 0
, 0
);
alignmentLayout-&
gt;addWidget(alignmentComboBox, 0
, 1
);
alignmentLayout-&
gt;addWidget(alignmentLineEdit, 1
, 0
, 1
, 2
);
alignmentGroup-&
gt; setLayout(alignmentLayout);
QGridLayout *
inputMaskLayout =
new
QGridLayout;
inputMaskLayout-&
gt;addWidget(inputMaskLabel, 0
, 0
);
inputMaskLayout-&
gt;addWidget(inputMaskComboBox, 0
, 1
);
inputMaskLayout-&
gt;addWidget(inputMaskLineEdit, 1
, 0
, 1
, 2
);
inputMaskGroup-&
gt;setLayout(inputMaskLayout);
QGridLayout *
accessLayout =
new
QGridLayout;
accessLayout-&
gt;addWidget(accessLabel, 0
, 0
);
accessLayout-&
gt;addWidget(accessComboBox, 0
, 1
);
accessLayout-&
gt;addWidget(accessLineEdit, 1
, 0
, 1
, 2
);
accessGroup-&
gt;setLayout(accessLayout);
Finally, we place each group box in a grid layout for the Window object and set the window title:
QGridLayout *
layout =
new
QGridLayout;
layout-&
gt;addWidget(echoGroup, 0
, 0
);
layout-&
gt;addWidget(validatorGroup, 1
, 0
);
layout-&
gt;addWidget(alignmentGroup, 2
, 0
);
layout-&
gt;addWidget(inputMaskGroup, 0
, 1
);
layout-&
gt;addWidget(accessGroup, 1
, 1
);
setLayout(layout);
setWindowTitle(tr("Line Edits"
));
}
The slots respond to signals emitted when the comboboxes are changed by the user.
When the combobox for the Echo group box is changed, the echoChanged() slot is called:
void
Window::
echoChanged(int
index)
{
switch
(index) {
case
0
:
echoLineEdit-&
gt;setEchoMode(QLineEdit::
Normal);
break
;
case
1
:
echoLineEdit-&
gt;setEchoMode(QLineEdit::
Password);
break
;
case
2
:
echoLineEdit-&
gt;setEchoMode(QLineEdit::
PasswordEchoOnEdit);
break
;
case
3
:
echoLineEdit-&
gt;setEchoMode(QLineEdit::
NoEcho);
break
;
}
}
The slot updates the line edit in the same group box to use an echo mode that corresponds to the entry described in the combobox.
When the combobox for the Validator group box is changed, the validatorChanged() slot is called:
void
Window::
validatorChanged(int
index)
{
switch
(index) {
case
0
:
validatorLineEdit-&
gt;setValidator(nullptr
);
break
;
case
1
:
validatorLineEdit-&
gt;setValidator(new
QIntValidator(
validatorLineEdit));
break
;
case
2
:
validatorLineEdit-&
gt;setValidator(new
QDoubleValidator(-
999.0
,
999.0
, 2
, validatorLineEdit));
break
;
}
validatorLineEdit-&
gt;clear();
}
The slot either creates a new validator for the line edit to use, or it removes the validator in use by calling QLineEdit::setValidator() with a zero pointer. We clear the line edit in this case to ensure that the new validator is initially given valid input to work with.
When the combobox for the Alignment group box is changed, the alignmentChanged() slot is called:
void
Window::
alignmentChanged(int
index)
{
switch
(index) {
case
0
:
alignmentLineEdit-&
gt;setAlignment(Qt::
AlignLeft);
break
;
case
1
:
alignmentLineEdit-&
gt;setAlignment(Qt::
AlignCenter);
break
;
case
2
:
alignmentLineEdit-&
gt;setAlignment(Qt::
AlignRight);
break
;
}
}
This changes the way that text is displayed in the line edit to correspond with the description selected in the combobox.
The inputMaskChanged() slot handles changes to the combobox in the Input Mask group box:
void
Window::
inputMaskChanged(int
index)
{
switch
(index) {
case
0
:
inputMaskLineEdit-&
gt;setInputMask(""
);
break
;
case
1
:
inputMaskLineEdit-&
gt;setInputMask("+99 99 99 99 99;_"
);
break
;
case
2
:
inputMaskLineEdit-&
gt;setInputMask("0000-00-00"
);
inputMaskLineEdit-&
gt;setText("00000000"
);
inputMaskLineEdit-&
gt;setCursorPosition(0
);
break
;
case
3
:
inputMaskLineEdit-&
gt;setInputMask(">AAAAA-AAAAA-AAAAA-AAAAA-AAAAA;#"
);
break
;
}
}
Each entry in the relevant combobox is associated with an input mask. We set a new mask by calling the QLineEdit::setInputMask() function with a suitable string; the mask is disabled if an empty string is used.
The accessChanged() slot handles changes to the combobox in the Access group box:
void
Window::
accessChanged(int
index)
{
switch
(index) {
case
0
:
accessLineEdit-&
gt;setReadOnly(false
);
break
;
case
1
:
accessLineEdit-&
gt;setReadOnly(true
);
break
;
}
}
Here, we simply associate the False and True entries in the combobox with false and true values to be passed to QLineEdit::setReadOnly(). This allows the user to enable and disable input to the line edit.