Overview   Project   Class   Tree   Index 
CEF3 C++ API Docs - Version 80.1.4+g8927396+chromium-80.0.3987.149
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

(default)
Struct _cef_window_info_t

   in cef_types_win.h

struct _cef_window_info_t

Structure representing window information.


Field Summary
 DWORD ex_style
          
 int external_begin_frame_enabled
          Set to true (1) to enable the ability to issue BeginFrame requests from the client application by calling CefBrowserHost::SendExternalBeginFrame.
 int height
          
 HMENU menu
          
 HWND parent_window
          
 int shared_texture_enabled
          Set to true (1) to enable shared textures for windowless rendering.
 DWORD style
          
 int width
          
 HWND window
          Handle for the new browser window.
 cef_string_t window_name
          
 int windowless_rendering_enabled
          Set to true (1) to create the browser using windowless (off-screen) rendering.
 int x
          
 int y
          
 

Field Detail

ex_style

public DWORD ex_style;

external_begin_frame_enabled

public int external_begin_frame_enabled;
Set to true (1) to enable the ability to issue BeginFrame requests from the client application by calling CefBrowserHost::SendExternalBeginFrame.

height

public int height;

menu

public HMENU menu;

parent_window

public HWND parent_window;

shared_texture_enabled

public int shared_texture_enabled;
Set to true (1) to enable shared textures for windowless rendering. Only valid if windowless_rendering_enabled above is also set to true. Currently only supported on Windows (D3D11).

style

public DWORD style;

width

public int width;

window

public HWND window;
Handle for the new browser window. Only used with windowed rendering.

window_name

public cef_string_t window_name;

windowless_rendering_enabled

public int windowless_rendering_enabled;
Set to true (1) to 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_window| value will be used to identify monitor info and to act as the parent window for dialogs, context menus, etc. If |parent_window| 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.

x

public int x;

y

public int y;

 Overview   Project   Class   Tree   Index 
CEF3 C++ API Docs - Version 80.1.4+g8927396+chromium-80.0.3987.149
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

Chromium Embedded Framework (CEF) Copyright © 2016 Marshall A. Greenblatt