Hello! Recently it was necessary to understand Qt GUI , and I encountered one problem with QLineEdit . In general, I have an object of type QLineEdit , and I use it in the QWizardPage . The program shows the starting address that can be edited. How, after editing, to refer to the text that is written in the object QLineEdit . Knowledge in Qt not enough, do not judge strictly.
QLabel oldWay = new QLabel("Way to Existed File:"); QLineEdit oldWayEdit = new QLineEdit; QLabel newWay = new QLabel("Way to Created File:"); QLineEdit newWayEdit = new QLineEdit; Further in these fields the data changes, and I need to take the changed data. I do not know how. I looked at Qt Project all the features, but to no avail
oldWayEdit->text(). - Costantino Rupert