Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working in c++ Qt Creator. I have a form with labes and line edits. I would like to set as defalut in each line edit a text. It would be more efficient than writing the same stuff each time I run the application. Can you please tell me how to do this?

share|improve this question

4 Answers

up vote 1 down vote accepted

Use

void setText( const QString & )

You can set it in the constructor or maybe set all those defaults in an init() function.

share|improve this answer

When you double click in the UI designer on the QTextEdit you can enter a default text which is set everytime your application is run.

Alternate you can set the text using the ->setText(QString) function in the constructor of your window.

share|improve this answer

Qt has a concept of properties, and for each property, there's usually a getter and a setter, in your case "Text" (as also displayed in the designer) -> void setText(QString), QString text().

As a serious advice: Learn to use the excellent documentation. Nearly everything in QtCreator lets you open a context-sensitive help via F1. And read some introductions;

share|improve this answer

Read thorugh the documentation.
Why not just set it to your default value at start? Would be the easiest way if you know how to set a textedit to a value anyhow.

hope this helps, tell me if you need aything more

share|improve this answer
i've written my text in the line edit table but each time i run the application it dissapear from the screan – sunset Jul 28 '11 at 13:37
did you set up a reset function that resets all fields when the app is started, otherwise jsut set the field value on startup... – cwoebker Jul 28 '11 at 14:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.