cef/libcef_dll/ctocpp/print_settings_ctocpp.cc

442 lines
12 KiB
C++
Raw Normal View History

// Copyright (c) 2022 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=70eeeda85eb67d546066854051f2f921fadcca18$
//
#include "libcef_dll/ctocpp/print_settings_ctocpp.h"
#include <algorithm>
#include "libcef_dll/shutdown_checker.h"
// STATIC METHODS - Body may be edited by hand.
NO_SANITIZE("cfi-icall")
CefRefPtr<CefPrintSettings> CefPrintSettings::Create() {
shutdown_checker::AssertNotShutdown();
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
cef_print_settings_t* _retval = cef_print_settings_create();
// Return type: refptr_same
return CefPrintSettingsCToCpp::Wrap(_retval);
}
// VIRTUAL METHODS - Body may be edited by hand.
NO_SANITIZE("cfi-icall") bool CefPrintSettingsCToCpp::IsValid() {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = 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;
}
NO_SANITIZE("cfi-icall") bool CefPrintSettingsCToCpp::IsReadOnly() {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, is_read_only))
return false;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
int _retval = _struct->is_read_only(_struct);
// Return type: bool
return _retval ? true : false;
}
NO_SANITIZE("cfi-icall")
void CefPrintSettingsCToCpp::SetOrientation(bool landscape) {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, set_orientation))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
_struct->set_orientation(_struct, landscape);
}
NO_SANITIZE("cfi-icall") bool CefPrintSettingsCToCpp::IsLandscape() {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, is_landscape))
return false;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
int _retval = _struct->is_landscape(_struct);
// Return type: bool
return _retval ? true : false;
}
NO_SANITIZE("cfi-icall")
void CefPrintSettingsCToCpp::SetPrinterPrintableArea(
const CefSize& physical_size_device_units,
const CefRect& printable_area_device_units,
bool landscape_needs_flip) {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, set_printer_printable_area))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
_struct->set_printer_printable_area(_struct, &physical_size_device_units,
&printable_area_device_units,
landscape_needs_flip);
}
NO_SANITIZE("cfi-icall")
void CefPrintSettingsCToCpp::SetDeviceName(const CefString& name) {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, set_device_name))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Unverified params: name
// Execute
_struct->set_device_name(_struct, name.GetStruct());
}
NO_SANITIZE("cfi-icall") CefString CefPrintSettingsCToCpp::GetDeviceName() {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, get_device_name))
return CefString();
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
cef_string_userfree_t _retval = _struct->get_device_name(_struct);
// Return type: string
CefString _retvalStr;
_retvalStr.AttachToUserFree(_retval);
return _retvalStr;
}
NO_SANITIZE("cfi-icall") void CefPrintSettingsCToCpp::SetDPI(int dpi) {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, set_dpi))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
_struct->set_dpi(_struct, dpi);
}
NO_SANITIZE("cfi-icall") int CefPrintSettingsCToCpp::GetDPI() {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, get_dpi))
return 0;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
int _retval = _struct->get_dpi(_struct);
// Return type: simple
return _retval;
}
NO_SANITIZE("cfi-icall")
void CefPrintSettingsCToCpp::SetPageRanges(const PageRangeList& ranges) {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, set_page_ranges))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Translate param: ranges; type: simple_vec_byref_const
const size_t rangesCount = ranges.size();
Implement Views framework on Windows and Linux (issue #1749). - Add Views header files in a new include/views directory. - Add initial top-level window (CefWindow), control (CefBrowserView, CefLabelButton, CefMenuButton, CefPanel, CefScrollView, CefTextfield) and layout (CefBoxLayout, CefFlowLayout) support. See libcef/browser/views/view_impl.h comments for implementation details. - Add Views example usage in cefclient and cefsimple and Views unit tests in cef_unittests. Pass the `--use-views` command-line flag to cefclient, cefsimple and cef_unittests to run using the Views framework instead of platform APIs. For cefclient and cefsimple this will create the browser window and all related functionality using the Views framework. For cef_unittests this will run all tests (except OSR tests) in a Views-based browser window. Views- specific unit tests (`--gtest_filter=Views*`) will be run even if the the `--use-views` flag is not specified. - Pass the `--hide-frame` command-line flag to cefclient to demo a frameless Views-based browser window. - Pass the `--hide-controls` command-line flag to cefclient to demo a browser window without top controls. This also works in non-Views mode. - Pass the `--enable-high-dpi-support` command-line flag to cef_unittests on Windows to test high-DPI support on a display that supports it. - Add CefImage for reading/writing image file formats. - Add CefBrowser::DownloadImage() for downloading image URLs as a CefImage representation. This is primarily for loading favicons. - Add CefMenuModel::CreateMenuModel() and CefMenuModelDelegate for creating custom menus. This is primarily for use with CefMenuButton. - Add CefBrowser::TryCloseBrowser() helper for closing a browser. Also improve related documentation in cef_life_span_handler.h. - Rename cef_page_range_t to cef_range_t. It is now also used by CefTextfield. - Remove CefLifeSpanHandler::RunModal() which is never called. - Add draggable regions example to cefclient.
2016-01-19 21:09:01 +01:00
cef_range_t* rangesList = NULL;
if (rangesCount > 0) {
Implement Views framework on Windows and Linux (issue #1749). - Add Views header files in a new include/views directory. - Add initial top-level window (CefWindow), control (CefBrowserView, CefLabelButton, CefMenuButton, CefPanel, CefScrollView, CefTextfield) and layout (CefBoxLayout, CefFlowLayout) support. See libcef/browser/views/view_impl.h comments for implementation details. - Add Views example usage in cefclient and cefsimple and Views unit tests in cef_unittests. Pass the `--use-views` command-line flag to cefclient, cefsimple and cef_unittests to run using the Views framework instead of platform APIs. For cefclient and cefsimple this will create the browser window and all related functionality using the Views framework. For cef_unittests this will run all tests (except OSR tests) in a Views-based browser window. Views- specific unit tests (`--gtest_filter=Views*`) will be run even if the the `--use-views` flag is not specified. - Pass the `--hide-frame` command-line flag to cefclient to demo a frameless Views-based browser window. - Pass the `--hide-controls` command-line flag to cefclient to demo a browser window without top controls. This also works in non-Views mode. - Pass the `--enable-high-dpi-support` command-line flag to cef_unittests on Windows to test high-DPI support on a display that supports it. - Add CefImage for reading/writing image file formats. - Add CefBrowser::DownloadImage() for downloading image URLs as a CefImage representation. This is primarily for loading favicons. - Add CefMenuModel::CreateMenuModel() and CefMenuModelDelegate for creating custom menus. This is primarily for use with CefMenuButton. - Add CefBrowser::TryCloseBrowser() helper for closing a browser. Also improve related documentation in cef_life_span_handler.h. - Rename cef_page_range_t to cef_range_t. It is now also used by CefTextfield. - Remove CefLifeSpanHandler::RunModal() which is never called. - Add draggable regions example to cefclient.
2016-01-19 21:09:01 +01:00
rangesList = new cef_range_t[rangesCount];
DCHECK(rangesList);
if (rangesList) {
for (size_t i = 0; i < rangesCount; ++i) {
rangesList[i] = ranges[i];
}
}
}
// Execute
_struct->set_page_ranges(_struct, rangesCount, rangesList);
// Restore param:ranges; type: simple_vec_byref_const
if (rangesList)
delete[] rangesList;
}
NO_SANITIZE("cfi-icall") size_t CefPrintSettingsCToCpp::GetPageRangesCount() {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, get_page_ranges_count))
return 0;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
size_t _retval = _struct->get_page_ranges_count(_struct);
// Return type: simple
return _retval;
}
NO_SANITIZE("cfi-icall")
void CefPrintSettingsCToCpp::GetPageRanges(PageRangeList& ranges) {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, get_page_ranges))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Translate param: ranges; type: simple_vec_byref
size_t rangesSize = ranges.size();
size_t rangesCount = std::max(GetPageRangesCount(), rangesSize);
Implement Views framework on Windows and Linux (issue #1749). - Add Views header files in a new include/views directory. - Add initial top-level window (CefWindow), control (CefBrowserView, CefLabelButton, CefMenuButton, CefPanel, CefScrollView, CefTextfield) and layout (CefBoxLayout, CefFlowLayout) support. See libcef/browser/views/view_impl.h comments for implementation details. - Add Views example usage in cefclient and cefsimple and Views unit tests in cef_unittests. Pass the `--use-views` command-line flag to cefclient, cefsimple and cef_unittests to run using the Views framework instead of platform APIs. For cefclient and cefsimple this will create the browser window and all related functionality using the Views framework. For cef_unittests this will run all tests (except OSR tests) in a Views-based browser window. Views- specific unit tests (`--gtest_filter=Views*`) will be run even if the the `--use-views` flag is not specified. - Pass the `--hide-frame` command-line flag to cefclient to demo a frameless Views-based browser window. - Pass the `--hide-controls` command-line flag to cefclient to demo a browser window without top controls. This also works in non-Views mode. - Pass the `--enable-high-dpi-support` command-line flag to cef_unittests on Windows to test high-DPI support on a display that supports it. - Add CefImage for reading/writing image file formats. - Add CefBrowser::DownloadImage() for downloading image URLs as a CefImage representation. This is primarily for loading favicons. - Add CefMenuModel::CreateMenuModel() and CefMenuModelDelegate for creating custom menus. This is primarily for use with CefMenuButton. - Add CefBrowser::TryCloseBrowser() helper for closing a browser. Also improve related documentation in cef_life_span_handler.h. - Rename cef_page_range_t to cef_range_t. It is now also used by CefTextfield. - Remove CefLifeSpanHandler::RunModal() which is never called. - Add draggable regions example to cefclient.
2016-01-19 21:09:01 +01:00
cef_range_t* rangesList = NULL;
if (rangesCount > 0) {
Implement Views framework on Windows and Linux (issue #1749). - Add Views header files in a new include/views directory. - Add initial top-level window (CefWindow), control (CefBrowserView, CefLabelButton, CefMenuButton, CefPanel, CefScrollView, CefTextfield) and layout (CefBoxLayout, CefFlowLayout) support. See libcef/browser/views/view_impl.h comments for implementation details. - Add Views example usage in cefclient and cefsimple and Views unit tests in cef_unittests. Pass the `--use-views` command-line flag to cefclient, cefsimple and cef_unittests to run using the Views framework instead of platform APIs. For cefclient and cefsimple this will create the browser window and all related functionality using the Views framework. For cef_unittests this will run all tests (except OSR tests) in a Views-based browser window. Views- specific unit tests (`--gtest_filter=Views*`) will be run even if the the `--use-views` flag is not specified. - Pass the `--hide-frame` command-line flag to cefclient to demo a frameless Views-based browser window. - Pass the `--hide-controls` command-line flag to cefclient to demo a browser window without top controls. This also works in non-Views mode. - Pass the `--enable-high-dpi-support` command-line flag to cef_unittests on Windows to test high-DPI support on a display that supports it. - Add CefImage for reading/writing image file formats. - Add CefBrowser::DownloadImage() for downloading image URLs as a CefImage representation. This is primarily for loading favicons. - Add CefMenuModel::CreateMenuModel() and CefMenuModelDelegate for creating custom menus. This is primarily for use with CefMenuButton. - Add CefBrowser::TryCloseBrowser() helper for closing a browser. Also improve related documentation in cef_life_span_handler.h. - Rename cef_page_range_t to cef_range_t. It is now also used by CefTextfield. - Remove CefLifeSpanHandler::RunModal() which is never called. - Add draggable regions example to cefclient.
2016-01-19 21:09:01 +01:00
rangesList = new cef_range_t[rangesCount];
DCHECK(rangesList);
if (rangesList) {
memset(rangesList, 0, sizeof(cef_range_t) * rangesCount);
}
if (rangesList && rangesSize > 0) {
for (size_t i = 0; i < rangesSize; ++i) {
rangesList[i] = ranges[i];
}
}
}
// Execute
_struct->get_page_ranges(_struct, &rangesCount, rangesList);
// Restore param:ranges; type: simple_vec_byref
ranges.clear();
if (rangesCount > 0 && rangesList) {
for (size_t i = 0; i < rangesCount; ++i) {
ranges.push_back(rangesList[i]);
}
delete[] rangesList;
}
}
NO_SANITIZE("cfi-icall")
void CefPrintSettingsCToCpp::SetSelectionOnly(bool selection_only) {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, set_selection_only))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
_struct->set_selection_only(_struct, selection_only);
}
NO_SANITIZE("cfi-icall") bool CefPrintSettingsCToCpp::IsSelectionOnly() {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, is_selection_only))
return false;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
int _retval = _struct->is_selection_only(_struct);
// Return type: bool
return _retval ? true : false;
}
NO_SANITIZE("cfi-icall") void CefPrintSettingsCToCpp::SetCollate(bool collate) {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, set_collate))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
_struct->set_collate(_struct, collate);
}
NO_SANITIZE("cfi-icall") bool CefPrintSettingsCToCpp::WillCollate() {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, will_collate))
return false;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
int _retval = _struct->will_collate(_struct);
// Return type: bool
return _retval ? true : false;
}
NO_SANITIZE("cfi-icall")
void CefPrintSettingsCToCpp::SetColorModel(ColorModel model) {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, set_color_model))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
_struct->set_color_model(_struct, model);
}
NO_SANITIZE("cfi-icall")
CefPrintSettings::ColorModel CefPrintSettingsCToCpp::GetColorModel() {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, get_color_model))
return COLOR_MODEL_UNKNOWN;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
cef_color_model_t _retval = _struct->get_color_model(_struct);
// Return type: simple
return _retval;
}
NO_SANITIZE("cfi-icall") void CefPrintSettingsCToCpp::SetCopies(int copies) {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, set_copies))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
_struct->set_copies(_struct, copies);
}
NO_SANITIZE("cfi-icall") int CefPrintSettingsCToCpp::GetCopies() {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, get_copies))
return 0;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
int _retval = _struct->get_copies(_struct);
// Return type: simple
return _retval;
}
NO_SANITIZE("cfi-icall")
void CefPrintSettingsCToCpp::SetDuplexMode(DuplexMode mode) {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, set_duplex_mode))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
_struct->set_duplex_mode(_struct, mode);
}
NO_SANITIZE("cfi-icall")
CefPrintSettings::DuplexMode CefPrintSettingsCToCpp::GetDuplexMode() {
shutdown_checker::AssertNotShutdown();
cef_print_settings_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, get_duplex_mode))
return DUPLEX_MODE_UNKNOWN;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
cef_duplex_mode_t _retval = _struct->get_duplex_mode(_struct);
// Return type: simple
return _retval;
}
// CONSTRUCTOR - Do not edit by hand.
CefPrintSettingsCToCpp::CefPrintSettingsCToCpp() {}
// DESTRUCTOR - Do not edit by hand.
CefPrintSettingsCToCpp::~CefPrintSettingsCToCpp() {
shutdown_checker::AssertNotShutdown();
}
template <>
cef_print_settings_t*
CefCToCppRefCounted<CefPrintSettingsCToCpp,
CefPrintSettings,
cef_print_settings_t>::UnwrapDerived(CefWrapperType type,
CefPrintSettings* c) {
NOTREACHED() << "Unexpected class type: " << type;
return nullptr;
}
template <>
CefWrapperType CefCToCppRefCounted<CefPrintSettingsCToCpp,
CefPrintSettings,
cef_print_settings_t>::kWrapperType =
WT_PRINT_SETTINGS;