Home
last modified time | relevance | path

Searched refs:TextComponent (Results 1 – 25 of 110) sorted by relevance

12345

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/text/
H A Dtext_component.cpp23 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 Dtext_component_v2.h24 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 Dtext_component.h35 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 Dtext_component.cpp30 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 Dmarquee_component.cpp26 : 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 Dtext_component.h56 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 Ddialog_component.h57 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 Dtab_bar_item_component.cpp43 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 Ddom_button_util.cpp30 …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 Dtext_tdd_test.cpp45 …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 Ddom_tool_bar_item.cpp32 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 Dtoast_component.h41 void BuildToastContent(const RefPtr<TextComponent>& text, const RefPtr<ToastTheme>& toastTheme);
43 const RefPtr<TextComponent>& text, const RefPtr<ToastTheme>& toastTheme);
H A Dtoast_component.cpp78 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 Dcontainer_modal_component.h52 RefPtr<TextComponent> GetTitleLabel() const in GetTitleLabel()
82 RefPtr<TextComponent> titleLabel_;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/picker/
H A Dpicker_option_component.h83 const RefPtr<TextComponent>& GetTextComponent() in GetTextComponent()
151 RefPtr<TextComponent> textComponent_;
H A Dpicker_column_component.cpp87 … 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 Dhyperlink_model_impl.cpp55 RefPtr<OHOS::Ace::TextComponent> text = AceType::MakeRefPtr<TextComponent>(summary); in Pop()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/checkable/
H A Drender_switch.h94 RefPtr<TextComponent> textOnComponent_;
95 RefPtr<TextComponent> textOffComponent_;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/indexer/
H A Dindexer_item_component.h81 const RefPtr<TextComponent>& GetTextComponent() const in GetTextComponent()
161 RefPtr<TextComponent> text_;
H A Drender_indexer.h122 RefPtr<TextComponent> GetBubbleText() const in GetBubbleText()
173 RefPtr<TextComponent> bubbleText_;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/marquee/
H A Dmarquee_component.h68 textChild_ = AceType::MakeRefPtr<TextComponent>(""); in MarqueeComponent()
185 RefPtr<TextComponent> textChild_;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/navigation_bar/
H A Dnavigation_bar_component_base.cpp41 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 Dindexer_item_component.h98 const RefPtr<TextComponent>& GetTextComponent() const in GetTextComponent()
182 RefPtr<TextComponent> text_;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/select/
H A Dselect_component.h151 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 Doption_component.h52 const RefPtr<TextComponent>& GetText() const in GetText()
56 void SetText(const RefPtr<TextComponent>& text) in SetText()
419 RefPtr<TextComponent> text_;

12345