-
-
Notifications
You must be signed in to change notification settings - Fork 479
Expand file tree
/
Copy pathcef_drag_data.pxd
More file actions
21 lines (19 loc) · 727 Bytes
/
cef_drag_data.pxd
File metadata and controls
21 lines (19 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright (c) 2012-2014 The CEF Python authors. All rights reserved.
# License: New BSD License.
# Website: http://code.google.com/p/cefpython/
from libcpp cimport bool as cpp_bool
from cef_string cimport CefString
from libcpp.vector cimport vector as cpp_vector
cdef extern from "include/cef_drag_data.h":
cdef cppclass CefDragData:
cpp_bool IsLink()
cpp_bool IsFragment()
cpp_bool IsFile()
CefString GetLinkURL()
CefString GetLinkTitle()
CefString GetLinkMetadata()
CefString GetFragmentText()
CefString GetFragmentHtml()
CefString GetFragmentBaseURL()
CefString GetFileName()
cpp_bool GetFileNames(cpp_vector[CefString]& names)