1 /* 2 * Copyright (c) 2023 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef FOUNDATION_ACE_FRAMEWORKS_CORE_COMPONENTS_NG_PATTERNS_BUTTON_BUTTON_MODEL_NG_H 17 #define FOUNDATION_ACE_FRAMEWORKS_CORE_COMPONENTS_NG_PATTERNS_BUTTON_BUTTON_MODEL_NG_H 18 19 #include "core/components_ng/pattern/button/button_model.h" 20 21 namespace OHOS::Ace::NG { 22 class ACE_EXPORT ButtonModelNG : public OHOS::Ace::ButtonModel { 23 public: 24 void SetFontSize(const Dimension& fontSize) override; 25 void SetFontWeight(const Ace::FontWeight& fontWeight) override; 26 void SetFontStyle(const Ace::FontStyle& fontStyle) override; 27 void SetFontFamily(const std::vector<std::string>& fontFamily) override; 28 void SetFontColor(const Color& textColor) override; 29 void SetType(const int value) override; 30 void SetStateEffect(const bool stateEffect) override; 31 void SetLableStyle(ButtonParameters& buttonParameters) override; 32 void CreateWithLabel(const CreateWithPara& para, std::list<RefPtr<Component>>& buttonChildren) override; 33 void Create(const CreateWithPara& para, std::list<RefPtr<Component>>& buttonChildren) override; 34 void CreateWithChild(const CreateWithPara& para) override; 35 void Padding(const PaddingProperty& paddingNew, const Edge& paddingOld) override; 36 void OnClick(GestureEventFunc&& tapEventFunc, ClickEventFunc&& clickEventFunc) override; 37 void BackgroundColor(const Color& color, const bool& colorFlag) override; 38 void SetSize(const std::optional<Dimension>& width, const std::optional<Dimension>& height) override; 39 void SetBorderRadius(const Dimension& radius) override; 40 void SetBorderRadius(const std::optional<Dimension>& radiusTopLeft, const std::optional<Dimension>& radiusTopRight, 41 const std::optional<Dimension>& radiusBottomLeft, const std::optional<Dimension>& radiusBottomRight) override; 42 void SetHoverEffect(const int32_t& hoverEffectNum) override; 43 44 private: 45 static void CreateWithLabel(const std::string& label); 46 static void Create(const std::string& tagName); 47 static void SetTypeAndStateEffect(const std::optional<ButtonType>& type, const std::optional<bool>& stateEffect); 48 static void SetTextDefaultStyle(const RefPtr<FrameNode>& textNode, const std::string& label); 49 }; 50 } // namespace OHOS::Ace::NG 51 #endif // FOUNDATION_ACE_FRAMEWORKS_CORE_COMPONENTS_NG_PATTERNS_BUTTON_BUTTON_MODEL_NG_H 52