vote up 0 vote down star

When i click Qlineedit i want the focus and at the same time i want to edit for multiple linedits for using virtual keyboard.

flag
Please clarify: where do you want the focus - how do you plan to edit several line-edits at the same time? Also the tag isn't related to the question. – eliben Aug 1 at 6:05
Basically i want to use virtual keyboard. Suppose say, if 10 QLineEdit is there. I want the focus of which Qlineedit i clicked and at the same time i want to edit with virtual keyboard. Am i clear myself? – Newbie Aug 1 at 9:11

2 Answers

vote up 0 vote down

Subclass QLineEdit and implement QWidget::focusInEvent(QFocusEvent *); and set a global variable to the current linedit and use that from your virtual keyboard.

ex (not real code) :

void myLineEdit::focusInEvent ( QFocusEvent * ) {
     myapp->currentLineEdit = this;
 }
 //virtual keyboard 
 if(myapp->currentLineEdit) abuse(myapp->currentLineEdit);
link|flag
vote up 0 vote down

Thanks for reply OneOfOne... If i click Qlineedit , i want to fire a signal(like signal fires when we click Qpushbutton).. How can i do that.. Thanks in advance..

link|flag

Your Answer

Get an OpenID
or

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