1466 lines
40 KiB
C++
1466 lines
40 KiB
C++
// Copyright (c) 2020 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=47415544c8e36043a2a115453055bf98b888ecf1$
|
|
//
|
|
|
|
#include "libcef_dll/cpptoc/views/menu_button_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/image_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/menu_model_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/views/browser_view_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/views/button_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/views/label_button_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/views/panel_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/views/scroll_view_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/views/textfield_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/views/view_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/views/window_cpptoc.h"
|
|
#include "libcef_dll/ctocpp/views/menu_button_delegate_ctocpp.h"
|
|
#include "libcef_dll/ctocpp/views/view_delegate_ctocpp.h"
|
|
#include "libcef_dll/shutdown_checker.h"
|
|
|
|
// GLOBAL FUNCTIONS - Body may be edited by hand.
|
|
|
|
CEF_EXPORT cef_menu_button_t* cef_menu_button_create(
|
|
cef_menu_button_delegate_t* delegate,
|
|
const cef_string_t* text) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
// Verify param: delegate; type: refptr_diff
|
|
DCHECK(delegate);
|
|
if (!delegate)
|
|
return NULL;
|
|
// Unverified params: text
|
|
|
|
// Execute
|
|
CefRefPtr<CefMenuButton> _retval = CefMenuButton::CreateMenuButton(
|
|
CefMenuButtonDelegateCToCpp::Wrap(delegate), CefString(text));
|
|
|
|
// Return type: refptr_same
|
|
return CefMenuButtonCppToC::Wrap(_retval);
|
|
}
|
|
|
|
namespace {
|
|
|
|
// MEMBER FUNCTIONS - Body may be edited by hand.
|
|
|
|
void CEF_CALLBACK
|
|
menu_button_show_menu(struct _cef_menu_button_t* self,
|
|
cef_menu_model_t* menu_model,
|
|
const cef_point_t* screen_point,
|
|
cef_menu_anchor_position_t anchor_position) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
// Verify param: menu_model; type: refptr_same
|
|
DCHECK(menu_model);
|
|
if (!menu_model)
|
|
return;
|
|
// Verify param: screen_point; type: simple_byref_const
|
|
DCHECK(screen_point);
|
|
if (!screen_point)
|
|
return;
|
|
|
|
// Translate param: screen_point; type: simple_byref_const
|
|
CefPoint screen_pointVal = screen_point ? *screen_point : CefPoint();
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(self)->ShowMenu(
|
|
CefMenuModelCppToC::Unwrap(menu_model), screen_pointVal, anchor_position);
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_trigger_menu(struct _cef_menu_button_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(self)->TriggerMenu();
|
|
}
|
|
|
|
cef_menu_button_t* CEF_CALLBACK
|
|
menu_button_as_menu_button(struct _cef_label_button_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return NULL;
|
|
|
|
// Execute
|
|
CefRefPtr<CefMenuButton> _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->AsMenuButton();
|
|
|
|
// Return type: refptr_same
|
|
return CefMenuButtonCppToC::Wrap(_retval);
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_set_text(struct _cef_label_button_t* self,
|
|
const cef_string_t* text) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
// Verify param: text; type: string_byref_const
|
|
DCHECK(text);
|
|
if (!text)
|
|
return;
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetText(CefString(text));
|
|
}
|
|
|
|
cef_string_userfree_t CEF_CALLBACK
|
|
menu_button_get_text(struct _cef_label_button_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return NULL;
|
|
|
|
// Execute
|
|
CefString _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->GetText();
|
|
|
|
// Return type: string
|
|
return _retval.DetachToUserFree();
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_set_image(struct _cef_label_button_t* self,
|
|
cef_button_state_t button_state,
|
|
cef_image_t* image) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
// Unverified params: image
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetImage(button_state, CefImageCppToC::Unwrap(image));
|
|
}
|
|
|
|
cef_image_t* CEF_CALLBACK
|
|
menu_button_get_image(struct _cef_label_button_t* self,
|
|
cef_button_state_t button_state) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return NULL;
|
|
|
|
// Execute
|
|
CefRefPtr<CefImage> _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->GetImage(button_state);
|
|
|
|
// Return type: refptr_same
|
|
return CefImageCppToC::Wrap(_retval);
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_set_text_color(struct _cef_label_button_t* self,
|
|
cef_button_state_t for_state,
|
|
cef_color_t color) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetTextColor(for_state, color);
|
|
}
|
|
|
|
void CEF_CALLBACK
|
|
menu_button_set_enabled_text_colors(struct _cef_label_button_t* self,
|
|
cef_color_t color) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetEnabledTextColors(color);
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_set_font_list(struct _cef_label_button_t* self,
|
|
const cef_string_t* font_list) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
// Verify param: font_list; type: string_byref_const
|
|
DCHECK(font_list);
|
|
if (!font_list)
|
|
return;
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetFontList(CefString(font_list));
|
|
}
|
|
|
|
void CEF_CALLBACK
|
|
menu_button_set_horizontal_alignment(struct _cef_label_button_t* self,
|
|
cef_horizontal_alignment_t alignment) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetHorizontalAlignment(alignment);
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_set_minimum_size(struct _cef_label_button_t* self,
|
|
const cef_size_t* size) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
// Verify param: size; type: simple_byref_const
|
|
DCHECK(size);
|
|
if (!size)
|
|
return;
|
|
|
|
// Translate param: size; type: simple_byref_const
|
|
CefSize sizeVal = size ? *size : CefSize();
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetMinimumSize(sizeVal);
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_set_maximum_size(struct _cef_label_button_t* self,
|
|
const cef_size_t* size) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
// Verify param: size; type: simple_byref_const
|
|
DCHECK(size);
|
|
if (!size)
|
|
return;
|
|
|
|
// Translate param: size; type: simple_byref_const
|
|
CefSize sizeVal = size ? *size : CefSize();
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetMaximumSize(sizeVal);
|
|
}
|
|
|
|
cef_label_button_t* CEF_CALLBACK
|
|
menu_button_as_label_button(struct _cef_button_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return NULL;
|
|
|
|
// Execute
|
|
CefRefPtr<CefLabelButton> _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->AsLabelButton();
|
|
|
|
// Return type: refptr_same
|
|
return CefLabelButtonCppToC::Wrap(_retval);
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_set_state(struct _cef_button_t* self,
|
|
cef_button_state_t state) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetState(state);
|
|
}
|
|
|
|
cef_button_state_t CEF_CALLBACK
|
|
menu_button_get_state(struct _cef_button_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return CEF_BUTTON_STATE_NORMAL;
|
|
|
|
// Execute
|
|
cef_button_state_t _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->GetState();
|
|
|
|
// Return type: simple
|
|
return _retval;
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_set_ink_drop_enabled(struct _cef_button_t* self,
|
|
int enabled) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetInkDropEnabled(enabled ? true : false);
|
|
}
|
|
|
|
void CEF_CALLBACK
|
|
menu_button_set_tooltip_text(struct _cef_button_t* self,
|
|
const cef_string_t* tooltip_text) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
// Verify param: tooltip_text; type: string_byref_const
|
|
DCHECK(tooltip_text);
|
|
if (!tooltip_text)
|
|
return;
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetTooltipText(CefString(tooltip_text));
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_set_accessible_name(struct _cef_button_t* self,
|
|
const cef_string_t* name) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
// Verify param: name; type: string_byref_const
|
|
DCHECK(name);
|
|
if (!name)
|
|
return;
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetAccessibleName(CefString(name));
|
|
}
|
|
|
|
cef_browser_view_t* CEF_CALLBACK
|
|
menu_button_as_browser_view(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return NULL;
|
|
|
|
// Execute
|
|
CefRefPtr<CefBrowserView> _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->AsBrowserView();
|
|
|
|
// Return type: refptr_same
|
|
return CefBrowserViewCppToC::Wrap(_retval);
|
|
}
|
|
|
|
cef_button_t* CEF_CALLBACK menu_button_as_button(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return NULL;
|
|
|
|
// Execute
|
|
CefRefPtr<CefButton> _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->AsButton();
|
|
|
|
// Return type: refptr_same
|
|
return CefButtonCppToC::Wrap(_retval);
|
|
}
|
|
|
|
cef_panel_t* CEF_CALLBACK menu_button_as_panel(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return NULL;
|
|
|
|
// Execute
|
|
CefRefPtr<CefPanel> _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->AsPanel();
|
|
|
|
// Return type: refptr_same
|
|
return CefPanelCppToC::Wrap(_retval);
|
|
}
|
|
|
|
cef_scroll_view_t* CEF_CALLBACK
|
|
menu_button_as_scroll_view(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return NULL;
|
|
|
|
// Execute
|
|
CefRefPtr<CefScrollView> _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->AsScrollView();
|
|
|
|
// Return type: refptr_same
|
|
return CefScrollViewCppToC::Wrap(_retval);
|
|
}
|
|
|
|
cef_textfield_t* CEF_CALLBACK
|
|
menu_button_as_textfield(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return NULL;
|
|
|
|
// Execute
|
|
CefRefPtr<CefTextfield> _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->AsTextfield();
|
|
|
|
// Return type: refptr_same
|
|
return CefTextfieldCppToC::Wrap(_retval);
|
|
}
|
|
|
|
cef_string_userfree_t CEF_CALLBACK
|
|
menu_button_get_type_string(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return NULL;
|
|
|
|
// Execute
|
|
CefString _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->GetTypeString();
|
|
|
|
// Return type: string
|
|
return _retval.DetachToUserFree();
|
|
}
|
|
|
|
cef_string_userfree_t CEF_CALLBACK
|
|
menu_button_to_string(struct _cef_view_t* self, int include_children) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return NULL;
|
|
|
|
// Execute
|
|
CefString _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->ToString(include_children ? true : false);
|
|
|
|
// Return type: string
|
|
return _retval.DetachToUserFree();
|
|
}
|
|
|
|
int CEF_CALLBACK menu_button_is_valid(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
|
|
// Execute
|
|
bool _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->IsValid();
|
|
|
|
// Return type: bool
|
|
return _retval;
|
|
}
|
|
|
|
int CEF_CALLBACK menu_button_is_attached(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
|
|
// Execute
|
|
bool _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->IsAttached();
|
|
|
|
// Return type: bool
|
|
return _retval;
|
|
}
|
|
|
|
int CEF_CALLBACK menu_button_is_same(struct _cef_view_t* self,
|
|
struct _cef_view_t* that) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
// Verify param: that; type: refptr_same
|
|
DCHECK(that);
|
|
if (!that)
|
|
return 0;
|
|
|
|
// Execute
|
|
bool _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->IsSame(CefViewCppToC::Unwrap(that));
|
|
|
|
// Return type: bool
|
|
return _retval;
|
|
}
|
|
|
|
struct _cef_view_delegate_t* CEF_CALLBACK
|
|
menu_button_get_delegate(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return NULL;
|
|
|
|
// Execute
|
|
CefRefPtr<CefViewDelegate> _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->GetDelegate();
|
|
|
|
// Return type: refptr_diff
|
|
return CefViewDelegateCToCpp::Unwrap(_retval);
|
|
}
|
|
|
|
struct _cef_window_t* CEF_CALLBACK
|
|
menu_button_get_window(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return NULL;
|
|
|
|
// Execute
|
|
CefRefPtr<CefWindow> _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->GetWindow();
|
|
|
|
// Return type: refptr_same
|
|
return CefWindowCppToC::Wrap(_retval);
|
|
}
|
|
|
|
int CEF_CALLBACK menu_button_get_id(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
|
|
// Execute
|
|
int _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->GetID();
|
|
|
|
// Return type: simple
|
|
return _retval;
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_set_id(struct _cef_view_t* self, int id) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetID(id);
|
|
}
|
|
|
|
int CEF_CALLBACK menu_button_get_group_id(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
|
|
// Execute
|
|
int _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->GetGroupID();
|
|
|
|
// Return type: simple
|
|
return _retval;
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_set_group_id(struct _cef_view_t* self,
|
|
int group_id) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetGroupID(group_id);
|
|
}
|
|
|
|
struct _cef_view_t* CEF_CALLBACK
|
|
menu_button_get_parent_view(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return NULL;
|
|
|
|
// Execute
|
|
CefRefPtr<CefView> _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->GetParentView();
|
|
|
|
// Return type: refptr_same
|
|
return CefViewCppToC::Wrap(_retval);
|
|
}
|
|
|
|
struct _cef_view_t* CEF_CALLBACK
|
|
menu_button_get_view_for_id(struct _cef_view_t* self, int id) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return NULL;
|
|
|
|
// Execute
|
|
CefRefPtr<CefView> _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->GetViewForID(id);
|
|
|
|
// Return type: refptr_same
|
|
return CefViewCppToC::Wrap(_retval);
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_set_bounds(struct _cef_view_t* self,
|
|
const cef_rect_t* bounds) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
// Verify param: bounds; type: simple_byref_const
|
|
DCHECK(bounds);
|
|
if (!bounds)
|
|
return;
|
|
|
|
// Translate param: bounds; type: simple_byref_const
|
|
CefRect boundsVal = bounds ? *bounds : CefRect();
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetBounds(boundsVal);
|
|
}
|
|
|
|
cef_rect_t CEF_CALLBACK menu_button_get_bounds(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return CefRect();
|
|
|
|
// Execute
|
|
cef_rect_t _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->GetBounds();
|
|
|
|
// Return type: simple
|
|
return _retval;
|
|
}
|
|
|
|
cef_rect_t CEF_CALLBACK
|
|
menu_button_get_bounds_in_screen(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return CefRect();
|
|
|
|
// Execute
|
|
cef_rect_t _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->GetBoundsInScreen();
|
|
|
|
// Return type: simple
|
|
return _retval;
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_set_size(struct _cef_view_t* self,
|
|
const cef_size_t* size) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
// Verify param: size; type: simple_byref_const
|
|
DCHECK(size);
|
|
if (!size)
|
|
return;
|
|
|
|
// Translate param: size; type: simple_byref_const
|
|
CefSize sizeVal = size ? *size : CefSize();
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetSize(sizeVal);
|
|
}
|
|
|
|
cef_size_t CEF_CALLBACK menu_button_get_size(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return CefSize();
|
|
|
|
// Execute
|
|
cef_size_t _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->GetSize();
|
|
|
|
// Return type: simple
|
|
return _retval;
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_set_position(struct _cef_view_t* self,
|
|
const cef_point_t* position) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
// Verify param: position; type: simple_byref_const
|
|
DCHECK(position);
|
|
if (!position)
|
|
return;
|
|
|
|
// Translate param: position; type: simple_byref_const
|
|
CefPoint positionVal = position ? *position : CefPoint();
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetPosition(positionVal);
|
|
}
|
|
|
|
cef_point_t CEF_CALLBACK menu_button_get_position(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return CefPoint();
|
|
|
|
// Execute
|
|
cef_point_t _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->GetPosition();
|
|
|
|
// Return type: simple
|
|
return _retval;
|
|
}
|
|
|
|
cef_size_t CEF_CALLBACK
|
|
menu_button_get_preferred_size(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return CefSize();
|
|
|
|
// Execute
|
|
cef_size_t _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->GetPreferredSize();
|
|
|
|
// Return type: simple
|
|
return _retval;
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_size_to_preferred_size(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SizeToPreferredSize();
|
|
}
|
|
|
|
cef_size_t CEF_CALLBACK menu_button_get_minimum_size(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return CefSize();
|
|
|
|
// Execute
|
|
cef_size_t _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->GetMinimumSize();
|
|
|
|
// Return type: simple
|
|
return _retval;
|
|
}
|
|
|
|
cef_size_t CEF_CALLBACK menu_button_get_maximum_size(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return CefSize();
|
|
|
|
// Execute
|
|
cef_size_t _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->GetMaximumSize();
|
|
|
|
// Return type: simple
|
|
return _retval;
|
|
}
|
|
|
|
int CEF_CALLBACK menu_button_get_height_for_width(struct _cef_view_t* self,
|
|
int width) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
|
|
// Execute
|
|
int _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->GetHeightForWidth(width);
|
|
|
|
// Return type: simple
|
|
return _retval;
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_invalidate_layout(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->InvalidateLayout();
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_set_visible(struct _cef_view_t* self,
|
|
int visible) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetVisible(visible ? true : false);
|
|
}
|
|
|
|
int CEF_CALLBACK menu_button_is_visible(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
|
|
// Execute
|
|
bool _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->IsVisible();
|
|
|
|
// Return type: bool
|
|
return _retval;
|
|
}
|
|
|
|
int CEF_CALLBACK menu_button_is_drawn(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
|
|
// Execute
|
|
bool _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->IsDrawn();
|
|
|
|
// Return type: bool
|
|
return _retval;
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_set_enabled(struct _cef_view_t* self,
|
|
int enabled) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetEnabled(enabled ? true : false);
|
|
}
|
|
|
|
int CEF_CALLBACK menu_button_is_enabled(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
|
|
// Execute
|
|
bool _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->IsEnabled();
|
|
|
|
// Return type: bool
|
|
return _retval;
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_set_focusable(struct _cef_view_t* self,
|
|
int focusable) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetFocusable(focusable ? true : false);
|
|
}
|
|
|
|
int CEF_CALLBACK menu_button_is_focusable(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
|
|
// Execute
|
|
bool _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->IsFocusable();
|
|
|
|
// Return type: bool
|
|
return _retval;
|
|
}
|
|
|
|
int CEF_CALLBACK
|
|
menu_button_is_accessibility_focusable(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
|
|
// Execute
|
|
bool _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->IsAccessibilityFocusable();
|
|
|
|
// Return type: bool
|
|
return _retval;
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_request_focus(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->RequestFocus();
|
|
}
|
|
|
|
void CEF_CALLBACK menu_button_set_background_color(struct _cef_view_t* self,
|
|
cef_color_t color) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
|
|
// Execute
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->SetBackgroundColor(color);
|
|
}
|
|
|
|
cef_color_t CEF_CALLBACK
|
|
menu_button_get_background_color(struct _cef_view_t* self) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
|
|
// Execute
|
|
cef_color_t _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->GetBackgroundColor();
|
|
|
|
// Return type: simple
|
|
return _retval;
|
|
}
|
|
|
|
int CEF_CALLBACK menu_button_convert_point_to_screen(struct _cef_view_t* self,
|
|
cef_point_t* point) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
// Verify param: point; type: simple_byref
|
|
DCHECK(point);
|
|
if (!point)
|
|
return 0;
|
|
|
|
// Translate param: point; type: simple_byref
|
|
CefPoint pointVal = point ? *point : CefPoint();
|
|
|
|
// Execute
|
|
bool _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->ConvertPointToScreen(pointVal);
|
|
|
|
// Restore param: point; type: simple_byref
|
|
if (point)
|
|
*point = pointVal;
|
|
|
|
// Return type: bool
|
|
return _retval;
|
|
}
|
|
|
|
int CEF_CALLBACK menu_button_convert_point_from_screen(struct _cef_view_t* self,
|
|
cef_point_t* point) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
// Verify param: point; type: simple_byref
|
|
DCHECK(point);
|
|
if (!point)
|
|
return 0;
|
|
|
|
// Translate param: point; type: simple_byref
|
|
CefPoint pointVal = point ? *point : CefPoint();
|
|
|
|
// Execute
|
|
bool _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->ConvertPointFromScreen(pointVal);
|
|
|
|
// Restore param: point; type: simple_byref
|
|
if (point)
|
|
*point = pointVal;
|
|
|
|
// Return type: bool
|
|
return _retval;
|
|
}
|
|
|
|
int CEF_CALLBACK menu_button_convert_point_to_window(struct _cef_view_t* self,
|
|
cef_point_t* point) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
// Verify param: point; type: simple_byref
|
|
DCHECK(point);
|
|
if (!point)
|
|
return 0;
|
|
|
|
// Translate param: point; type: simple_byref
|
|
CefPoint pointVal = point ? *point : CefPoint();
|
|
|
|
// Execute
|
|
bool _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->ConvertPointToWindow(pointVal);
|
|
|
|
// Restore param: point; type: simple_byref
|
|
if (point)
|
|
*point = pointVal;
|
|
|
|
// Return type: bool
|
|
return _retval;
|
|
}
|
|
|
|
int CEF_CALLBACK menu_button_convert_point_from_window(struct _cef_view_t* self,
|
|
cef_point_t* point) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
// Verify param: point; type: simple_byref
|
|
DCHECK(point);
|
|
if (!point)
|
|
return 0;
|
|
|
|
// Translate param: point; type: simple_byref
|
|
CefPoint pointVal = point ? *point : CefPoint();
|
|
|
|
// Execute
|
|
bool _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->ConvertPointFromWindow(pointVal);
|
|
|
|
// Restore param: point; type: simple_byref
|
|
if (point)
|
|
*point = pointVal;
|
|
|
|
// Return type: bool
|
|
return _retval;
|
|
}
|
|
|
|
int CEF_CALLBACK menu_button_convert_point_to_view(struct _cef_view_t* self,
|
|
struct _cef_view_t* view,
|
|
cef_point_t* point) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
// Verify param: view; type: refptr_same
|
|
DCHECK(view);
|
|
if (!view)
|
|
return 0;
|
|
// Verify param: point; type: simple_byref
|
|
DCHECK(point);
|
|
if (!point)
|
|
return 0;
|
|
|
|
// Translate param: point; type: simple_byref
|
|
CefPoint pointVal = point ? *point : CefPoint();
|
|
|
|
// Execute
|
|
bool _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->ConvertPointToView(CefViewCppToC::Unwrap(view), pointVal);
|
|
|
|
// Restore param: point; type: simple_byref
|
|
if (point)
|
|
*point = pointVal;
|
|
|
|
// Return type: bool
|
|
return _retval;
|
|
}
|
|
|
|
int CEF_CALLBACK menu_button_convert_point_from_view(struct _cef_view_t* self,
|
|
struct _cef_view_t* view,
|
|
cef_point_t* point) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
// Verify param: view; type: refptr_same
|
|
DCHECK(view);
|
|
if (!view)
|
|
return 0;
|
|
// Verify param: point; type: simple_byref
|
|
DCHECK(point);
|
|
if (!point)
|
|
return 0;
|
|
|
|
// Translate param: point; type: simple_byref
|
|
CefPoint pointVal = point ? *point : CefPoint();
|
|
|
|
// Execute
|
|
bool _retval =
|
|
CefMenuButtonCppToC::Get(reinterpret_cast<cef_menu_button_t*>(self))
|
|
->ConvertPointFromView(CefViewCppToC::Unwrap(view), pointVal);
|
|
|
|
// Restore param: point; type: simple_byref
|
|
if (point)
|
|
*point = pointVal;
|
|
|
|
// Return type: bool
|
|
return _retval;
|
|
}
|
|
|
|
} // namespace
|
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
CefMenuButtonCppToC::CefMenuButtonCppToC() {
|
|
GetStruct()->show_menu = menu_button_show_menu;
|
|
GetStruct()->trigger_menu = menu_button_trigger_menu;
|
|
GetStruct()->base.as_menu_button = menu_button_as_menu_button;
|
|
GetStruct()->base.set_text = menu_button_set_text;
|
|
GetStruct()->base.get_text = menu_button_get_text;
|
|
GetStruct()->base.set_image = menu_button_set_image;
|
|
GetStruct()->base.get_image = menu_button_get_image;
|
|
GetStruct()->base.set_text_color = menu_button_set_text_color;
|
|
GetStruct()->base.set_enabled_text_colors =
|
|
menu_button_set_enabled_text_colors;
|
|
GetStruct()->base.set_font_list = menu_button_set_font_list;
|
|
GetStruct()->base.set_horizontal_alignment =
|
|
menu_button_set_horizontal_alignment;
|
|
GetStruct()->base.set_minimum_size = menu_button_set_minimum_size;
|
|
GetStruct()->base.set_maximum_size = menu_button_set_maximum_size;
|
|
GetStruct()->base.base.as_label_button = menu_button_as_label_button;
|
|
GetStruct()->base.base.set_state = menu_button_set_state;
|
|
GetStruct()->base.base.get_state = menu_button_get_state;
|
|
GetStruct()->base.base.set_ink_drop_enabled =
|
|
menu_button_set_ink_drop_enabled;
|
|
GetStruct()->base.base.set_tooltip_text = menu_button_set_tooltip_text;
|
|
GetStruct()->base.base.set_accessible_name = menu_button_set_accessible_name;
|
|
GetStruct()->base.base.base.as_browser_view = menu_button_as_browser_view;
|
|
GetStruct()->base.base.base.as_button = menu_button_as_button;
|
|
GetStruct()->base.base.base.as_panel = menu_button_as_panel;
|
|
GetStruct()->base.base.base.as_scroll_view = menu_button_as_scroll_view;
|
|
GetStruct()->base.base.base.as_textfield = menu_button_as_textfield;
|
|
GetStruct()->base.base.base.get_type_string = menu_button_get_type_string;
|
|
GetStruct()->base.base.base.to_string = menu_button_to_string;
|
|
GetStruct()->base.base.base.is_valid = menu_button_is_valid;
|
|
GetStruct()->base.base.base.is_attached = menu_button_is_attached;
|
|
GetStruct()->base.base.base.is_same = menu_button_is_same;
|
|
GetStruct()->base.base.base.get_delegate = menu_button_get_delegate;
|
|
GetStruct()->base.base.base.get_window = menu_button_get_window;
|
|
GetStruct()->base.base.base.get_id = menu_button_get_id;
|
|
GetStruct()->base.base.base.set_id = menu_button_set_id;
|
|
GetStruct()->base.base.base.get_group_id = menu_button_get_group_id;
|
|
GetStruct()->base.base.base.set_group_id = menu_button_set_group_id;
|
|
GetStruct()->base.base.base.get_parent_view = menu_button_get_parent_view;
|
|
GetStruct()->base.base.base.get_view_for_id = menu_button_get_view_for_id;
|
|
GetStruct()->base.base.base.set_bounds = menu_button_set_bounds;
|
|
GetStruct()->base.base.base.get_bounds = menu_button_get_bounds;
|
|
GetStruct()->base.base.base.get_bounds_in_screen =
|
|
menu_button_get_bounds_in_screen;
|
|
GetStruct()->base.base.base.set_size = menu_button_set_size;
|
|
GetStruct()->base.base.base.get_size = menu_button_get_size;
|
|
GetStruct()->base.base.base.set_position = menu_button_set_position;
|
|
GetStruct()->base.base.base.get_position = menu_button_get_position;
|
|
GetStruct()->base.base.base.get_preferred_size =
|
|
menu_button_get_preferred_size;
|
|
GetStruct()->base.base.base.size_to_preferred_size =
|
|
menu_button_size_to_preferred_size;
|
|
GetStruct()->base.base.base.get_minimum_size = menu_button_get_minimum_size;
|
|
GetStruct()->base.base.base.get_maximum_size = menu_button_get_maximum_size;
|
|
GetStruct()->base.base.base.get_height_for_width =
|
|
menu_button_get_height_for_width;
|
|
GetStruct()->base.base.base.invalidate_layout = menu_button_invalidate_layout;
|
|
GetStruct()->base.base.base.set_visible = menu_button_set_visible;
|
|
GetStruct()->base.base.base.is_visible = menu_button_is_visible;
|
|
GetStruct()->base.base.base.is_drawn = menu_button_is_drawn;
|
|
GetStruct()->base.base.base.set_enabled = menu_button_set_enabled;
|
|
GetStruct()->base.base.base.is_enabled = menu_button_is_enabled;
|
|
GetStruct()->base.base.base.set_focusable = menu_button_set_focusable;
|
|
GetStruct()->base.base.base.is_focusable = menu_button_is_focusable;
|
|
GetStruct()->base.base.base.is_accessibility_focusable =
|
|
menu_button_is_accessibility_focusable;
|
|
GetStruct()->base.base.base.request_focus = menu_button_request_focus;
|
|
GetStruct()->base.base.base.set_background_color =
|
|
menu_button_set_background_color;
|
|
GetStruct()->base.base.base.get_background_color =
|
|
menu_button_get_background_color;
|
|
GetStruct()->base.base.base.convert_point_to_screen =
|
|
menu_button_convert_point_to_screen;
|
|
GetStruct()->base.base.base.convert_point_from_screen =
|
|
menu_button_convert_point_from_screen;
|
|
GetStruct()->base.base.base.convert_point_to_window =
|
|
menu_button_convert_point_to_window;
|
|
GetStruct()->base.base.base.convert_point_from_window =
|
|
menu_button_convert_point_from_window;
|
|
GetStruct()->base.base.base.convert_point_to_view =
|
|
menu_button_convert_point_to_view;
|
|
GetStruct()->base.base.base.convert_point_from_view =
|
|
menu_button_convert_point_from_view;
|
|
}
|
|
|
|
// DESTRUCTOR - Do not edit by hand.
|
|
|
|
CefMenuButtonCppToC::~CefMenuButtonCppToC() {
|
|
shutdown_checker::AssertNotShutdown();
|
|
}
|
|
|
|
template <>
|
|
CefRefPtr<CefMenuButton>
|
|
CefCppToCRefCounted<CefMenuButtonCppToC, CefMenuButton, cef_menu_button_t>::
|
|
UnwrapDerived(CefWrapperType type, cef_menu_button_t* s) {
|
|
NOTREACHED() << "Unexpected class type: " << type;
|
|
return nullptr;
|
|
}
|
|
|
|
template <>
|
|
CefWrapperType CefCppToCRefCounted<CefMenuButtonCppToC,
|
|
CefMenuButton,
|
|
cef_menu_button_t>::kWrapperType =
|
|
WT_MENU_BUTTON;
|