mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-12 01:26:03 +01:00
9cff99dc4e
- Add CefRequestContext::LoadExtension, CefExtension, CefExtensionHandler and related methods/interfaces. - Add chrome://extensions-support that lists supported Chrome APIs. - Add CefBrowserHost::SetAutoResizeEnabled and CefDisplayHandler::OnAutoResize to support browser resize based on preferred web contents size. - views: Add support for custom CefMenuButton popups. - cefclient: Run with `--load-extension=set_page_color` command-line flag for an extension loading example. Add `--use-views` on Windows and Linux for an even better example.
278 lines
8.3 KiB
C++
278 lines
8.3 KiB
C++
// Copyright (c) 2017 The Chromium Embedded Framework Authors. All rights
|
|
// 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.
|
|
//
|
|
// $hash=81cf9c1f1aff3557bd27f8751d2df517f2f73249$
|
|
//
|
|
|
|
#include "libcef_dll/ctocpp/views/menu_button_delegate_ctocpp.h"
|
|
#include "libcef_dll/cpptoc/views/button_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/views/menu_button_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/views/menu_button_pressed_lock_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/views/view_cpptoc.h"
|
|
|
|
// VIRTUAL METHODS - Body may be edited by hand.
|
|
|
|
void CefMenuButtonDelegateCToCpp::OnMenuButtonPressed(
|
|
CefRefPtr<CefMenuButton> menu_button,
|
|
const CefPoint& screen_point,
|
|
CefRefPtr<CefMenuButtonPressedLock> button_pressed_lock) {
|
|
cef_menu_button_delegate_t* _struct = GetStruct();
|
|
if (CEF_MEMBER_MISSING(_struct, on_menu_button_pressed))
|
|
return;
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
// Verify param: menu_button; type: refptr_diff
|
|
DCHECK(menu_button.get());
|
|
if (!menu_button.get())
|
|
return;
|
|
// Verify param: button_pressed_lock; type: refptr_diff
|
|
DCHECK(button_pressed_lock.get());
|
|
if (!button_pressed_lock.get())
|
|
return;
|
|
|
|
// Execute
|
|
_struct->on_menu_button_pressed(
|
|
_struct, CefMenuButtonCppToC::Wrap(menu_button), &screen_point,
|
|
CefMenuButtonPressedLockCppToC::Wrap(button_pressed_lock));
|
|
}
|
|
|
|
void CefMenuButtonDelegateCToCpp::OnButtonPressed(CefRefPtr<CefButton> button) {
|
|
cef_button_delegate_t* _struct =
|
|
reinterpret_cast<cef_button_delegate_t*>(GetStruct());
|
|
if (CEF_MEMBER_MISSING(_struct, on_button_pressed))
|
|
return;
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
// Verify param: button; type: refptr_diff
|
|
DCHECK(button.get());
|
|
if (!button.get())
|
|
return;
|
|
|
|
// Execute
|
|
_struct->on_button_pressed(_struct, CefButtonCppToC::Wrap(button));
|
|
}
|
|
|
|
void CefMenuButtonDelegateCToCpp::OnButtonStateChanged(
|
|
CefRefPtr<CefButton> button) {
|
|
cef_button_delegate_t* _struct =
|
|
reinterpret_cast<cef_button_delegate_t*>(GetStruct());
|
|
if (CEF_MEMBER_MISSING(_struct, on_button_state_changed))
|
|
return;
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
// Verify param: button; type: refptr_diff
|
|
DCHECK(button.get());
|
|
if (!button.get())
|
|
return;
|
|
|
|
// Execute
|
|
_struct->on_button_state_changed(_struct, CefButtonCppToC::Wrap(button));
|
|
}
|
|
|
|
CefSize CefMenuButtonDelegateCToCpp::GetPreferredSize(CefRefPtr<CefView> view) {
|
|
cef_view_delegate_t* _struct =
|
|
reinterpret_cast<cef_view_delegate_t*>(GetStruct());
|
|
if (CEF_MEMBER_MISSING(_struct, get_preferred_size))
|
|
return CefSize();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
// Verify param: view; type: refptr_diff
|
|
DCHECK(view.get());
|
|
if (!view.get())
|
|
return CefSize();
|
|
|
|
// Execute
|
|
cef_size_t _retval =
|
|
_struct->get_preferred_size(_struct, CefViewCppToC::Wrap(view));
|
|
|
|
// Return type: simple
|
|
return _retval;
|
|
}
|
|
|
|
CefSize CefMenuButtonDelegateCToCpp::GetMinimumSize(CefRefPtr<CefView> view) {
|
|
cef_view_delegate_t* _struct =
|
|
reinterpret_cast<cef_view_delegate_t*>(GetStruct());
|
|
if (CEF_MEMBER_MISSING(_struct, get_minimum_size))
|
|
return CefSize();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
// Verify param: view; type: refptr_diff
|
|
DCHECK(view.get());
|
|
if (!view.get())
|
|
return CefSize();
|
|
|
|
// Execute
|
|
cef_size_t _retval =
|
|
_struct->get_minimum_size(_struct, CefViewCppToC::Wrap(view));
|
|
|
|
// Return type: simple
|
|
return _retval;
|
|
}
|
|
|
|
CefSize CefMenuButtonDelegateCToCpp::GetMaximumSize(CefRefPtr<CefView> view) {
|
|
cef_view_delegate_t* _struct =
|
|
reinterpret_cast<cef_view_delegate_t*>(GetStruct());
|
|
if (CEF_MEMBER_MISSING(_struct, get_maximum_size))
|
|
return CefSize();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
// Verify param: view; type: refptr_diff
|
|
DCHECK(view.get());
|
|
if (!view.get())
|
|
return CefSize();
|
|
|
|
// Execute
|
|
cef_size_t _retval =
|
|
_struct->get_maximum_size(_struct, CefViewCppToC::Wrap(view));
|
|
|
|
// Return type: simple
|
|
return _retval;
|
|
}
|
|
|
|
int CefMenuButtonDelegateCToCpp::GetHeightForWidth(CefRefPtr<CefView> view,
|
|
int width) {
|
|
cef_view_delegate_t* _struct =
|
|
reinterpret_cast<cef_view_delegate_t*>(GetStruct());
|
|
if (CEF_MEMBER_MISSING(_struct, get_height_for_width))
|
|
return 0;
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
// Verify param: view; type: refptr_diff
|
|
DCHECK(view.get());
|
|
if (!view.get())
|
|
return 0;
|
|
|
|
// Execute
|
|
int _retval =
|
|
_struct->get_height_for_width(_struct, CefViewCppToC::Wrap(view), width);
|
|
|
|
// Return type: simple
|
|
return _retval;
|
|
}
|
|
|
|
void CefMenuButtonDelegateCToCpp::OnParentViewChanged(
|
|
CefRefPtr<CefView> view,
|
|
bool added,
|
|
CefRefPtr<CefView> parent) {
|
|
cef_view_delegate_t* _struct =
|
|
reinterpret_cast<cef_view_delegate_t*>(GetStruct());
|
|
if (CEF_MEMBER_MISSING(_struct, on_parent_view_changed))
|
|
return;
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
// Verify param: view; type: refptr_diff
|
|
DCHECK(view.get());
|
|
if (!view.get())
|
|
return;
|
|
// Verify param: parent; type: refptr_diff
|
|
DCHECK(parent.get());
|
|
if (!parent.get())
|
|
return;
|
|
|
|
// Execute
|
|
_struct->on_parent_view_changed(_struct, CefViewCppToC::Wrap(view), added,
|
|
CefViewCppToC::Wrap(parent));
|
|
}
|
|
|
|
void CefMenuButtonDelegateCToCpp::OnChildViewChanged(CefRefPtr<CefView> view,
|
|
bool added,
|
|
CefRefPtr<CefView> child) {
|
|
cef_view_delegate_t* _struct =
|
|
reinterpret_cast<cef_view_delegate_t*>(GetStruct());
|
|
if (CEF_MEMBER_MISSING(_struct, on_child_view_changed))
|
|
return;
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
// Verify param: view; type: refptr_diff
|
|
DCHECK(view.get());
|
|
if (!view.get())
|
|
return;
|
|
// Verify param: child; type: refptr_diff
|
|
DCHECK(child.get());
|
|
if (!child.get())
|
|
return;
|
|
|
|
// Execute
|
|
_struct->on_child_view_changed(_struct, CefViewCppToC::Wrap(view), added,
|
|
CefViewCppToC::Wrap(child));
|
|
}
|
|
|
|
void CefMenuButtonDelegateCToCpp::OnFocus(CefRefPtr<CefView> view) {
|
|
cef_view_delegate_t* _struct =
|
|
reinterpret_cast<cef_view_delegate_t*>(GetStruct());
|
|
if (CEF_MEMBER_MISSING(_struct, on_focus))
|
|
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_focus(_struct, CefViewCppToC::Wrap(view));
|
|
}
|
|
|
|
void CefMenuButtonDelegateCToCpp::OnBlur(CefRefPtr<CefView> view) {
|
|
cef_view_delegate_t* _struct =
|
|
reinterpret_cast<cef_view_delegate_t*>(GetStruct());
|
|
if (CEF_MEMBER_MISSING(_struct, on_blur))
|
|
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_blur(_struct, CefViewCppToC::Wrap(view));
|
|
}
|
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
CefMenuButtonDelegateCToCpp::CefMenuButtonDelegateCToCpp() {}
|
|
|
|
template <>
|
|
cef_menu_button_delegate_t* CefCToCppRefCounted<
|
|
CefMenuButtonDelegateCToCpp,
|
|
CefMenuButtonDelegate,
|
|
cef_menu_button_delegate_t>::UnwrapDerived(CefWrapperType type,
|
|
CefMenuButtonDelegate* c) {
|
|
NOTREACHED() << "Unexpected class type: " << type;
|
|
return NULL;
|
|
}
|
|
|
|
#if DCHECK_IS_ON()
|
|
template <>
|
|
base::AtomicRefCount CefCToCppRefCounted<CefMenuButtonDelegateCToCpp,
|
|
CefMenuButtonDelegate,
|
|
cef_menu_button_delegate_t>::DebugObjCt
|
|
ATOMIC_DECLARATION;
|
|
#endif
|
|
|
|
template <>
|
|
CefWrapperType CefCToCppRefCounted<CefMenuButtonDelegateCToCpp,
|
|
CefMenuButtonDelegate,
|
|
cef_menu_button_delegate_t>::kWrapperType =
|
|
WT_MENU_BUTTON_DELEGATE;
|