Hi,
I am using QTextEdit on Qtopia 4.3.0.
I set it to readonly.

Qt Code:
  1. QTextEdit* lTextEdit = new QTextEdit(this);
  2. lTextEdit->setReadOnly(true);
  3. lTextEdit->setText("You and me are one and same.\nYou and me are one and shame.\nYou and me are one and dame.");
  4. lTextEdit->setGeometry(10, 140, 80, 80);
  5.  
  6. connect(lTextEdit, SIGNAL(textChanged()), this, SLOT(BtnClicked()));
To copy to clipboard, switch view to plain text mode 

All is working fine like being unable to modify it, select the text etc.
Problem is that when the widget attains navigation focus (the whole textbox and scrollbar are highlighted) i type a space or any other alphanumeric key, the text is lost. I tried searching but to no result
please help me out