I have made a GUI using Qt Designer, I have like 20 or more lineEdit widgets, I am looking for the correct way to access all of them without having to access each one...I explain with an example in pseudocode:
This is what I DON'T want:
lineEdit1.setText("Value = 1")
lineEdit2.setText("Value = 2")
lineEdit3.setText("Value = 3")
and so on, up to
lineEdit20.setText("Value = 20")
I am looking for something like THIS:
for i in xrange(1,21):
lineEdit(i).setText("Value = whatever")
The problem is that, as far as I know, when dragging and dropping widgets, Qt Designer automatically adds a number to the end of the name...lineEdit1, lineEdit2,....so after that I do not know how to access all of them in the code.
If you really want to use the QT designer, I guess your best solution is to simply add widgets to a list. I know this is sub-optimal, but this way you will only have to do it once.
An other solution is to simply iterate the children. This is explained here, no reason to repeat.