1 \section{\class{wxClipboard
}}\label{wxclipboard
}
3 A class for manipulating the clipboard. Note that this is not compatible with the
4 clipboard class from wxWindows
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.
8 See also the
\helpref{wxDataObject overview
}{wxdataobjectoverview
} for further information.
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
20 if (wxTheClipboard->Open())
22 // This data objects are held by the clipboard,
23 // so do not delete them in the app.
24 wxTheClipboard->SetData( new wxTextDataObject("Some text") );
25 wxTheClipboard->Close();
29 if (wxTheClipboard->Open())
31 if (wxTheClipboard->IsSupported( wxDF_TEXT ))
33 wxTextDataObject data;
34 wxTheClipboard->GetData( data );
35 wxMessageBox( data.GetText() );
37 wxTheClipboard->Close();
41 \wxheading{Derived from
}
43 \helpref{wxObject
}{wxobject
}
45 \wxheading{Include files
}
51 \helpref{Drag and drop overview
}{wxdndoverview
},
\helpref{wxDataObject
}{wxdataobject
}
53 \latexignore{\rtfignore{\wxheading{Members
}}}
55 \membersection{wxClipboard::wxClipboard
}
57 \func{}{wxClipboard
}{\void}
61 \membersection{wxClipboard::
\destruct{wxClipboard
}}
63 \func{}{\destruct{wxClipboard
}}{\void}
67 \membersection{wxClipboard::AddData
}\label{wxclipboardadddata
}
69 \func{bool
}{AddData
}{\param{wxDataObject*
}{ data
}}
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
79 \helpref{wxClipboard::SetData
}{wxclipboardsetdata
}
81 \membersection{wxClipboard::Clear
}\label{wxclipboardclear
}
83 \func{void
}{Clear
}{\void}
85 Clears the global clipboard object and the system's clipboard if possible.
87 \membersection{wxClipboard::Close
}\label{wxclipboardclose
}
89 \func{bool
}{Close
}{\void}
91 Call this function to close the clipboard, having opened it with
\helpref{wxClipboard::Open
}{wxclipboardopen
}.
93 \membersection{wxClipboard::GetData
}\label{wxclipboardgetdata
}
95 \func{bool
}{GetData
}{\param{wxDataObject\&
}{ data
}}
97 Call this function to fill
{\it data
} with data on the clipboard, if available in the required
98 format. Returns TRUE on success.
100 \membersection{wxClipboard::IsOpened
}\label{wxclipboardisopened
}
102 \constfunc{bool
}{IsOpened
}{\void}
104 Returns TRUE if the clipboard has been opened.
106 \membersection{wxClipboard::IsSupported
}\label{wxclipboardissupported
}
108 \func{bool
}{IsSupported
}{\param{const wxDataFormat\&
}{ format
}}
110 Returns TRUE if the format of the given data object is available on the clipboard.
112 \membersection{wxClipboard::Open
}\label{wxclipboardopen
}
114 \func{bool
}{Open
}{\void}
116 Call this function to open the clipboard before calling
\helpref{wxClipboard::SetData
}{wxclipboardsetdata
}
117 and
\helpref{wxClipboard::GetData
}{wxclipboardgetdata
}.
119 Call
\helpref{wxClipboard::Close
}{wxclipboardclose
} when you have finished with the clipboard. You
120 should keep the clipboard open for only a very short time.
122 Returns TRUE on success. This should be tested (as in the sample shown above).
124 \membersection{wxClipboard::SetData
}\label{wxclipboardsetdata
}
126 \func{bool
}{SetData
}{\param{wxDataObject*
}{ data
}}
128 Call this function to set the data object to the clipboard. This function will
129 clear all previous contents in the clipboard, so calling it several times
130 does not make any sense.
132 After this function has been called, the clipboard owns the data, so do not delete
137 \helpref{wxClipboard::AddData
}{wxclipboardadddata
}
139 \membersection{wxClipboard::UsePrimarySelection
}\label{wxclipboarduseprimary
}
141 \func{void
}{UsePrimarySelection
}{\param{bool
}{ primary = TRUE
}}
143 On platforms supporting it (currently only GTK), selects the so called
144 PRIMARY SELECTION as the clipboard as opposed to the normal clipboard,
145 if
{\it primary
} is TRUE.