Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to move cursor one step backward in QLineEdit in Qt?

Any help is appreciated.

I tried

pLineEdit->cursorBackward(true,1);

but it does not work.

share|improve this question
if cursorBackward() does not work, then what does cursorPosition() return? – Bart Jul 25 '11 at 10:13

3 Answers

If you want to undo you just call undo function. If you want to go one character back you can use cursorBackward.

share|improve this answer

Have a look at the docs: http://doc.qt.nokia.com/latest/qlineedit.html#cursorPosition-prop

Use cursorPosition() to get the current position and then use setCursorPosition() to set it one step backward.

share|improve this answer
I tried this also int pos = pLineEdit->cursorPosition(); pLineEdit->setCursorPosition(pos -1); but it does not set the text one step backward, but when i debug it shows me correct cursor position. – user662285 Jul 25 '11 at 10:16
"set the text one step backward"... Did you mean "cursor" or do you really mean "text"? – Bart Jul 25 '11 at 10:25
Cursor.................. – user662285 Jul 25 '11 at 10:26
are you trying to implement backspace? or undo function? – Raiv Jul 25 '11 at 13:13
@raiv : I am implementing left and right backward as u see in touch screen phones these days. – user662285 Jul 25 '11 at 15:07

void QLineEdit::cursorBackward ( bool mark, int steps = 1 ); is exactly what you want, see docs

share|improve this answer

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.