QClipboard Class
The QClipboard class provides access to the window system clipboard. More...
| Header: | #include <QClipboard> |
| qmake: | QT += gui |
| Inherits: | QObject |
Public Types
| enum | Mode { Clipboard, Selection, FindBuffer } |
Detailed Description
The clipboard offers a simple mechanism to copy and paste data between applications.
QClipboard supports the same data types that QDrag does, and uses similar mechanisms. For advanced clipboard usage read Drag and Drop.
There is a single QClipboard object in an application, accessible as QGuiApplication::clipboard().
Example:
QClipboard *clipboard = QGuiApplication::clipboard(); QString originalText = clipboard->text(); ... clipboard->setText(newText);
QClipboard features some convenience functions to access common data types: setText() allows the exchange of Unicode text and setPixmap() and setImage() allows the exchange of QPixmaps and QImages between applications. The setMimeData() function is the ultimate in flexibility: it allows you to add any QMimeData into the clipboard. There are corresponding getters for each of these, e.g. text(), image() and pixmap(). You can clear the clipboard by calling clear().
A typical example of the use of these functions follows:
void DropArea::paste() { const QClipboard *clipboard = QApplication::clipboard(); const QMimeData *mimeData = clipboard->mimeData(); if (mimeData->hasImage()) { setPixmap(qvariant_cast<QPixmap>(mimeData->imageData())); } else if (mimeData->hasHtml()) { setText(mimeData->html()); setTextFormat(Qt::RichText); } else if (mimeData->hasText()) { setText(mimeData->text()); setTextFormat(Qt::PlainText); } else { setText(tr("Cannot display data")); }
Notes for X11 Users
- The X11 Window System has the concept of a separate selection and clipboard. When text is selected, it is immediately available as the global mouse selection. The global mouse selection may later be copied to the clipboard. By convention, the middle mouse button is used to paste the global mouse selection.
- X11 also has the concept of ownership; if you change the selection within a window, X11 will only notify the owner and the previous owner of the change, i.e. it will not notify all applications that the selection or clipboard data changed.
- Lastly, the X11 clipboard is event driven, i.e. the clipboard will not function properly if the event loop is not running. Similarly, it is recommended that the contents of the clipboard are stored or retrieved in direct response to user-input events, e.g. mouse button or key presses and releases. You should not store or retrieve the clipboard contents in response to timer or non-user-input events.
- Since there is no standard way to copy and paste files between applications on X11, various MIME types and conventions are currently in use. For instance, Nautilus expects files to be supplied with a
x-special/gnome-copied-filesMIME type with data beginning with the cut/copy action, a newline character, and the URL of the file.
Notes for macOS Users
macOS supports a separate find buffer that holds the current search string in Find operations. This find clipboard can be accessed by specifying the FindBuffer mode.
Notes for Windows and macOS Users
- Windows and macOS do not support the global mouse selection; they only supports the global clipboard, i.e. they only add text to the clipboard when an explicit copy or cut is made.
- Windows and macOS does not have the concept of ownership; the clipboard is a fully global resource so all applications are notified of changes.
Notes for Universal Windows Platform Users
- The Universal Windows Platform only allows to query the clipboard in case the application is active and an application window has focus. Accessing the clipboard data when in background will fail due to access denial.
Notes for Android Users
On Android only these mime types are supported: text/plain, text/html, and text/uri-list.
See also QGuiApplication.
Member Type Documentation
enum QClipboard::Mode
This enum type is used to control which part of the system clipboard is used by QClipboard::mimeData(), QClipboard::setMimeData() and related functions.
| Constant | Value | Description |
|---|---|---|
QClipboard::Clipboard | 0 | indicates that data should be stored and retrieved from the global clipboard. |
QClipboard::Selection | 1 | indicates that data should be stored and retrieved from the global mouse selection. Support for Selection is provided only on systems with a global mouse selection (e.g. X11). |
QClipboard::FindBuffer | 2 | indicates that data should be stored and retrieved from the Find buffer. This mode is used for holding search strings on macOS. |
See also QClipboard::supportsSelection().