// Copyright 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. #ifndef CEF_LIBCEF_BROWSER_VIEWS_BUTTON_IMPL_H_ #define CEF_LIBCEF_BROWSER_VIEWS_BUTTON_IMPL_H_ #pragma once #include "include/views/cef_button.h" #include "include/views/cef_label_button.h" #include "libcef/browser/views/view_impl.h" #include "base/logging.h" #include "ui/views/controls/button/custom_button.h" // Helpers for template boiler-plate. #define CEF_BUTTON_IMPL_T CEF_VIEW_IMPL_T #define CEF_BUTTON_IMPL_A CEF_VIEW_IMPL_A #define CEF_BUTTON_IMPL_D CefButtonImpl // Template for implementing CefButton-derived classes. See comments in // view_impl.h for a usage overview. CEF_BUTTON_IMPL_T class CefButtonImpl : public CEF_VIEW_IMPL_D { public: typedef CEF_VIEW_IMPL_D ParentClass; // CefButton methods. When adding new As*() methods make sure to update // CefViewAdapter::GetFor() in view_adapter.cc. CefRefPtr AsLabelButton() override { return nullptr; } void SetState(cef_button_state_t state) override; cef_button_state_t GetState() override; void SetTooltipText(const CefString& tooltip_text) override; void SetAccessibleName(const CefString& name) override; // CefView methods: CefRefPtr AsButton() override { return this; } protected: // Create a new implementation object. // Always call Initialize() after creation. // |delegate| may be nullptr. explicit CefButtonImpl(CefRefPtr delegate) : ParentClass(delegate) { } }; CEF_BUTTON_IMPL_T void CEF_BUTTON_IMPL_D::SetState(cef_button_state_t state) { CEF_REQUIRE_VALID_RETURN_VOID(); ParentClass::root_view()->SetState( static_cast(state)); } CEF_BUTTON_IMPL_T cef_button_state_t CEF_BUTTON_IMPL_D::GetState() { CEF_REQUIRE_VALID_RETURN(CEF_BUTTON_STATE_NORMAL); return static_cast(ParentClass::root_view()->state()); } CEF_BUTTON_IMPL_T void CEF_BUTTON_IMPL_D::SetTooltipText( const CefString& tooltip_text) { CEF_REQUIRE_VALID_RETURN_VOID(); ParentClass::root_view()->SetTooltipText(tooltip_text); } CEF_BUTTON_IMPL_T void CEF_BUTTON_IMPL_D::SetAccessibleName( const CefString& name) { CEF_REQUIRE_VALID_RETURN_VOID(); ParentClass::root_view()->SetAccessibleName(name); } #endif // CEF_LIBCEF_BROWSER_VIEWS_BUTTON_IMPL_H_