• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/

Lines Matching refs:clipboard

3 A class for manipulating the clipboard. Note that this is not compatible with the
4 clipboard class from wxWidgets 1.xx, which has the same name but a different implementation.
6 To use the clipboard, you call member functions of the global {\bf wxTheClipboard} object.
10 Call \helpref{wxClipboard::Open}{wxclipboardopen} to get ownership of the clipboard. If this operation returns true, you
11 now own the clipboard. Call \helpref{wxClipboard::SetData}{wxclipboardsetdata} to put data
12 on the clipboard, or \helpref{wxClipboard::GetData}{wxclipboardgetdata} to
13 retrieve data from the clipboard. Call \helpref{wxClipboard::Close}{wxclipboardclose} to close
14 the clipboard and relinquish ownership. You should keep the clipboard open only momentarily.
19 // Write some text to the clipboard
22 // This data objects are held by the clipboard,
71 Call this function to add the data object to the clipboard. You may call
72 this function repeatedly after having cleared the clipboard using \helpref{wxClipboard::Clear}{wxclipboardclear}.
74 After this function has been called, the clipboard owns the data, so do not delete
85 Clears the global clipboard object and the system's clipboard if possible.
91 Call this function to close the clipboard, having opened it with \helpref{wxClipboard::Open}{wxclipboardopen}.
97 Flushes the clipboard: this means that the data which is currently on
98 clipboard will stay available even after the application exits (possibly
99 eating memory), otherwise the clipboard will be emptied on exit.
106 Call this function to fill {\it data} with data on the clipboard, if available in the required
113 Returns true if the clipboard has been opened.
119 Returns true if there is data which matches the data format of the given data object currently {\bf available} (IsSupported sounds like a misnomer, FIXME: better deprecate this name?) on the clipboard.
125 Call this function to open the clipboard before calling \helpref{wxClipboard::SetData}{wxclipboardsetdata}
128 Call \helpref{wxClipboard::Close}{wxclipboardclose} when you have finished with the clipboard. You
129 should keep the clipboard open for only a very short time.
137 Call this function to set the data object to the clipboard. This function will
138 clear all previous contents in the clipboard, so calling it several times
141 After this function has been called, the clipboard owns the data, so do not delete
153 PRIMARY SELECTION as the clipboard as opposed to the normal clipboard,