cef/libcef_dll/ctocpp/views/fill_layout_ctocpp.cc

80 lines
2.4 KiB
C++
Raw Normal View History

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
// 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/views/box_layout_ctocpp.h"
#include "libcef_dll/ctocpp/views/fill_layout_ctocpp.h"
// VIRTUAL METHODS - Body may be edited by hand.
CefRefPtr<CefBoxLayout> CefFillLayoutCToCpp::AsBoxLayout() {
cef_layout_t* _struct = reinterpret_cast<cef_layout_t*>(GetStruct());
if (CEF_MEMBER_MISSING(_struct, as_box_layout))
return NULL;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
cef_box_layout_t* _retval = _struct->as_box_layout(_struct);
// Return type: refptr_same
return CefBoxLayoutCToCpp::Wrap(_retval);
}
CefRefPtr<CefFillLayout> CefFillLayoutCToCpp::AsFillLayout() {
cef_layout_t* _struct = reinterpret_cast<cef_layout_t*>(GetStruct());
if (CEF_MEMBER_MISSING(_struct, as_fill_layout))
return NULL;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
cef_fill_layout_t* _retval = _struct->as_fill_layout(_struct);
// Return type: refptr_same
return CefFillLayoutCToCpp::Wrap(_retval);
}
bool CefFillLayoutCToCpp::IsValid() {
cef_layout_t* _struct = reinterpret_cast<cef_layout_t*>(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;
}
// CONSTRUCTOR - Do not edit by hand.
CefFillLayoutCToCpp::CefFillLayoutCToCpp() {
}
template<> cef_fill_layout_t* CefCToCpp<CefFillLayoutCToCpp, CefFillLayout,
cef_fill_layout_t>::UnwrapDerived(CefWrapperType type, CefFillLayout* c) {
NOTREACHED() << "Unexpected class type: " << type;
return NULL;
}
#ifndef NDEBUG
template<> base::AtomicRefCount CefCToCpp<CefFillLayoutCToCpp, CefFillLayout,
cef_fill_layout_t>::DebugObjCt = 0;
#endif
template<> CefWrapperType CefCToCpp<CefFillLayoutCToCpp, CefFillLayout,
cef_fill_layout_t>::kWrapperType = WT_FILL_LAYOUT;