Home | History | Annotate | Download | only in mac

Lines Matching refs:Frame

36 #import "Frame.h"
136 void Pasteboard::writeSelection(NSPasteboard* pasteboard, Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame)
149 NSArray *types = frame->editor()->client()->pasteboardTypesForSelection(frame);
161 frame->editor()->client()->didSetSelectionTypesForPasteboard();
166 RefPtr<LegacyWebArchive> archive = LegacyWebArchive::createFromSelection(frame);
187 String text = frame->displayStringModifiedByEncoding(selectedRange->text());
209 void Pasteboard::writeSelection(Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame)
211 Pasteboard::writeSelection(m_pasteboard.get(), selectedRange, canSmartCopyOrDelete, frame);
226 void Pasteboard::writeURL(NSPasteboard* pasteboard, NSArray* types, const KURL& url, const String& titleStr, Frame* frame)
239 NSString *userVisibleString = frame->editor()->client()->userVisibleString(cocoaURL);
263 void Pasteboard::writeURL(const KURL& url, const String& titleStr, Frame* frame)
265 Pasteboard::writeURL(m_pasteboard.get(), nil, url, titleStr, frame);
295 Frame* frame = node->document()->frame();
310 writeURL(m_pasteboard.get(), types, cocoaURL, nsStringNilIfEmpty(title), frame);
328 String Pasteboard::plainText(Frame* frame)
359 string = frame->editor()->client()->userVisibleString(url);
368 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context, bool allowPlainText, bool& chosePlainText)
383 RefPtr<DocumentFragment> fragment = createFragmentFromMarkup(frame->document(), HTMLString, "", FragmentScriptingNotAllowed);