How can I extend QClipboard to allow selection of all text in all open windows.

Please provide code.

Thanks

link|improve this question

20% accept rate
Welcome to Stackoverflow. Visiting all sections of the FAQ is not a waste of time: you will earn a badge :-) but also improve your proficiency. – menjaraz Dec 22 '11 at 13:23
feedback

1 Answer

See QClipboard it's very simple for just text

QClipboard *clipboard = QApplication::clipboard();
QString getCLipboardText = clipboard->text();
QString newClipboardText("blah blah");
clipboard->setText(newClipboardText);
link|improve this answer
:Thanks for your reply. but i want to retrieve global selection of any text in any window – N K Dec 20 '11 at 17:37
clipboard->text() will retrieve text from the clipboard - from whichever app it was copied from. There is only one system-wide clipboard – Martin Beckett Dec 20 '11 at 17:39
feedback

Your Answer

 
or
required, but never shown

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