Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
75 lines (51 loc) · 2.07 KB

File metadata and controls

75 lines (51 loc) · 2.07 KB
Copy raw file
Download raw file
Outline
Edit and raw actions

API categories | API index

WindowInfo (class)

This class is passed to functions eg. cefpython.CreateBrowserSync(), LifespanHandler.OnBeforePopup().

To instantiate this class call: cefpython.WindowInfo().

Table of contents:

Methods

SetAsChild

Parameter Type
parentWindowHandle int
windowRect (optional) list
Return void

Create the browser as a child window/view.

windowRect example value: [left, top, right, bottom].

SetAsPopup

Parameter Type
parentWindowHandle int
windowName string
Return void

Available only on Windows.

SetAsOffscreen

Parameter Type
parentWindowHandle int
Return void

Description from upstream CEF:

Create the browser using windowless (off-screen) rendering. No window will be created for the browser and all rendering will occur via the CefRenderHandler interface. The |parent| value will be used to identify monitor info and to act as the parent window for dialogs, context menus, etc. If |parent| is not provided then the main screen monitor will be used and some functionality that requires a parent window may not function correctly. In order to create windowless browsers the CefSettings.windowless_rendering_enabled value must be set to true. Transparent painting is enabled by default but can be disabled by setting CefBrowserSettings.background_color to an opaque value.

Call this method to disable windowed rendering and to use RenderHandler. See the pysdl2, screenshot, panda3d and kivy examples.

In order to create windowless browsers the ApplicationSettings.windowless_rendering_enabled value must be set to true.

You can pass 0 as parentWindowHandle, but then some things like context menus and plugins may not display correctly.

Morty Proxy This is a proxified and sanitized view of the page, visit original site.