2024-01-05 19:03:36 +01:00
|
|
|
// Copyright (c) 2024 The Chromium Embedded Framework Authors. All rights
|
2016-01-19 21:09:01 +01:00
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
//
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// This file was generated by the CEF translator tool. If making changes by
|
|
|
|
// hand only do so within the body of existing method and function
|
|
|
|
// implementations. See the translator.README.txt file in the tools directory
|
|
|
|
// for more information.
|
|
|
|
//
|
2024-04-17 18:01:26 +02:00
|
|
|
// $hash=da609d625660ca617e1a01d5dc359932142e15a3$
|
2017-05-17 11:29:28 +02:00
|
|
|
//
|
2016-01-19 21:09:01 +01:00
|
|
|
|
2017-05-19 11:06:00 +02:00
|
|
|
#include "libcef_dll/ctocpp/views/window_delegate_ctocpp.h"
|
2024-04-30 17:45:07 +02:00
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
#include "libcef_dll/cpptoc/views/view_cpptoc.h"
|
|
|
|
#include "libcef_dll/cpptoc/views/window_cpptoc.h"
|
2019-01-23 16:42:12 +01:00
|
|
|
#include "libcef_dll/shutdown_checker.h"
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// VIRTUAL METHODS - Body may be edited by hand.
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2016-01-19 21:09:01 +01:00
|
|
|
void CefWindowDelegateCToCpp::OnWindowCreated(CefRefPtr<CefWindow> window) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_window_created)) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!window.get()) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
_struct->on_window_created(_struct, CefWindowCppToC::Wrap(window));
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
2022-10-28 20:17:18 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
|
|
|
void CefWindowDelegateCToCpp::OnWindowClosing(CefRefPtr<CefWindow> window) {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_window_closing)) {
|
2022-10-28 20:17:18 +02:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2022-10-28 20:17:18 +02:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!window.get()) {
|
2022-10-28 20:17:18 +02:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2022-10-28 20:17:18 +02:00
|
|
|
|
|
|
|
// Execute
|
|
|
|
_struct->on_window_closing(_struct, CefWindowCppToC::Wrap(window));
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2016-01-19 21:09:01 +01:00
|
|
|
void CefWindowDelegateCToCpp::OnWindowDestroyed(CefRefPtr<CefWindow> window) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_window_destroyed)) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!window.get()) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
_struct->on_window_destroyed(_struct, CefWindowCppToC::Wrap(window));
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
2022-04-12 21:46:09 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
|
|
|
void CefWindowDelegateCToCpp::OnWindowActivationChanged(
|
|
|
|
CefRefPtr<CefWindow> window,
|
|
|
|
bool active) {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_window_activation_changed)) {
|
2022-04-12 21:46:09 +02:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2022-04-12 21:46:09 +02:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!window.get()) {
|
2022-04-12 21:46:09 +02:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2022-04-12 21:46:09 +02:00
|
|
|
|
|
|
|
// Execute
|
|
|
|
_struct->on_window_activation_changed(_struct, CefWindowCppToC::Wrap(window),
|
|
|
|
active);
|
|
|
|
}
|
|
|
|
|
2022-10-28 20:17:18 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
|
|
|
void CefWindowDelegateCToCpp::OnWindowBoundsChanged(CefRefPtr<CefWindow> window,
|
|
|
|
const CefRect& new_bounds) {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_window_bounds_changed)) {
|
2022-10-28 20:17:18 +02:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2022-10-28 20:17:18 +02:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!window.get()) {
|
2022-10-28 20:17:18 +02:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2022-10-28 20:17:18 +02:00
|
|
|
|
|
|
|
// Execute
|
|
|
|
_struct->on_window_bounds_changed(_struct, CefWindowCppToC::Wrap(window),
|
|
|
|
&new_bounds);
|
|
|
|
}
|
|
|
|
|
2023-09-25 21:40:17 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
|
|
|
void CefWindowDelegateCToCpp::OnWindowFullscreenTransition(
|
|
|
|
CefRefPtr<CefWindow> window,
|
|
|
|
bool is_completed) {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_window_fullscreen_transition)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
|
|
|
if (!window.get()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
_struct->on_window_fullscreen_transition(
|
|
|
|
_struct, CefWindowCppToC::Wrap(window), is_completed);
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2017-08-04 00:55:19 +02:00
|
|
|
CefRefPtr<CefWindow> CefWindowDelegateCToCpp::GetParentWindow(
|
|
|
|
CefRefPtr<CefWindow> window,
|
|
|
|
bool* is_menu,
|
|
|
|
bool* can_activate_menu) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2017-08-04 00:55:19 +02:00
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, get_parent_window)) {
|
2020-01-15 14:53:19 +01:00
|
|
|
return nullptr;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2017-08-04 00:55:19 +02:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!window.get()) {
|
2020-01-15 14:53:19 +01:00
|
|
|
return nullptr;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2017-08-04 00:55:19 +02:00
|
|
|
// Verify param: is_menu; type: bool_byaddr
|
|
|
|
DCHECK(is_menu);
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!is_menu) {
|
2020-01-15 14:53:19 +01:00
|
|
|
return nullptr;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2017-08-04 00:55:19 +02:00
|
|
|
// Verify param: can_activate_menu; type: bool_byaddr
|
|
|
|
DCHECK(can_activate_menu);
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!can_activate_menu) {
|
2020-01-15 14:53:19 +01:00
|
|
|
return nullptr;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2017-08-04 00:55:19 +02:00
|
|
|
|
|
|
|
// Translate param: is_menu; type: bool_byaddr
|
|
|
|
int is_menuInt = is_menu ? *is_menu : 0;
|
|
|
|
// Translate param: can_activate_menu; type: bool_byaddr
|
|
|
|
int can_activate_menuInt = can_activate_menu ? *can_activate_menu : 0;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
cef_window_t* _retval =
|
|
|
|
_struct->get_parent_window(_struct, CefWindowCppToC::Wrap(window),
|
|
|
|
&is_menuInt, &can_activate_menuInt);
|
|
|
|
|
|
|
|
// Restore param:is_menu; type: bool_byaddr
|
2023-01-02 23:47:15 +01:00
|
|
|
if (is_menu) {
|
2017-08-04 00:55:19 +02:00
|
|
|
*is_menu = is_menuInt ? true : false;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2017-08-04 00:55:19 +02:00
|
|
|
// Restore param:can_activate_menu; type: bool_byaddr
|
2023-01-02 23:47:15 +01:00
|
|
|
if (can_activate_menu) {
|
2017-08-04 00:55:19 +02:00
|
|
|
*can_activate_menu = can_activate_menuInt ? true : false;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2017-08-04 00:55:19 +02:00
|
|
|
|
|
|
|
// Return type: refptr_diff
|
|
|
|
return CefWindowCppToC::Unwrap(_retval);
|
|
|
|
}
|
|
|
|
|
2023-06-14 10:20:02 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
|
|
|
bool CefWindowDelegateCToCpp::IsWindowModalDialog(CefRefPtr<CefWindow> window) {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, is_window_modal_dialog)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
|
|
|
if (!window.get()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
int _retval =
|
|
|
|
_struct->is_window_modal_dialog(_struct, CefWindowCppToC::Wrap(window));
|
|
|
|
|
|
|
|
// Return type: bool
|
|
|
|
return _retval ? true : false;
|
|
|
|
}
|
|
|
|
|
2020-09-02 20:25:25 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
|
|
|
CefRect CefWindowDelegateCToCpp::GetInitialBounds(CefRefPtr<CefWindow> window) {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, get_initial_bounds)) {
|
2020-09-02 20:25:25 +02:00
|
|
|
return CefRect();
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2020-09-02 20:25:25 +02:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!window.get()) {
|
2020-09-02 20:25:25 +02:00
|
|
|
return CefRect();
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2020-09-02 20:25:25 +02:00
|
|
|
|
|
|
|
// Execute
|
|
|
|
cef_rect_t _retval =
|
|
|
|
_struct->get_initial_bounds(_struct, CefWindowCppToC::Wrap(window));
|
|
|
|
|
|
|
|
// Return type: simple
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
2021-09-07 16:04:55 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
|
|
|
cef_show_state_t CefWindowDelegateCToCpp::GetInitialShowState(
|
|
|
|
CefRefPtr<CefWindow> window) {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, get_initial_show_state)) {
|
2021-09-07 16:04:55 +02:00
|
|
|
return CEF_SHOW_STATE_NORMAL;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2021-09-07 16:04:55 +02:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!window.get()) {
|
2021-09-07 16:04:55 +02:00
|
|
|
return CEF_SHOW_STATE_NORMAL;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2021-09-07 16:04:55 +02:00
|
|
|
|
|
|
|
// Execute
|
|
|
|
cef_show_state_t _retval =
|
|
|
|
_struct->get_initial_show_state(_struct, CefWindowCppToC::Wrap(window));
|
|
|
|
|
|
|
|
// Return type: simple
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2016-01-19 21:09:01 +01:00
|
|
|
bool CefWindowDelegateCToCpp::IsFrameless(CefRefPtr<CefWindow> window) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, is_frameless)) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return false;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!window.get()) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return false;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
int _retval = _struct->is_frameless(_struct, CefWindowCppToC::Wrap(window));
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Return type: bool
|
2017-05-17 11:29:28 +02:00
|
|
|
return _retval ? true : false;
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2023-02-28 19:34:12 +01:00
|
|
|
bool CefWindowDelegateCToCpp::WithStandardWindowButtons(
|
|
|
|
CefRefPtr<CefWindow> window) {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, with_standard_window_buttons)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
|
|
|
if (!window.get()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
int _retval = _struct->with_standard_window_buttons(
|
|
|
|
_struct, CefWindowCppToC::Wrap(window));
|
|
|
|
|
|
|
|
// Return type: bool
|
|
|
|
return _retval ? true : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
NO_SANITIZE("cfi-icall")
|
|
|
|
bool CefWindowDelegateCToCpp::GetTitlebarHeight(CefRefPtr<CefWindow> window,
|
|
|
|
float* titlebar_height) {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, get_titlebar_height)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
|
|
|
if (!window.get()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// Verify param: titlebar_height; type: simple_byaddr
|
|
|
|
DCHECK(titlebar_height);
|
|
|
|
if (!titlebar_height) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
int _retval = _struct->get_titlebar_height(
|
|
|
|
_struct, CefWindowCppToC::Wrap(window), titlebar_height);
|
|
|
|
|
|
|
|
// Return type: bool
|
|
|
|
return _retval ? true : false;
|
|
|
|
}
|
|
|
|
|
2024-04-12 17:49:31 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
|
|
|
cef_state_t CefWindowDelegateCToCpp::AcceptsFirstMouse(
|
|
|
|
CefRefPtr<CefWindow> window) {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, accepts_first_mouse)) {
|
|
|
|
return STATE_DEFAULT;
|
|
|
|
}
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
|
|
|
if (!window.get()) {
|
|
|
|
return STATE_DEFAULT;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
cef_state_t _retval =
|
|
|
|
_struct->accepts_first_mouse(_struct, CefWindowCppToC::Wrap(window));
|
|
|
|
|
|
|
|
// Return type: simple
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
2023-02-28 19:34:12 +01:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2016-01-19 21:09:01 +01:00
|
|
|
bool CefWindowDelegateCToCpp::CanResize(CefRefPtr<CefWindow> window) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, can_resize)) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return false;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!window.get()) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return false;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
int _retval = _struct->can_resize(_struct, CefWindowCppToC::Wrap(window));
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Return type: bool
|
2017-05-17 11:29:28 +02:00
|
|
|
return _retval ? true : false;
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2016-01-19 21:09:01 +01:00
|
|
|
bool CefWindowDelegateCToCpp::CanMaximize(CefRefPtr<CefWindow> window) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, can_maximize)) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return false;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!window.get()) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return false;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
int _retval = _struct->can_maximize(_struct, CefWindowCppToC::Wrap(window));
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Return type: bool
|
2017-05-17 11:29:28 +02:00
|
|
|
return _retval ? true : false;
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2016-01-19 21:09:01 +01:00
|
|
|
bool CefWindowDelegateCToCpp::CanMinimize(CefRefPtr<CefWindow> window) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, can_minimize)) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return false;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!window.get()) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return false;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
int _retval = _struct->can_minimize(_struct, CefWindowCppToC::Wrap(window));
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Return type: bool
|
2017-05-17 11:29:28 +02:00
|
|
|
return _retval ? true : false;
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2016-01-19 21:09:01 +01:00
|
|
|
bool CefWindowDelegateCToCpp::CanClose(CefRefPtr<CefWindow> window) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, can_close)) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return false;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!window.get()) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return false;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
int _retval = _struct->can_close(_struct, CefWindowCppToC::Wrap(window));
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Return type: bool
|
2017-05-17 11:29:28 +02:00
|
|
|
return _retval ? true : false;
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2017-02-17 00:19:43 +01:00
|
|
|
bool CefWindowDelegateCToCpp::OnAccelerator(CefRefPtr<CefWindow> window,
|
2017-05-17 11:29:28 +02:00
|
|
|
int command_id) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2017-02-17 00:19:43 +01:00
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_accelerator)) {
|
2017-02-17 00:19:43 +01:00
|
|
|
return false;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2017-02-17 00:19:43 +01:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!window.get()) {
|
2017-02-17 00:19:43 +01:00
|
|
|
return false;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2017-02-17 00:19:43 +01:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
int _retval = _struct->on_accelerator(_struct, CefWindowCppToC::Wrap(window),
|
|
|
|
command_id);
|
2017-02-17 00:19:43 +01:00
|
|
|
|
|
|
|
// Return type: bool
|
2017-05-17 11:29:28 +02:00
|
|
|
return _retval ? true : false;
|
2017-02-17 00:19:43 +01:00
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2017-02-17 00:19:43 +01:00
|
|
|
bool CefWindowDelegateCToCpp::OnKeyEvent(CefRefPtr<CefWindow> window,
|
2017-05-17 11:29:28 +02:00
|
|
|
const CefKeyEvent& event) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2017-02-17 00:19:43 +01:00
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_key_event)) {
|
2017-02-17 00:19:43 +01:00
|
|
|
return false;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2017-02-17 00:19:43 +01:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!window.get()) {
|
2017-02-17 00:19:43 +01:00
|
|
|
return false;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2017-02-17 00:19:43 +01:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
int _retval =
|
|
|
|
_struct->on_key_event(_struct, CefWindowCppToC::Wrap(window), &event);
|
2017-02-17 00:19:43 +01:00
|
|
|
|
|
|
|
// Return type: bool
|
2017-05-17 11:29:28 +02:00
|
|
|
return _retval ? true : false;
|
2017-02-17 00:19:43 +01:00
|
|
|
}
|
|
|
|
|
2024-03-29 17:48:33 +01:00
|
|
|
NO_SANITIZE("cfi-icall")
|
|
|
|
void CefWindowDelegateCToCpp::OnThemeColorsChanged(CefRefPtr<CefWindow> window,
|
|
|
|
bool chrome_theme) {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_theme_colors_changed)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: window; type: refptr_diff
|
|
|
|
DCHECK(window.get());
|
|
|
|
if (!window.get()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
_struct->on_theme_colors_changed(_struct, CefWindowCppToC::Wrap(window),
|
|
|
|
chrome_theme);
|
|
|
|
}
|
|
|
|
|
2024-04-17 18:01:26 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
|
|
|
cef_runtime_style_t CefWindowDelegateCToCpp::GetWindowRuntimeStyle() {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
|
|
|
cef_window_delegate_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, get_window_runtime_style)) {
|
|
|
|
return CEF_RUNTIME_STYLE_DEFAULT;
|
|
|
|
}
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
cef_runtime_style_t _retval = _struct->get_window_runtime_style(_struct);
|
|
|
|
|
|
|
|
// Return type: simple
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2016-01-19 21:09:01 +01:00
|
|
|
CefSize CefWindowDelegateCToCpp::GetPreferredSize(CefRefPtr<CefView> view) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_view_delegate_t* _struct =
|
|
|
|
reinterpret_cast<cef_view_delegate_t*>(GetStruct());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, get_preferred_size)) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return CefSize();
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: view; type: refptr_diff
|
|
|
|
DCHECK(view.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!view.get()) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return CefSize();
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_size_t _retval =
|
|
|
|
_struct->get_preferred_size(_struct, CefViewCppToC::Wrap(view));
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Return type: simple
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2016-01-19 21:09:01 +01:00
|
|
|
CefSize CefWindowDelegateCToCpp::GetMinimumSize(CefRefPtr<CefView> view) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_view_delegate_t* _struct =
|
|
|
|
reinterpret_cast<cef_view_delegate_t*>(GetStruct());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, get_minimum_size)) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return CefSize();
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: view; type: refptr_diff
|
|
|
|
DCHECK(view.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!view.get()) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return CefSize();
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_size_t _retval =
|
|
|
|
_struct->get_minimum_size(_struct, CefViewCppToC::Wrap(view));
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Return type: simple
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2016-01-19 21:09:01 +01:00
|
|
|
CefSize CefWindowDelegateCToCpp::GetMaximumSize(CefRefPtr<CefView> view) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_view_delegate_t* _struct =
|
|
|
|
reinterpret_cast<cef_view_delegate_t*>(GetStruct());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, get_maximum_size)) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return CefSize();
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: view; type: refptr_diff
|
|
|
|
DCHECK(view.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!view.get()) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return CefSize();
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_size_t _retval =
|
|
|
|
_struct->get_maximum_size(_struct, CefViewCppToC::Wrap(view));
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Return type: simple
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2016-01-19 21:09:01 +01:00
|
|
|
int CefWindowDelegateCToCpp::GetHeightForWidth(CefRefPtr<CefView> view,
|
2017-05-17 11:29:28 +02:00
|
|
|
int width) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_view_delegate_t* _struct =
|
|
|
|
reinterpret_cast<cef_view_delegate_t*>(GetStruct());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, get_height_for_width)) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return 0;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: view; type: refptr_diff
|
|
|
|
DCHECK(view.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!view.get()) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return 0;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
int _retval =
|
|
|
|
_struct->get_height_for_width(_struct, CefViewCppToC::Wrap(view), width);
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Return type: simple
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2016-01-19 21:09:01 +01:00
|
|
|
void CefWindowDelegateCToCpp::OnParentViewChanged(CefRefPtr<CefView> view,
|
2017-05-17 11:29:28 +02:00
|
|
|
bool added,
|
|
|
|
CefRefPtr<CefView> parent) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_view_delegate_t* _struct =
|
|
|
|
reinterpret_cast<cef_view_delegate_t*>(GetStruct());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_parent_view_changed)) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: view; type: refptr_diff
|
|
|
|
DCHECK(view.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!view.get()) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
// Verify param: parent; type: refptr_diff
|
|
|
|
DCHECK(parent.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!parent.get()) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
_struct->on_parent_view_changed(_struct, CefViewCppToC::Wrap(view), added,
|
|
|
|
CefViewCppToC::Wrap(parent));
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2016-01-19 21:09:01 +01:00
|
|
|
void CefWindowDelegateCToCpp::OnChildViewChanged(CefRefPtr<CefView> view,
|
2017-05-17 11:29:28 +02:00
|
|
|
bool added,
|
|
|
|
CefRefPtr<CefView> child) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_view_delegate_t* _struct =
|
|
|
|
reinterpret_cast<cef_view_delegate_t*>(GetStruct());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_child_view_changed)) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: view; type: refptr_diff
|
|
|
|
DCHECK(view.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!view.get()) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
// Verify param: child; type: refptr_diff
|
|
|
|
DCHECK(child.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!child.get()) {
|
2016-01-19 21:09:01 +01:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
_struct->on_child_view_changed(_struct, CefViewCppToC::Wrap(view), added,
|
|
|
|
CefViewCppToC::Wrap(child));
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
2021-04-11 22:10:11 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
|
|
|
void CefWindowDelegateCToCpp::OnWindowChanged(CefRefPtr<CefView> view,
|
|
|
|
bool added) {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
|
|
|
cef_view_delegate_t* _struct =
|
|
|
|
reinterpret_cast<cef_view_delegate_t*>(GetStruct());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_window_changed)) {
|
2021-04-11 22:10:11 +02:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2021-04-11 22:10:11 +02:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: view; type: refptr_diff
|
|
|
|
DCHECK(view.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!view.get()) {
|
2021-04-11 22:10:11 +02:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2021-04-11 22:10:11 +02:00
|
|
|
|
|
|
|
// Execute
|
|
|
|
_struct->on_window_changed(_struct, CefViewCppToC::Wrap(view), added);
|
|
|
|
}
|
|
|
|
|
2021-08-28 03:55:15 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
|
|
|
void CefWindowDelegateCToCpp::OnLayoutChanged(CefRefPtr<CefView> view,
|
|
|
|
const CefRect& new_bounds) {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
|
|
|
cef_view_delegate_t* _struct =
|
|
|
|
reinterpret_cast<cef_view_delegate_t*>(GetStruct());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_layout_changed)) {
|
2021-08-28 03:55:15 +02:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2021-08-28 03:55:15 +02:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: view; type: refptr_diff
|
|
|
|
DCHECK(view.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!view.get()) {
|
2021-08-28 03:55:15 +02:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2021-08-28 03:55:15 +02:00
|
|
|
|
|
|
|
// Execute
|
|
|
|
_struct->on_layout_changed(_struct, CefViewCppToC::Wrap(view), &new_bounds);
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2017-02-18 03:08:51 +01:00
|
|
|
void CefWindowDelegateCToCpp::OnFocus(CefRefPtr<CefView> view) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_view_delegate_t* _struct =
|
|
|
|
reinterpret_cast<cef_view_delegate_t*>(GetStruct());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_focus)) {
|
2017-02-18 03:08:51 +01:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2017-02-18 03:08:51 +01:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: view; type: refptr_diff
|
|
|
|
DCHECK(view.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!view.get()) {
|
2017-02-18 03:08:51 +01:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2017-02-18 03:08:51 +01:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
_struct->on_focus(_struct, CefViewCppToC::Wrap(view));
|
2017-02-18 03:08:51 +01:00
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2017-02-18 03:08:51 +01:00
|
|
|
void CefWindowDelegateCToCpp::OnBlur(CefRefPtr<CefView> view) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_view_delegate_t* _struct =
|
|
|
|
reinterpret_cast<cef_view_delegate_t*>(GetStruct());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_blur)) {
|
2017-02-18 03:08:51 +01:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2017-02-18 03:08:51 +01:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: view; type: refptr_diff
|
|
|
|
DCHECK(view.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!view.get()) {
|
2017-02-18 03:08:51 +01:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2017-02-18 03:08:51 +01:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
_struct->on_blur(_struct, CefViewCppToC::Wrap(view));
|
2017-02-18 03:08:51 +01:00
|
|
|
}
|
|
|
|
|
2024-03-23 00:51:00 +01:00
|
|
|
NO_SANITIZE("cfi-icall")
|
|
|
|
void CefWindowDelegateCToCpp::OnThemeChanged(CefRefPtr<CefView> view) {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
|
|
|
cef_view_delegate_t* _struct =
|
|
|
|
reinterpret_cast<cef_view_delegate_t*>(GetStruct());
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_theme_changed)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: view; type: refptr_diff
|
|
|
|
DCHECK(view.get());
|
|
|
|
if (!view.get()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
_struct->on_theme_changed(_struct, CefViewCppToC::Wrap(view));
|
|
|
|
}
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
CefWindowDelegateCToCpp::CefWindowDelegateCToCpp() {}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
2019-01-23 16:42:12 +01:00
|
|
|
// DESTRUCTOR - Do not edit by hand.
|
|
|
|
|
|
|
|
CefWindowDelegateCToCpp::~CefWindowDelegateCToCpp() {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
cef_window_delegate_t* CefCToCppRefCounted<
|
|
|
|
CefWindowDelegateCToCpp,
|
|
|
|
CefWindowDelegate,
|
|
|
|
cef_window_delegate_t>::UnwrapDerived(CefWrapperType type,
|
|
|
|
CefWindowDelegate* c) {
|
2023-05-08 17:15:02 +02:00
|
|
|
DCHECK(false) << "Unexpected class type: " << type;
|
2020-01-15 14:53:19 +01:00
|
|
|
return nullptr;
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefWrapperType CefCToCppRefCounted<CefWindowDelegateCToCpp,
|
|
|
|
CefWindowDelegate,
|
|
|
|
cef_window_delegate_t>::kWrapperType =
|
2017-02-09 23:07:43 +01:00
|
|
|
WT_WINDOW_DELEGATE;
|