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 SetButtonStyle(const std::optional<ButtonStyleMode>& buttonStyle) override; 43 void SetControlSize(const std::optional<ControlSize>& controlSize) override; 44 static RefPtr<FrameNode> CreateFrameNode(int32_t nodeId); 45 static void SetFontSize(FrameNode* frameNode, const Dimension& fontSize); 46 static void SetFontWeight(FrameNode* frameNode, const Ace::FontWeight& fontWeight); 47 static void SetFontStyle(FrameNode* frameNode, const Ace::FontStyle& fontStyle); 48 static void SetFontFamily(FrameNode* frameNode, const std::vector<std::string>& fontFamily); 49 static void SetFontColor(FrameNode* frameNode, const Color& textColor); 50 static void SetType(FrameNode* frameNode, const int value); 51 static void SetStateEffect(FrameNode* frameNode, const bool stateEffect); 52 static void SetLableStyle(FrameNode* frameNode, const ButtonParameters& buttonParameters); 53 static void BackgroundColor(FrameNode* frameNode, const Color& color, const bool& colorFlag); 54 static void SetBorderRadius(FrameNode* frameNode, const Dimension& radius); 55 static void SetBorderRadius(FrameNode* frameNode, const std::optional<Dimension>& radiusTopLeft, 56 const std::optional<Dimension>& radiusTopRight, const std::optional<Dimension>& radiusBottomLeft, 57 const std::optional<Dimension>& radiusBottomRight); 58 static void SetSize( 59 FrameNode* frameNode, const std::optional<Dimension>& width, const std::optional<Dimension>& height); 60 61 private: 62 static void CreateWithLabel(const std::string& label); 63 static void Create(const std::string& tagName); 64 static void SetTypeAndStateEffect(const std::optional<ButtonType>& type, const std::optional<bool>& stateEffect); 65 static void SetTextDefaultStyle(const RefPtr<FrameNode>& textNode, const std::string& label); 66 }; 67 } // namespace OHOS::Ace::NG 68 #endif // FOUNDATION_ACE_FRAMEWORKS_CORE_COMPONENTS_NG_PATTERNS_BUTTON_BUTTON_MODEL_NG_H 69