forked from cztomczak/cefpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcef_linux.pxd
More file actions
26 lines (19 loc) · 810 Bytes
/
cef_linux.pxd
File metadata and controls
26 lines (19 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright (c) 2012-2014 The CEF Python authors. All rights reserved.
# License: New BSD License.
# Website: http://code.google.com/p/cefpython/
include "compile_time_constants.pxi"
from cef_types_linux cimport _cef_key_info_t
from cef_types_wrappers cimport CefStructBase
from libcpp cimport bool as cpp_bool
cdef extern from "include/internal/cef_linux.h":
ctypedef _cef_key_info_t CefKeyInfo
ctypedef void* CefWindowHandle
ctypedef void* CefCursorHandle
cdef cppclass CefWindowInfo:
void SetAsChild(CefWindowHandle)
void SetTransparentPainting(cpp_bool)
void SetAsOffScreen(CefWindowHandle)
IF CEF_VERSION == 3:
cdef cppclass CefMainArgs(CefStructBase):
CefMainArgs()
CefMainArgs(int argc_arg, char** argv_arg)