Lines Matching full:clipboard
22 #include "ui/base/clipboard/clipboard.h"
177 // Glue to access the clipboard.
179 // Get a clipboard that can be used to construct a ScopedClipboardWriterGlue.
180 ui::Clipboard* ClipboardGetClipboard();
182 // Tests whether the clipboard contains a certain format
183 bool ClipboardIsFormatAvailable(const ui::Clipboard::FormatType& format,
184 ui::Clipboard::Buffer buffer);
186 // Reads the available types from the clipboard, if available.
187 void ClipboardReadAvailableTypes(ui::Clipboard::Buffer buffer,
191 // Reads UNICODE text from the clipboard, if available.
192 void ClipboardReadText(ui::Clipboard::Buffer buffer, string16* result);
194 // Reads ASCII text from the clipboard, if available.
195 void ClipboardReadAsciiText(ui::Clipboard::Buffer buffer, std::string* result);
197 // Reads HTML from the clipboard, if available.
198 void ClipboardReadHTML(ui::Clipboard::Buffer buffer, string16* markup,
201 void ClipboardReadImage(ui::Clipboard::Buffer buffer, std::string* data);
203 // Reads one type of data from the clipboard, if available.
204 bool ClipboardReadData(ui::Clipboard::Buffer buffer, const string16& type,
207 // Reads filenames from the clipboard, if available.
208 bool ClipboardReadFilenames(ui::Clipboard::Buffer buffer,