• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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/rs_extended_modifier.h"
22 #include "modifier/rs_modifier.h"
23 
24 namespace OHOS {
25 namespace Rosen {
26 class TextCustomModifier : public OHOS::Rosen::RSContentStyleModifier {
27 public:
28     ~TextCustomModifier() = default;
29 
30     void Draw(OHOS::Rosen::RSDrawingContext& context) const;
31     void SetPosition(OHOS::Rosen::Vector2f position);
32     void SetBrushColor(uint32_t color);
33     void SetFontSize(float size);
34     void SetText(std::string text);
35 
36 private:
37     std::shared_ptr<OHOS::Rosen::RSProperty<OHOS::Rosen::Vector2f>> position_;
38     std::shared_ptr<OHOS::Rosen::RSProperty<uint32_t>> color_;
39     std::shared_ptr<OHOS::Rosen::RSProperty<float>> size_;
40     std::shared_ptr<OHOS::Rosen::RSProperty<std::string>> text_;
41 };
42 
43 } // namespace Rosen
44 } // namespace OHOS
45 #endif