MCPcopy Create free account
hub / github.com/cztomczak/cefpython / SetAsChild

Method SetAsChild

src/include/internal/cef_win.h:109–117  ·  view source on GitHub ↗

Create the browser as a child window.

Source from the content-addressed store, hash-verified

107 // Create the browser as a child window.
108 ///
109 void SetAsChild(CefWindowHandle parent, RECT windowRect) {
110 style =
111 WS_CHILD | WS_CLIPCHILDREN | WS_CLIPSIBLINGS | WS_TABSTOP | WS_VISIBLE;
112 parent_window = parent;
113 x = windowRect.left;
114 y = windowRect.top;
115 width = windowRect.right - windowRect.left;
116 height = windowRect.bottom - windowRect.top;
117 }
118
119 ///
120 // Create the browser as a popup window.

Callers 8

__init__Method · 0.45
embed_browserMethod · 0.45
mainFunction · 0.45
embed_browserMethod · 0.45
embedBrowserMethod · 0.45
embed_browserMethod · 0.45
embed_browserMethod · 0.45
mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected