cef/libcef_dll/ctocpp/image_ctocpp.cc
Marshall Greenblatt 06e73fff15 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-04-26 11:58:13 -04:00

295 lines
7.5 KiB
C++

// Copyright (c) 2016 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.
//
#include "libcef_dll/ctocpp/binary_value_ctocpp.h"
#include "libcef_dll/ctocpp/image_ctocpp.h"
// STATIC METHODS - Body may be edited by hand.
CefRefPtr<CefImage> CefImage::CreateImage() {
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
cef_image_t* _retval = cef_image_create();
// Return type: refptr_same
return CefImageCToCpp::Wrap(_retval);
}
// VIRTUAL METHODS - Body may be edited by hand.
bool CefImageCToCpp::IsEmpty() {
cef_image_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, is_empty))
return false;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
int _retval = _struct->is_empty(_struct);
// Return type: bool
return _retval?true:false;
}
bool CefImageCToCpp::IsSame(CefRefPtr<CefImage> that) {
cef_image_t* _struct = 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,
CefImageCToCpp::Unwrap(that));
// Return type: bool
return _retval?true:false;
}
bool CefImageCToCpp::AddBitmap(float scale_factor, int pixel_width,
int pixel_height, cef_color_type_t color_type, cef_alpha_type_t alpha_type,
const void* pixel_data, size_t pixel_data_size) {
cef_image_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, add_bitmap))
return false;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: pixel_data; type: simple_byaddr
DCHECK(pixel_data);
if (!pixel_data)
return false;
// Execute
int _retval = _struct->add_bitmap(_struct,
scale_factor,
pixel_width,
pixel_height,
color_type,
alpha_type,
pixel_data,
pixel_data_size);
// Return type: bool
return _retval?true:false;
}
bool CefImageCToCpp::AddPNG(float scale_factor, const void* png_data,
size_t png_data_size) {
cef_image_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, add_png))
return false;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: png_data; type: simple_byaddr
DCHECK(png_data);
if (!png_data)
return false;
// Execute
int _retval = _struct->add_png(_struct,
scale_factor,
png_data,
png_data_size);
// Return type: bool
return _retval?true:false;
}
bool CefImageCToCpp::AddJPEG(float scale_factor, const void* jpeg_data,
size_t jpeg_data_size) {
cef_image_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, add_jpeg))
return false;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: jpeg_data; type: simple_byaddr
DCHECK(jpeg_data);
if (!jpeg_data)
return false;
// Execute
int _retval = _struct->add_jpeg(_struct,
scale_factor,
jpeg_data,
jpeg_data_size);
// Return type: bool
return _retval?true:false;
}
size_t CefImageCToCpp::GetWidth() {
cef_image_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, get_width))
return 0;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
size_t _retval = _struct->get_width(_struct);
// Return type: simple
return _retval;
}
size_t CefImageCToCpp::GetHeight() {
cef_image_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, get_height))
return 0;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
size_t _retval = _struct->get_height(_struct);
// Return type: simple
return _retval;
}
bool CefImageCToCpp::HasRepresentation(float scale_factor) {
cef_image_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, has_representation))
return false;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
int _retval = _struct->has_representation(_struct,
scale_factor);
// Return type: bool
return _retval?true:false;
}
bool CefImageCToCpp::RemoveRepresentation(float scale_factor) {
cef_image_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, remove_representation))
return false;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
int _retval = _struct->remove_representation(_struct,
scale_factor);
// Return type: bool
return _retval?true:false;
}
bool CefImageCToCpp::GetRepresentationInfo(float scale_factor,
float& actual_scale_factor, int& pixel_width, int& pixel_height) {
cef_image_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, get_representation_info))
return false;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
int _retval = _struct->get_representation_info(_struct,
scale_factor,
&actual_scale_factor,
&pixel_width,
&pixel_height);
// Return type: bool
return _retval?true:false;
}
CefRefPtr<CefBinaryValue> CefImageCToCpp::GetAsBitmap(float scale_factor,
cef_color_type_t color_type, cef_alpha_type_t alpha_type, int& pixel_width,
int& pixel_height) {
cef_image_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, get_as_bitmap))
return NULL;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
cef_binary_value_t* _retval = _struct->get_as_bitmap(_struct,
scale_factor,
color_type,
alpha_type,
&pixel_width,
&pixel_height);
// Return type: refptr_same
return CefBinaryValueCToCpp::Wrap(_retval);
}
CefRefPtr<CefBinaryValue> CefImageCToCpp::GetAsPNG(float scale_factor,
bool with_transparency, int& pixel_width, int& pixel_height) {
cef_image_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, get_as_png))
return NULL;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
cef_binary_value_t* _retval = _struct->get_as_png(_struct,
scale_factor,
with_transparency,
&pixel_width,
&pixel_height);
// Return type: refptr_same
return CefBinaryValueCToCpp::Wrap(_retval);
}
CefRefPtr<CefBinaryValue> CefImageCToCpp::GetAsJPEG(float scale_factor,
int quality, int& pixel_width, int& pixel_height) {
cef_image_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, get_as_jpeg))
return NULL;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
cef_binary_value_t* _retval = _struct->get_as_jpeg(_struct,
scale_factor,
quality,
&pixel_width,
&pixel_height);
// Return type: refptr_same
return CefBinaryValueCToCpp::Wrap(_retval);
}
// CONSTRUCTOR - Do not edit by hand.
CefImageCToCpp::CefImageCToCpp() {
}
template<> cef_image_t* CefCToCpp<CefImageCToCpp, CefImage,
cef_image_t>::UnwrapDerived(CefWrapperType type, CefImage* c) {
NOTREACHED() << "Unexpected class type: " << type;
return NULL;
}
#ifndef NDEBUG
template<> base::AtomicRefCount CefCToCpp<CefImageCToCpp, CefImage,
cef_image_t>::DebugObjCt = 0;
#endif
template<> CefWrapperType CefCToCpp<CefImageCToCpp, CefImage,
cef_image_t>::kWrapperType = WT_IMAGE;