Searched defs:pasteboard (Results 1 - 14 of 14) sorted by relevance

/external/webkit/Source/WebCore/platform/mac/
H A DClipboardMac.h49 static PassRefPtr<ClipboardMac> create(ClipboardType clipboardType, NSPasteboard *pasteboard, ClipboardAccessPolicy policy, Frame* frame) argument
51 return adoptRef(new ClipboardMac(clipboardType, pasteboard, policy, frame));
80 NSPasteboard *pasteboard() { return m_pasteboard.get(); } function in class:WebCore::ClipboardMac
/external/webkit/Source/WebCore/platform/
H A DDragData.h123 NSPasteboard *pasteboard() { return m_pasteboard.get(); } function in class:WebCore::DragData
/external/webkit/Source/WebCore/platform/brew/
H A DPasteboardBrew.cpp41 static Pasteboard* pasteboard = new Pasteboard; local
42 return pasteboard;
/external/webkit/Source/WebCore/platform/efl/
H A DPasteboardEfl.cpp40 static Pasteboard* pasteboard = new Pasteboard(); local
41 return pasteboard;
/external/webkit/Source/WebCore/platform/wx/
H A DPasteboardWx.cpp49 static Pasteboard* pasteboard = new Pasteboard(); local
50 return pasteboard;
/external/webkit/Source/WebCore/platform/chromium/
H A DPasteboardChromium.cpp58 static Pasteboard* pasteboard = new Pasteboard; local
59 return pasteboard;
/external/webkit/Source/WebCore/platform/gtk/
H A DPasteboardGtk.cpp42 static Pasteboard* pasteboard = new Pasteboard(); local
43 return pasteboard;
/external/webkit/Source/WebCore/platform/haiku/
H A DPasteboardHaiku.cpp57 static Pasteboard pasteboard; local
58 return &pasteboard;
/external/webkit/Source/WebCore/platform/qt/
H A DPasteboardQt.cpp54 static Pasteboard* pasteboard = 0; local
55 if (!pasteboard)
56 pasteboard = new Pasteboard();
57 return pasteboard;
/external/webkit/Source/WebCore/platform/win/
H A DPasteboardWin.cpp83 static Pasteboard* pasteboard = new Pasteboard; local
84 return pasteboard;
121 // Put CF_HTML format on the pasteboard
133 // Put plain string on the pasteboard. CF_UNICODETEXT covers CF_TEXT as well
144 // enable smart-replacing later on by putting dummy data on the pasteboard
158 // Put plain string on the pasteboard. CF_UNICODETEXT covers CF_TEXT as well
/external/webkit/Source/WebCore/platform/wince/
H A DPasteboardWinCE.cpp81 static Pasteboard* pasteboard = new Pasteboard; local
82 return pasteboard;
115 // Put CF_HTML format on the pasteboard
126 // Put plain string on the pasteboard. CF_UNICODETEXT covers CF_TEXT as well
137 // enable smart-replacing later on by putting dummy data on the pasteboard
150 // Put plain string on the pasteboard. CF_UNICODETEXT covers CF_TEXT as well
/external/webkit/Tools/DumpRenderTree/win/
H A DUIDelegate.h191 /* [in] */ IDataObject *pasteboard,
187 willPerformDragSourceAction( IWebView *webView, WebDragSourceAction action, LPPOINT point, IDataObject *pasteboard, IDataObject **newPasteboard) argument
/external/webkit/Source/WebKit/chromium/src/
H A DWebViewImpl.cpp552 Pasteboard* pasteboard = Pasteboard::generalPasteboard(); local
553 bool oldSelectionMode = pasteboard->isSelectionMode();
554 pasteboard->setSelectionMode(true);
556 pasteboard->setSelectionMode(oldSelectionMode);
/external/webkit/Source/WebCore/editing/
H A DEditor.cpp365 void Editor::pasteAsPlainTextWithPasteboard(Pasteboard* pasteboard) argument
367 String text = pasteboard->plainText(m_frame);
369 pasteAsPlainText(text, canSmartReplaceWithPasteboard(pasteboard));
373 void Editor::pasteWithPasteboard(Pasteboard* pasteboard, bool allowPlainText) argument
377 RefPtr<DocumentFragment> fragment = pasteboard->documentFragment(m_frame, range, allowPlainText, chosePlainText);
379 pasteAsFragment(fragment, canSmartReplaceWithPasteboard(pasteboard), chosePlainText);
383 bool Editor::canSmartReplaceWithPasteboard(Pasteboard* pasteboard) argument
385 return client() && client()->smartInsertDeleteEnabled() && pasteboard->canSmartReplace();
477 void Editor::writeSelectionToPasteboard(Pasteboard* pasteboard) argument
479 pasteboard
[all...]

Completed in 426 milliseconds