1 /* 2 * Copyright (c) 2022 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_TEXT_SPAN_MODEL_NG_H 17 #define FOUNDATION_ACE_FRAMEWORKS_CORE_COMPONENTS_NG_PATTERNS_TEXT_SPAN_MODEL_NG_H 18 19 #include <functional> 20 #include <string> 21 22 #include "core/components_ng/pattern/text/span_model.h" 23 #include "core/components_ng/pattern/text/span_node.h" 24 namespace OHOS::Ace::NG { 25 class ACE_EXPORT SpanModelNG : public SpanModel { 26 public: 27 void Create(const std::string& content) override; 28 void SetFont(const Font& value) override; 29 void SetFontSize(const Dimension& value) override; 30 void SetTextColor(const Color& value) override; 31 void SetItalicFontStyle(Ace::FontStyle value) override; 32 void SetFontWeight(FontWeight value) override; 33 void SetFontFamily(const std::vector<std::string>& value) override; 34 void SetTextDecoration(TextDecoration value) override; 35 void SetTextDecorationStyle(TextDecorationStyle value) override; 36 void SetTextDecorationColor(const Color& value) override; 37 void SetTextCase(TextCase value) override; 38 void SetTextShadow(const std::vector<Shadow>& value) override; 39 void SetLetterSpacing(const Dimension& value) override; 40 void SetLineHeight(const Dimension& value) override; 41 // TODO: add extra event for span. 42 void SetOnClick(std::function<void(const BaseEventInfo* info)>&& click) override; 43 void ClearOnClick() override; 44 45 static RefPtr<SpanNode> CreateSpanNode(int32_t nodeId, const std::string& content); 46 static void InitSpan(FrameNode* frameNode, const std::string& content); 47 static void SetFontWeight(FrameNode* frameNode, FontWeight value); 48 static void SetTextCase(FrameNode* frameNode, TextCase value); 49 static void SetItalicFontStyle(FrameNode* frameNode, Ace::FontStyle value); 50 static void SetLineHeight(FrameNode* frameNode, const Dimension& value); 51 static void SetFontSize(FrameNode* frameNode, const Dimension& value); 52 static void SetFontFamily(FrameNode* frameNode, const std::vector<std::string>& value); 53 static void SetTextDecoration(FrameNode* frameNode, TextDecoration value); 54 static void SetTextDecorationStyle(FrameNode* frameNode, TextDecorationStyle value); 55 static void SetTextDecorationColor(FrameNode* frameNode, const Color& value); 56 static void SetTextColor(FrameNode* frameNode, const Color& value); 57 static void SetLetterSpacing(FrameNode* frameNode, const Dimension& value); 58 static void SetFont(FrameNode* frameNode, const Font& value); 59 60 void CreateContainSpan() override; 61 void SetTextBackgroundStyle(const TextBackgroundStyle& style) override; 62 }; 63 } // namespace OHOS::Ace::NG 64 65 #endif // FOUNDATION_ACE_FRAMEWORKS_CORE_COMPONENTS_NG_PATTERNS_TEXT_SPAN_MODEL_NG_H 66