Re: How to create a borderless popup window correctly
Posted: Mon Mar 05, 2018 10:12 am
TCefWindowInfo is known as cef_window_info_t in CEF3 and it's declared here : https://github.com/chromiumembedded/cef ... ypes_win.h
Some parameters are the standard parameters required by CreateWindowEx() like ex_style, window_name, style, x, y, width, height, parent_window and menu.
Those parameters are initialized using a CefWindowInfo class declared here :
https://github.com/chromiumembedded/cef ... /cef_win.h
CefWindowInfo uses these functions :
Some parameters are the standard parameters required by CreateWindowEx() like ex_style, window_name, style, x, y, width, height, parent_window and menu.
Those parameters are initialized using a CefWindowInfo class declared here :
https://github.com/chromiumembedded/cef ... /cef_win.h
CefWindowInfo uses these functions :
- SetAsChild : known as WindowInfoAsChild in CEF4Delphi.
- SetAsPopup : known as WindowInfoAsPopUp in CEF4Delphi.
- SetAsWindowless : knwon as WindowInfoAsWindowless in CEF4Delphi.