How to extend QClipboard?

370 Views Asked by At

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

Please provide code.

Thanks

1

There are 1 best solutions below

2
On

See QClipboard it's very simple for just text

QClipboard *clipboard = QApplication::clipboard();
QString getCLipboardText = clipboard->text();
QString newClipboardText("blah blah");
clipboard->setText(newClipboardText);