/* * Copyright (c) 2021-2022 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef FRAMEWORKS_BRIDGE_DECLARATIVE_FRONTEND_JS_VIEW_JS_BUTTON_H #define FRAMEWORKS_BRIDGE_DECLARATIVE_FRONTEND_JS_VIEW_JS_BUTTON_H #include #include "core/components/button/button_component.h" #include "core/components/text/text_component.h" #include "core/components/touch_listener/touch_listener_component.h" #include "core/event/ace_event_handler.h" #include "frameworks/bridge/declarative_frontend/engine/bindings_defines.h" #include "frameworks/bridge/declarative_frontend/jsview/js_container_base.h" namespace OHOS::Ace::Framework { class JSButton : public JSContainerBase { public: static void SetFontSize(const JSCallbackInfo& info); static void SetFontWeight(const std::string& value); static void SetFontStyle(int32_t value); static void SetFontFamily(const JSCallbackInfo& info); static void SetTextColor(const JSCallbackInfo& info); static void SetType(const JSCallbackInfo& info); static void SetStateEffect(bool stateEffect); static void JsBackgroundColor(const JSCallbackInfo& info); static void JsRadius(const JSCallbackInfo& info); static void JsWidth(const JSCallbackInfo& info); static void JsHeight(const JSCallbackInfo& info); static void JsAspectRatio(const JSCallbackInfo& info); static void JsOnClick(const JSCallbackInfo& info); static void JsSize(const JSCallbackInfo& info); static void JsRemoteMessage(const JSCallbackInfo& info); static void JsPadding(const JSCallbackInfo& info); static void JsHoverEffect(const JSCallbackInfo& info); public: static void JSBind(BindingTarget globalObj); static void CreateWithChild(const JSCallbackInfo& info); static void CreateWithLabel(const JSCallbackInfo& info); private: static void SetDefaultAttributes(const RefPtr& buttonComponent); static void SetTypeAndStateEffect(const JSRef& obj, const RefPtr& buttonComponent); static void SetTypeAndStateEffect(const JSRef& obj); static Dimension GetSizeValue(const JSCallbackInfo& info); static RefPtr GetTextComponent(); static void ResetButtonHeight(); }; } // namespace OHOS::Ace::Framework #endif // FRAMEWORKS_BRIDGE_DECLARATIVE_FRONTEND_JS_VIEW_JS_BUTTON_H