HomeSort by relevance Sort by last modified time
    Searched full:clipboard (Results 126 - 150 of 349) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_mac.mm 25 #include "ui/base/clipboard/clipboard.h"
    [all...]
autocomplete_edit_view_gtk.cc 133 void ClipboardSelectionCleared(GtkClipboard* clipboard,
334 g_signal_connect(text_view_, "copy-clipboard",
336 g_signal_connect(text_view_, "cut-clipboard",
338 g_signal_connect(text_view_, "paste-clipboard",
1539 GtkClipboard* clipboard = gtk_clipboard_get(GDK_SELECTION_PRIMARY); local
1917 GtkClipboard* clipboard = local
1929 GtkClipboard* clipboard = local
2085 GtkClipboard* clipboard = local
    [all...]
autocomplete_edit_view_gtk.h 266 // Callback for the PRIMARY selection clipboard.
267 static void ClipboardGetSelectionThunk(GtkClipboard* clipboard,
271 void ClipboardGetSelection(GtkClipboard* clipboard,
283 // Take control of the PRIMARY selection clipboard with |text|. Use
298 // the PRIMARY selection. Removes the clipboard from |text_buffer_| and
428 // clipboard. This is updated on-the-fly as the user selects text. This may
436 // When we own the X clipboard, this is the text for it.
486 // Indicates that user requested to paste clipboard.
487 // The actual paste clipboard action might be performed later if the
488 // clipboard is not empty
    [all...]
  /external/webkit/Source/WebCore/dom/
Clipboard.idl 31 interface Clipboard {
MouseEvent.idl 60 readonly attribute Clipboard dataTransfer;
MouseEvent.cpp 56 PassRefPtr<Clipboard> clipboard, bool isSimulated)
62 , m_clipboard(clipboard)
  /external/webkit/Source/WebCore/editing/qt/
EditorQt.cpp 42 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy, Frame*)
  /external/webkit/Source/WebCore/platform/gtk/
DragDataGtk.cpp 20 #include "Clipboard.h"
  /sdk/eclipse/
dictionary.txt 44 clipboard
  /external/chromium/chrome/browser/
browser_process_impl.h 66 virtual ui::Clipboard* clipboard();
215 scoped_ptr<ui::Clipboard> clipboard_;
browser_process.h 71 class Clipboard;
95 virtual ui::Clipboard* clipboard() = 0;
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8EventCustom.cpp 34 #include "Clipboard.h"
89 return toV8(static_cast<MouseEvent*>(event)->clipboard());
99 return toV8(static_cast<ClipboardEvent*>(event)->clipboard());
  /external/webkit/Source/WebCore/page/chromium/
EventHandlerChromium.cpp 129 PassRefPtr<Clipboard> EventHandler::createDraggingClipboard() const
131 RefPtr<ChromiumDataObject> dataObject = ChromiumDataObject::create(Clipboard::DragAndDrop);
132 return ClipboardChromium::create(Clipboard::DragAndDrop, dataObject.get(), ClipboardWritable, m_frame);
  /external/webkit/Source/WebCore/platform/chromium/
ChromiumDataObjectLegacy.cpp 130 if (m_clipboardType == Clipboard::CopyAndPaste) {
154 if (m_clipboardType == Clipboard::CopyAndPaste) {
226 ChromiumDataObjectLegacy::ChromiumDataObjectLegacy(Clipboard::ClipboardType clipboardType)
  /external/webkit/Source/WebCore/platform/win/
PasteboardWin.cpp 59 // and now it's come time to put the data on the clipboard.
64 // the clipboard before it exits.
182 // write to clipboard in format com.apple.safari.bookmarkdata to be able to paste into the bookmarks view with appropriate title
190 // write to clipboard in format CF_HTML to be able to paste into contenteditable areas as a link
288 // get data off of clipboard
ClipboardWin.cpp 68 // We provide the IE clipboard types (URL and Text), and the clipboard types specified in the WHATWG Web Applications 1.0 draft
341 PassRefPtr<Clipboard> Clipboard::create(ClipboardAccessPolicy policy, DragData* dragData, Frame* frame)
349 : Clipboard(policy, clipboardType)
357 : Clipboard(policy, clipboardType)
365 : Clipboard(policy, clipboardType)
423 // FIXME: Need to be able to write to the system clipboard <rdar://problem/5015941>
443 // FIXME: Need to be able to write to the system clipboard <rdar://problem/5015941>
476 // FIXME: Need to be able to write to the system clipboard <rdar://problem/5015941
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
ScreenShotDialog.java 27 import org.eclipse.swt.dnd.Clipboard;
59 private Clipboard mClipboard;
69 mClipboard = new Clipboard(parent.getDisplay());
167 copy.setToolTipText("Copy the screenshot to the clipboard");
213 * Copies the content of {@link #mImageLabel} to the clipboard.
  /development/samples/NotePad/src/com/example/android/notepad/
NoteEditor.java 45 * create a new note from the current contents of the clipboard {@link Intent#ACTION_PASTE}.
216 // For a paste, initializes the data from clipboard.
454 * A helper method that replaces the note's data with the contents of the clipboard.
458 // Gets a handle to the Clipboard Manager
459 ClipboardManager clipboard = (ClipboardManager) local
465 // Gets the clipboard data from the clipboard
466 ClipData clip = clipboard.getPrimaryClip();
472 // Gets the first item from the clipboard data
483 // The clipboard holds a reference to data with a note MIME type. This copies it
    [all...]
NotesList.java 175 // The paste menu item is enabled if there is data on the clipboard.
176 ClipboardManager clipboard = (ClipboardManager) local
182 // If the clipboard contains an item, enables the Paste option on the menu.
183 if (clipboard.hasPrimaryClip()) {
186 // If the clipboard is empty, disables the menu's Paste option.
401 // Gets a handle to the clipboard service.
402 ClipboardManager clipboard = (ClipboardManager) local
405 // Copies the notes URI to the clipboard. In effect, this copies the note itself
406 clipboard.setPrimaryClip(ClipData.newUri( // new clipboard item holding a UR
    [all...]
  /external/qemu/android/camera/
camera-capture-windows.c 338 /* Grab a frame, and post it to the clipboard. Not very effective, but this
343 E("%s: Device '%s' is unable to save frame to the clipboard: %d",
349 /* Get bitmap handle saved into clipboard. Note that bitmap is still
350 * owned by the clipboard here! */
353 E("%s: Device '%s' is unable to obtain frame from the clipboard: %d",
485 /* Grab a frame, and post it to the clipboard. Not very effective, but this
490 E("%s: Device '%s' is unable to save frame to the clipboard: %d",
495 /* Get bitmap handle saved into clipboard. Note that bitmap is still
496 * owned by the clipboard here! */
499 E("%s: Device '%s' is unable to obtain frame from the clipboard: %d"
    [all...]
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.cpp 116 g_signal_stop_emission_by_name(widget, "cut-clipboard");
122 g_signal_stop_emission_by_name(widget, "copy-clipboard");
128 g_signal_stop_emission_by_name(widget, "paste-clipboard");
398 static void collapseSelection(GtkClipboard* clipboard, WebKitWebView* webView)
420 GtkClipboard* clipboard = gtk_widget_get_clipboard(GTK_WIDGET(webView), GDK_SELECTION_PRIMARY);
421 DataObjectGtk* dataObject = DataObjectGtk::forClipboard(clipboard);
434 pasteboardHelperInstance()->writeClipboardContents(clipboard, callback);
854 g_signal_connect(m_nativeWidget.get(), "cut-clipboard", G_CALLBACK(cutClipboardCallback), this);
855 g_signal_connect(m_nativeWidget.get(), "copy-clipboard", G_CALLBACK(copyClipboardCallback), this);
856 g_signal_connect(m_nativeWidget.get(), "paste-clipboard", G_CALLBACK(pasteClipboardCallback), this)
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
ClipboardMac.mm 50 PassRefPtr<Clipboard> Clipboard::create(ClipboardAccessPolicy policy, DragData* dragData, Frame* frame)
56 : Clipboard(policy, clipboardType)
291 // and a second which adds all the extra types from the cocoa clipboard (which is Mac-only behavior).
305 // clipboard are not reflected in any FileList objects the page has accessed and stored
364 // as part of getting the drag kicked off, or 2) Someone kept a ref to the clipboard and is trying to
  /external/webkit/Source/WebKit2/UIProcess/gtk/
WebView.cpp 79 g_signal_stop_emission_by_name(widget, "cut-clipboard");
85 g_signal_stop_emission_by_name(widget, "copy-clipboard");
91 g_signal_stop_emission_by_name(widget, "paste-clipboard");
255 g_signal_connect(m_nativeWidget.get(), "cut-clipboard", G_CALLBACK(cutClipboardCallback), this);
256 g_signal_connect(m_nativeWidget.get(), "copy-clipboard", G_CALLBACK(copyClipboardCallback), this);
257 g_signal_connect(m_nativeWidget.get(), "paste-clipboard", G_CALLBACK(pasteClipboardCallback), this);
  /external/chromium/chrome/browser/bookmarks/
bookmark_utils.h 100 // Copies nodes onto the clipboard. If |remove_nodes| is true the nodes are
101 // removed after copied to the clipboard. The nodes are copied in such a way
107 // Pastes from the clipboard. The new nodes are added to |parent|, unless
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
LogCatView.java 40 import org.eclipse.swt.dnd.Clipboard;
80 private Clipboard mClipboard;
97 mClipboard = new Clipboard(parent.getDisplay());

Completed in 409 milliseconds

1 2 3 4 56 7 8 91011>>