// Copyright (c) 2018 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=0057708082664103c2e7c9a4f6f2af44cba7a4a5$ // #include "libcef_dll/ctocpp/views/browser_view_ctocpp.h" #include "libcef_dll/cpptoc/client_cpptoc.h" #include "libcef_dll/cpptoc/views/browser_view_delegate_cpptoc.h" #include "libcef_dll/cpptoc/views/view_delegate_cpptoc.h" #include "libcef_dll/ctocpp/browser_ctocpp.h" #include "libcef_dll/ctocpp/request_context_ctocpp.h" #include "libcef_dll/ctocpp/views/button_ctocpp.h" #include "libcef_dll/ctocpp/views/panel_ctocpp.h" #include "libcef_dll/ctocpp/views/scroll_view_ctocpp.h" #include "libcef_dll/ctocpp/views/textfield_ctocpp.h" #include "libcef_dll/ctocpp/views/view_ctocpp.h" #include "libcef_dll/ctocpp/views/window_ctocpp.h" // STATIC METHODS - Body may be edited by hand. CefRefPtr CefBrowserView::CreateBrowserView( CefRefPtr client, const CefString& url, const CefBrowserSettings& settings, CefRefPtr request_context, CefRefPtr delegate) { // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Unverified params: client, url, request_context, delegate // Execute cef_browser_view_t* _retval = cef_browser_view_create( CefClientCppToC::Wrap(client), url.GetStruct(), &settings, CefRequestContextCToCpp::Unwrap(request_context), CefBrowserViewDelegateCppToC::Wrap(delegate)); // Return type: refptr_same return CefBrowserViewCToCpp::Wrap(_retval); } CefRefPtr CefBrowserView::GetForBrowser( CefRefPtr browser) { // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Verify param: browser; type: refptr_same DCHECK(browser.get()); if (!browser.get()) return NULL; // Execute cef_browser_view_t* _retval = cef_browser_view_get_for_browser(CefBrowserCToCpp::Unwrap(browser)); // Return type: refptr_same return CefBrowserViewCToCpp::Wrap(_retval); } // VIRTUAL METHODS - Body may be edited by hand. CefRefPtr CefBrowserViewCToCpp::GetBrowser() { cef_browser_view_t* _struct = GetStruct(); if (CEF_MEMBER_MISSING(_struct, get_browser)) return NULL; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_browser_t* _retval = _struct->get_browser(_struct); // Return type: refptr_same return CefBrowserCToCpp::Wrap(_retval); } void CefBrowserViewCToCpp::SetPreferAccelerators(bool prefer_accelerators) { cef_browser_view_t* _struct = GetStruct(); if (CEF_MEMBER_MISSING(_struct, set_prefer_accelerators)) return; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute _struct->set_prefer_accelerators(_struct, prefer_accelerators); } CefRefPtr CefBrowserViewCToCpp::AsBrowserView() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, as_browser_view)) return NULL; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_browser_view_t* _retval = _struct->as_browser_view(_struct); // Return type: refptr_same return CefBrowserViewCToCpp::Wrap(_retval); } CefRefPtr CefBrowserViewCToCpp::AsButton() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, as_button)) return NULL; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_button_t* _retval = _struct->as_button(_struct); // Return type: refptr_same return CefButtonCToCpp::Wrap(_retval); } CefRefPtr CefBrowserViewCToCpp::AsPanel() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, as_panel)) return NULL; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_panel_t* _retval = _struct->as_panel(_struct); // Return type: refptr_same return CefPanelCToCpp::Wrap(_retval); } CefRefPtr CefBrowserViewCToCpp::AsScrollView() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, as_scroll_view)) return NULL; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_scroll_view_t* _retval = _struct->as_scroll_view(_struct); // Return type: refptr_same return CefScrollViewCToCpp::Wrap(_retval); } CefRefPtr CefBrowserViewCToCpp::AsTextfield() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, as_textfield)) return NULL; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_textfield_t* _retval = _struct->as_textfield(_struct); // Return type: refptr_same return CefTextfieldCToCpp::Wrap(_retval); } CefString CefBrowserViewCToCpp::GetTypeString() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, get_type_string)) return CefString(); // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_string_userfree_t _retval = _struct->get_type_string(_struct); // Return type: string CefString _retvalStr; _retvalStr.AttachToUserFree(_retval); return _retvalStr; } CefString CefBrowserViewCToCpp::ToString(bool include_children) { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, to_string)) return CefString(); // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_string_userfree_t _retval = _struct->to_string(_struct, include_children); // Return type: string CefString _retvalStr; _retvalStr.AttachToUserFree(_retval); return _retvalStr; } bool CefBrowserViewCToCpp::IsValid() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, is_valid)) return false; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute int _retval = _struct->is_valid(_struct); // Return type: bool return _retval ? true : false; } bool CefBrowserViewCToCpp::IsAttached() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, is_attached)) return false; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute int _retval = _struct->is_attached(_struct); // Return type: bool return _retval ? true : false; } bool CefBrowserViewCToCpp::IsSame(CefRefPtr that) { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, is_same)) return false; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Verify param: that; type: refptr_same DCHECK(that.get()); if (!that.get()) return false; // Execute int _retval = _struct->is_same(_struct, CefViewCToCpp::Unwrap(that)); // Return type: bool return _retval ? true : false; } CefRefPtr CefBrowserViewCToCpp::GetDelegate() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, get_delegate)) return NULL; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_view_delegate_t* _retval = _struct->get_delegate(_struct); // Return type: refptr_diff return CefViewDelegateCppToC::Unwrap(_retval); } CefRefPtr CefBrowserViewCToCpp::GetWindow() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, get_window)) return NULL; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_window_t* _retval = _struct->get_window(_struct); // Return type: refptr_same return CefWindowCToCpp::Wrap(_retval); } int CefBrowserViewCToCpp::GetID() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, get_id)) return 0; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute int _retval = _struct->get_id(_struct); // Return type: simple return _retval; } void CefBrowserViewCToCpp::SetID(int id) { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, set_id)) return; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute _struct->set_id(_struct, id); } int CefBrowserViewCToCpp::GetGroupID() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, get_group_id)) return 0; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute int _retval = _struct->get_group_id(_struct); // Return type: simple return _retval; } void CefBrowserViewCToCpp::SetGroupID(int group_id) { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, set_group_id)) return; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute _struct->set_group_id(_struct, group_id); } CefRefPtr CefBrowserViewCToCpp::GetParentView() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, get_parent_view)) return NULL; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_view_t* _retval = _struct->get_parent_view(_struct); // Return type: refptr_same return CefViewCToCpp::Wrap(_retval); } CefRefPtr CefBrowserViewCToCpp::GetViewForID(int id) { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, get_view_for_id)) return NULL; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_view_t* _retval = _struct->get_view_for_id(_struct, id); // Return type: refptr_same return CefViewCToCpp::Wrap(_retval); } void CefBrowserViewCToCpp::SetBounds(const CefRect& bounds) { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, set_bounds)) return; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute _struct->set_bounds(_struct, &bounds); } CefRect CefBrowserViewCToCpp::GetBounds() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, get_bounds)) return CefRect(); // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_rect_t _retval = _struct->get_bounds(_struct); // Return type: simple return _retval; } CefRect CefBrowserViewCToCpp::GetBoundsInScreen() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, get_bounds_in_screen)) return CefRect(); // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_rect_t _retval = _struct->get_bounds_in_screen(_struct); // Return type: simple return _retval; } void CefBrowserViewCToCpp::SetSize(const CefSize& size) { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, set_size)) return; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute _struct->set_size(_struct, &size); } CefSize CefBrowserViewCToCpp::GetSize() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, get_size)) return CefSize(); // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_size_t _retval = _struct->get_size(_struct); // Return type: simple return _retval; } void CefBrowserViewCToCpp::SetPosition(const CefPoint& position) { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, set_position)) return; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute _struct->set_position(_struct, &position); } CefPoint CefBrowserViewCToCpp::GetPosition() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, get_position)) return CefPoint(); // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_point_t _retval = _struct->get_position(_struct); // Return type: simple return _retval; } CefSize CefBrowserViewCToCpp::GetPreferredSize() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, get_preferred_size)) return CefSize(); // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_size_t _retval = _struct->get_preferred_size(_struct); // Return type: simple return _retval; } void CefBrowserViewCToCpp::SizeToPreferredSize() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, size_to_preferred_size)) return; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute _struct->size_to_preferred_size(_struct); } CefSize CefBrowserViewCToCpp::GetMinimumSize() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, get_minimum_size)) return CefSize(); // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_size_t _retval = _struct->get_minimum_size(_struct); // Return type: simple return _retval; } CefSize CefBrowserViewCToCpp::GetMaximumSize() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, get_maximum_size)) return CefSize(); // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_size_t _retval = _struct->get_maximum_size(_struct); // Return type: simple return _retval; } int CefBrowserViewCToCpp::GetHeightForWidth(int width) { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, get_height_for_width)) return 0; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute int _retval = _struct->get_height_for_width(_struct, width); // Return type: simple return _retval; } void CefBrowserViewCToCpp::InvalidateLayout() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, invalidate_layout)) return; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute _struct->invalidate_layout(_struct); } void CefBrowserViewCToCpp::SetVisible(bool visible) { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, set_visible)) return; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute _struct->set_visible(_struct, visible); } bool CefBrowserViewCToCpp::IsVisible() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, is_visible)) return false; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute int _retval = _struct->is_visible(_struct); // Return type: bool return _retval ? true : false; } bool CefBrowserViewCToCpp::IsDrawn() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, is_drawn)) return false; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute int _retval = _struct->is_drawn(_struct); // Return type: bool return _retval ? true : false; } void CefBrowserViewCToCpp::SetEnabled(bool enabled) { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, set_enabled)) return; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute _struct->set_enabled(_struct, enabled); } bool CefBrowserViewCToCpp::IsEnabled() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, is_enabled)) return false; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute int _retval = _struct->is_enabled(_struct); // Return type: bool return _retval ? true : false; } void CefBrowserViewCToCpp::SetFocusable(bool focusable) { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, set_focusable)) return; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute _struct->set_focusable(_struct, focusable); } bool CefBrowserViewCToCpp::IsFocusable() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, is_focusable)) return false; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute int _retval = _struct->is_focusable(_struct); // Return type: bool return _retval ? true : false; } bool CefBrowserViewCToCpp::IsAccessibilityFocusable() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, is_accessibility_focusable)) return false; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute int _retval = _struct->is_accessibility_focusable(_struct); // Return type: bool return _retval ? true : false; } void CefBrowserViewCToCpp::RequestFocus() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, request_focus)) return; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute _struct->request_focus(_struct); } void CefBrowserViewCToCpp::SetBackgroundColor(cef_color_t color) { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, set_background_color)) return; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute _struct->set_background_color(_struct, color); } cef_color_t CefBrowserViewCToCpp::GetBackgroundColor() { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, get_background_color)) return 0; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_color_t _retval = _struct->get_background_color(_struct); // Return type: simple return _retval; } bool CefBrowserViewCToCpp::ConvertPointToScreen(CefPoint& point) { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, convert_point_to_screen)) return false; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute int _retval = _struct->convert_point_to_screen(_struct, &point); // Return type: bool return _retval ? true : false; } bool CefBrowserViewCToCpp::ConvertPointFromScreen(CefPoint& point) { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, convert_point_from_screen)) return false; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute int _retval = _struct->convert_point_from_screen(_struct, &point); // Return type: bool return _retval ? true : false; } bool CefBrowserViewCToCpp::ConvertPointToWindow(CefPoint& point) { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, convert_point_to_window)) return false; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute int _retval = _struct->convert_point_to_window(_struct, &point); // Return type: bool return _retval ? true : false; } bool CefBrowserViewCToCpp::ConvertPointFromWindow(CefPoint& point) { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, convert_point_from_window)) return false; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute int _retval = _struct->convert_point_from_window(_struct, &point); // Return type: bool return _retval ? true : false; } bool CefBrowserViewCToCpp::ConvertPointToView(CefRefPtr view, CefPoint& point) { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, convert_point_to_view)) return false; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Verify param: view; type: refptr_same DCHECK(view.get()); if (!view.get()) return false; // Execute int _retval = _struct->convert_point_to_view( _struct, CefViewCToCpp::Unwrap(view), &point); // Return type: bool return _retval ? true : false; } bool CefBrowserViewCToCpp::ConvertPointFromView(CefRefPtr view, CefPoint& point) { cef_view_t* _struct = reinterpret_cast(GetStruct()); if (CEF_MEMBER_MISSING(_struct, convert_point_from_view)) return false; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Verify param: view; type: refptr_same DCHECK(view.get()); if (!view.get()) return false; // Execute int _retval = _struct->convert_point_from_view( _struct, CefViewCToCpp::Unwrap(view), &point); // Return type: bool return _retval ? true : false; } // CONSTRUCTOR - Do not edit by hand. CefBrowserViewCToCpp::CefBrowserViewCToCpp() {} template <> cef_browser_view_t* CefCToCppRefCounted:: UnwrapDerived(CefWrapperType type, CefBrowserView* c) { NOTREACHED() << "Unexpected class type: " << type; return NULL; } #if DCHECK_IS_ON() template <> base::AtomicRefCount CefCToCppRefCounted::DebugObjCt ATOMIC_DECLARATION; #endif template <> CefWrapperType CefCToCppRefCounted::kWrapperType = WT_BROWSER_VIEW;