[PyQt] Searching for a very small scprit using CLIPBOARD
Roberto Alsina
ralsina at kde.org
Mon Apr 27 23:28:28 BST 2009
On Monday 27 April 2009 19:22:04 Giovanni Bajo wrote:
> On lun, 2009-04-27 at 18:42 +0200, projetmbc wrote:
> > Thanks a lot, your solution works fine. :-) Here is the complete
> > minimal code :
> >
> > ====================================
> > #!/usr/bin/env python
> > #coding=utf-8
> > import sys
> > from PyQt4 import QtGui, QtCore
> > app = QtGui.QApplication(sys.argv)
> > clipboard = app.clipboard()
> > clipboard.setText('The text that must be copied...')
> > event = QtCore.QEvent(QtCore.QEvent.Clipboard)
> > app.sendEvent(clipboard, event)
> > ====================================
>
> It doesn't work for me on Linux. Should it?
Remember that in Linux, unless you have something like klipper, when the app
setting the clipboard exits, the clipboard empties.
More information about the PyQt
mailing list