1 /* 2 * Copyright (c) 2024 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 RS_GRAPHIC_TEST_TEXT_H 17 #define RS_GRAPHIC_TEST_TEXT_H 18 19 #include "rs_graphic_test.h" 20 21 #include "modifier_ng/custom/rs_content_style_modifier.h" 22 23 namespace OHOS { 24 namespace Rosen { 25 using ContentStyleModifier = ModifierNG::RSContentStyleModifier; 26 using DrawingContext = ModifierNG::RSDrawingContext; 27 class TextCustomModifier : public ContentStyleModifier { 28 public: 29 ~TextCustomModifier() = default; 30 31 void Draw(DrawingContext& context) const; 32 void SetPosition(OHOS::Rosen::Vector2f position); 33 void SetBrushColor(uint32_t color); 34 void SetFontSize(float size); 35 void SetText(std::string text); 36 37 private: 38 std::shared_ptr<OHOS::Rosen::RSProperty<OHOS::Rosen::Vector2f>> position_; 39 std::shared_ptr<OHOS::Rosen::RSProperty<uint32_t>> color_; 40 std::shared_ptr<OHOS::Rosen::RSProperty<float>> size_; 41 std::shared_ptr<OHOS::Rosen::RSProperty<std::string>> text_; 42 }; 43 } // namespace Rosen 44 } // namespace OHOS 45 #endif