HomeSort by relevance Sort by last modified time
    Searched full:pasteboardtypes (Results 1 - 15 of 15) sorted by null

  /external/webkit/Source/WebKit2/Shared/mac/
PasteboardTypes.mm 27 #import "PasteboardTypes.h"
33 NSString * const PasteboardTypes::WebArchivePboardType = @"Apple Web Archive pasteboard type";
34 NSString * const PasteboardTypes::WebURLsWithTitlesPboardType = @"WebURLsWithTitlesPboardType";
35 NSString * const PasteboardTypes::WebURLPboardType = @"public.url";
36 NSString * const PasteboardTypes::WebURLNamePboardType = @"public.url-name";
44 NSArray* PasteboardTypes::forEditing()
54 NSArray* PasteboardTypes::forURL()
60 NSArray* PasteboardTypes::forImages()
66 NSArray* PasteboardTypes::forImagesWithArchive()
72 NSArray* PasteboardTypes::forSelection(
    [all...]
PasteboardTypes.h 31 class PasteboardTypes {
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebDragClientMac.mm 29 #import "PasteboardTypes.h"
148 [types.get() addObjectsFromArray:archive ? PasteboardTypes::forImagesWithArchive() : PasteboardTypes::forImages()];
163 [pasteboard setString:[URL _web_originalDataAsString] forType:PasteboardTypes::WebURLPboardType];
165 [pasteboard setString:title forType:PasteboardTypes::WebURLNamePboardType];
169 [pasteboard setPropertyList:arrayForURLsWithTitles(URL, title) forType:PasteboardTypes::WebURLsWithTitlesPboardType];
172 [pasteboard setData:(NSData *)archive->rawDataRepresentation().get() forType:PasteboardTypes::WebArchivePboardType];
  /external/webkit/Source/WebCore/editing/mac/
EditorMac.mm 211 void Editor::writeSelectionToPasteboard(const String& pasteboardName, const Vector<String>& pasteboardTypes)
214 for (size_t i = 0; i < pasteboardTypes.size(); ++i)
215 [types.get() addObject:pasteboardTypes[i]];
  /external/webkit/Source/WebCore/platform/
Pasteboard.h 89 static void writeSelection(NSPasteboard*, NSArray* pasteboardTypes, Range* selectedRange, bool canSmartCopyOrDelete, Frame*);
  /external/webkit/Source/WebCore/platform/mac/
PasteboardMac.mm 131 void Pasteboard::writeSelection(NSPasteboard* pasteboard, NSArray* pasteboardTypes, Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame)
167 NSArray *types = pasteboardTypes ? pasteboardTypes : frame->editor()->client()->pasteboardTypesForSelection(frame);
177 NSArray *types = pasteboardTypes ? pasteboardTypes : selectionPasteboardTypes(canSmartCopyOrDelete, [attributedString containsAttachments]);
  /external/webkit/Source/WebKit2/UIProcess/mac/
WebPageProxyMac.mm 197 bool WebPageProxy::writeSelectionToPasteboard(const String& pasteboardName, const Vector<String>& pasteboardTypes)
201 process()->sendSync(Messages::WebPage::WriteSelectionToPasteboard(pasteboardName, pasteboardTypes), Messages::WebPage::WriteSelectionToPasteboard::Reply(result), m_pageID, messageTimeout);
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKView.mm 42 #import "PasteboardTypes.h"
188 NSMutableSet *types = [[NSMutableSet alloc] initWithArray:PasteboardTypes::forEditing()];
189 [types addObjectsFromArray:PasteboardTypes::forURL()];
218 [NSApp registerServicesMenuSendTypes:PasteboardTypes::forSelection() returnTypes:PasteboardTypes::forEditing()];
527 Vector<String> pasteboardTypes;
530 pasteboardTypes.append([types objectAtIndex:i]);
531 return _data->_page->writeSelectionToPasteboard([pasteboard name], pasteboardTypes);
538 BOOL isValidSendType = !sendType || ([PasteboardTypes::forSelection() containsObject:sendType] && !_data->_page->editorState().selectionIsNone);
542 else if ([PasteboardTypes::forEditing() containsObject:returnType] && _data->_page->editorState().isContentEditable)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.messages.in 184 WriteSelectionToPasteboard(WTF::String pasteboardName, WTF::Vector<WTF::String> pasteboardTypes) -> (bool result)
WebPage.h 333 void writeSelectionToPasteboard(const WTF::String& pasteboardName, const WTF::Vector<WTF::String>& pasteboardTypes, bool& result);
  /external/webkit/Source/WebCore/editing/
Editor.h 382 void writeSelectionToPasteboard(const String& pasteboardName, const Vector<String>& pasteboardTypes);
  /external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
WebPageMac.mm 588 void WebPage::writeSelectionToPasteboard(const String& pasteboardName, const Vector<String>& pasteboardTypes, bool& result)
595 frame->editor()->writeSelectionToPasteboard(pasteboardName, pasteboardTypes);
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.h 351 bool writeSelectionToPasteboard(const String& pasteboardName, const Vector<String>& pasteboardTypes);
    [all...]
  /external/webkit/Source/WebKit2/WebKit2.xcodeproj/
project.pbxproj     [all...]
  /external/webkit/Source/WebKit2/
ChangeLog-2011-02-16     [all...]

Completed in 191 milliseconds