/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/text/ |
H A D | text_component.cpp | 23 TextComponent::TextComponent(const std::string& data) : ComponentGroup(std::list<RefPtr<Component>>… in TextComponent() function in OHOS::Ace::TextComponent 32 RefPtr<RenderNode> TextComponent::CreateRenderNode() in CreateRenderNode() 37 RefPtr<Element> TextComponent::CreateElement() in CreateElement() 86 const std::string& TextComponent::GetData() const in GetData() 91 void TextComponent::SetData(const std::string& data) in SetData() 96 const TextStyle& TextComponent::GetTextStyle() const in GetTextStyle() 116 const Color& TextComponent::GetFocusColor() const in GetFocusColor() 136 bool TextComponent::GetMaxWidthLayout() const in GetMaxWidthLayout() 146 bool TextComponent::GetAutoMaxLines() const in GetAutoMaxLines() 156 bool TextComponent::IsChanged() const in IsChanged() [all …]
|
H A D | text_component_v2.h | 24 class ACE_EXPORT TextComponentV2 : public TextComponent { 25 DECLARE_ACE_TYPE(TextComponentV2, TextComponent); 28 explicit TextComponentV2(const std::string& data) : TextComponent(data) {} in TextComponentV2()
|
H A D | text_component.h | 35 class ACE_EXPORT TextComponent : public ComponentGroup { 36 DECLARE_ACE_TYPE(TextComponent, ComponentGroup); 39 explicit TextComponent(const std::string& data); 40 ~TextComponent() override = default;
|
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/components/ |
H A D | text_component.cpp | 30 TextComponent::TextComponent(jerry_value_t options, jerry_value_t children, AppStyleManager *styleM… in TextComponent() function in OHOS::ACELite::TextComponent 50 bool TextComponent::CreateNativeViews() in CreateNativeViews() 65 void TextComponent::ReleaseNativeViews() in ReleaseNativeViews() 71 inline UIView *TextComponent::GetComponentRootView() const in GetComponentRootView() 76 UI_LABEL_TYPE_WRAPPER *TextComponent::GetUILabelView() const in GetUILabelView() 97 bool TextComponent::ApplyPrivateStyle(const AppStyleItem *styleItem) in ApplyPrivateStyle() 276 void TextComponent::SetTextSize(const AppStyleItem *styleItem) in SetTextSize() 281 void TextComponent::OnViewAttached() in OnViewAttached() 304 void TextComponent::PostUpdate(uint16_t attrKeyId) in PostUpdate() 362 void TextComponent::UpdateTextAlignToLabel(UI_LABEL_TYPE_WRAPPER& label) in UpdateTextAlignToLabel() [all …]
|
H A D | marquee_component.cpp | 26 : TextComponent(options, children, styleManager) in MarqueeComponent() 33 if (TextComponent::CreateNativeViews()) { in CreateNativeViews() 34 UI_LABEL_TYPE_WRAPPER *uiLabel = TextComponent::GetUILabelView(); in CreateNativeViews() 48 bool isSuccess = TextComponent::SetPrivateAttribute(attrKeyId, attrValue); in SetPrivateAttribute() 86 UI_LABEL_TYPE_WRAPPER *uiLabel = TextComponent::GetUILabelView(); in SetRollSpeed()
|
H A D | text_component.h | 56 class TextComponent : public Component { 58 ACE_DISALLOW_COPY_AND_MOVE(TextComponent); 59 TextComponent() = delete; 60 TextComponent(jerry_value_t options, jerry_value_t children, AppStyleManager* styleManager); 61 ~TextComponent() override {} in ~TextComponent()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/dialog/ |
H A D | dialog_component.h | 57 void SetTitle(const RefPtr<TextComponent>& title) in SetTitle() 67 void SetContent(const RefPtr<TextComponent>& content) in SetContent() 124 const RefPtr<TextComponent>& GetTitle() const in GetTitle() 134 const RefPtr<TextComponent>& GetContent() const in GetContent() 331 RefPtr<TextComponent> title_; 333 RefPtr<TextComponent> content_;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/tab_bar/ |
H A D | tab_bar_item_component.cpp | 43 text_ = AceType::MakeRefPtr<TextComponent>(text); in TabBarItemComponent() 92 auto text = AceType::DynamicCast<TextComponent>(component); in UpdateStyle() 115 auto textComponent = AceType::MakeRefPtr<TextComponent>(textStr); in BuildWithTextIcon() 130 auto text = AceType::MakeRefPtr<TextComponent>(textStr); in BuildWithTextIcon()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/dom/input/ |
H A D | dom_button_util.cpp | 30 …const RefPtr<ButtonComponent>& component, const RefPtr<TextComponent>& textChild, const RefPtr<But… in InitDefaultValue() 64 RefPtr<TextComponent> textChild = AceType::MakeRefPtr<TextComponent>(""); in CreateComponentAndSetChildAttr() 122 RefPtr<TextComponent> textChild = AceType::DynamicCast<TextComponent>(padding->GetChild()); in SetChildAttr() 146 RefPtr<TextComponent> textChild = AceType::DynamicCast<TextComponent>(padding->GetChild()); in SetChildStyle()
|
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/components/test/unittest/common/ |
H A D | text_tdd_test.cpp | 45 …Component* textComponent = reinterpret_cast<TextComponent *>(GetRenderedComponent(componentNameId_… in ComponentTextAttributeSetValueTest001() 101 …Component* textComponent = reinterpret_cast<TextComponent *>(GetRenderedComponent(componentNameId_… in ComponentTextStyleSetColorTest002() 159 …Component* textComponent = reinterpret_cast<TextComponent *>(GetRenderedComponent(componentNameId_… in ComponentTextStyleSetOverflowTest003() 224 …Component* textComponent = reinterpret_cast<TextComponent *>(GetRenderedComponent(componentNameId_… in ComponentTextStyleSetLetterSpacingTest004() 278 …Component* textComponent = reinterpret_cast<TextComponent *>(GetRenderedComponent(componentNameId_… in ComponentTextStyleSetAlignTest005() 337 …Component *textComponent = reinterpret_cast<TextComponent *>(GetRenderedComponent(componentNameId_… in ComponentTextStyleSetSizeFamilyTest006() 431 …Component *textComponent = reinterpret_cast<TextComponent *>(GetRenderedComponent(componentNameId_… in ComponentTextStyleSetLineHeightTest008()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/dom/ |
H A D | dom_tool_bar_item.cpp | 32 textChild_ = AceType::MakeRefPtr<TextComponent>(""); in DOMToolBarItem() 213 textChild_ = AceType::MakeRefPtr<TextComponent>(value_); in BuildCommonComponent() 238 textChild_ = AceType::MakeRefPtr<TextComponent>(""); in BuildEndItemComponent() 260 RefPtr<TextComponent> textComponent = AceType::MakeRefPtr<TextComponent>(value_); in BuildOptionComponent()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/toast/ |
H A D | toast_component.h | 41 void BuildToastContent(const RefPtr<TextComponent>& text, const RefPtr<ToastTheme>& toastTheme); 43 const RefPtr<TextComponent>& text, const RefPtr<ToastTheme>& toastTheme);
|
H A D | toast_component.cpp | 78 void ToastComponent::BuildToastContent(const RefPtr<TextComponent>& text, const RefPtr<ToastTheme>&… in BuildToastContent() 99 const RefPtr<TextComponent>& text, const RefPtr<ToastTheme>& toastTheme) in BuildPackageBox() 171 RefPtr<TextComponent> text = AceType::MakeRefPtr<TextComponent>(message); in Show()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/container_modal/ |
H A D | container_modal_component.h | 52 RefPtr<TextComponent> GetTitleLabel() const in GetTitleLabel() 82 RefPtr<TextComponent> titleLabel_;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/picker/ |
H A D | picker_option_component.h | 83 const RefPtr<TextComponent>& GetTextComponent() in GetTextComponent() 151 RefPtr<TextComponent> textComponent_;
|
H A D | picker_column_component.cpp | 87 … RefPtr<TextComponent> splitter = AceType::MakeRefPtr<TextComponent>(":"); // use char ':' to split in Initialize()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | hyperlink_model_impl.cpp | 55 RefPtr<OHOS::Ace::TextComponent> text = AceType::MakeRefPtr<TextComponent>(summary); in Pop()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/checkable/ |
H A D | render_switch.h | 94 RefPtr<TextComponent> textOnComponent_; 95 RefPtr<TextComponent> textOffComponent_;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/indexer/ |
H A D | indexer_item_component.h | 81 const RefPtr<TextComponent>& GetTextComponent() const in GetTextComponent() 161 RefPtr<TextComponent> text_;
|
H A D | render_indexer.h | 122 RefPtr<TextComponent> GetBubbleText() const in GetBubbleText() 173 RefPtr<TextComponent> bubbleText_;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/marquee/ |
H A D | marquee_component.h | 68 textChild_ = AceType::MakeRefPtr<TextComponent>(""); in MarqueeComponent() 185 RefPtr<TextComponent> textChild_;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/navigation_bar/ |
H A D | navigation_bar_component_base.cpp | 41 RefPtr<TextComponent> NavigationBarComponentBase::BuildTitleText( in BuildTitleText() 44 auto text = AceType::MakeRefPtr<TextComponent>(value); in BuildTitleText()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/indexer/ |
H A D | indexer_item_component.h | 98 const RefPtr<TextComponent>& GetTextComponent() const in GetTextComponent() 182 RefPtr<TextComponent> text_;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/select/ |
H A D | select_component.h | 151 const RefPtr<TextComponent>& GetTipText() const in GetTipText() 155 void SetTipText(const RefPtr<TextComponent>& tipText) in SetTipText() 434 RefPtr<TextComponent> tipText_;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/option/ |
H A D | option_component.h | 52 const RefPtr<TextComponent>& GetText() const in GetText() 56 void SetText(const RefPtr<TextComponent>& text) in SetText() 419 RefPtr<TextComponent> text_;
|