Searched refs:textFieldComponent (Results 1 – 5 of 5) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/test/unittest/text_field/ |
H A D | dsl_text_field_creator_test.cpp | 119 EXPECT_TRUE(textFieldComponent != nullptr); 120 EXPECT_TRUE(!textFieldComponent->NeedObscure()); 121 EXPECT_TRUE(textFieldComponent->IsEnabled()); 122 EXPECT_TRUE(!textFieldComponent->GetAutoFocus()); 123 EXPECT_TRUE(textFieldComponent->IsExtend()); 134 const auto& placeholderColor = textFieldComponent->GetPlaceholderColor(); 140 const auto& cursorColor = textFieldComponent->GetCursorColor(); 169 EXPECT_TRUE(textFieldComponent != nullptr); 170 EXPECT_TRUE(!textFieldComponent->NeedObscure()); 171 EXPECT_TRUE(textFieldComponent->IsEnabled()); [all …]
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | search_model_impl.cpp | 86 if (!textFieldComponent) { in SetPlaceholderColor() 108 if (!textFieldComponent) { in SetPlaceholderFont() 142 if (!textFieldComponent) { in SetTextFont() 170 CHECK_NULL_VOID(textFieldComponent); in SetTextAlign() 171 textFieldComponent->SetTextAlign(textAlign); in SetTextAlign() 201 CHECK_NULL_VOID(textFieldComponent); in SetHeight() 202 textFieldComponent->SetHeight(value); in SetHeight() 213 CHECK_NULL_VOID(textFieldComponent); in SetBackBorder() 256 CHECK_NULL_VOID(textFieldComponent); in SetOnCopy() 268 CHECK_NULL_VOID(textFieldComponent); in SetOnCut() [all …]
|
H A D | search_model_impl.h | 92 OHOS::Ace::RefPtr<OHOS::Ace::TextFieldComponent>& textFieldComponent, 96 OHOS::Ace::RefPtr<OHOS::Ace::TextFieldComponent>& textFieldComponent);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/dom/ |
H A D | dom_search.cpp | 104 …](const std::string& val, SearchComponent& searchComponent, TextFieldComponent& textFieldComponent, in SetSpecializedAttr() 105 TextStyle& textStyle) { textFieldComponent.SetAutoFocus(StringToBool(val)); } }, in SetSpecializedAttr() 107 …](const std::string& val, SearchComponent& searchComponent, TextFieldComponent& textFieldComponent, in SetSpecializedAttr() 108 TextStyle& textStyle) { textFieldComponent.SetPlaceholder(val); } }, in SetSpecializedAttr() 110 …](const std::string& val, SearchComponent& searchComponent, TextFieldComponent& textFieldComponent, in SetSpecializedAttr() 115 textFieldComponent.SetIconImage(val); in SetSpecializedAttr() 122 … TextStyle& textStyle) { textFieldComponent.SetSelectedEnd(StringToInt(val)); } }, in SetSpecializedAttr() 125 … TextStyle& textStyle) { textFieldComponent.SetSelectedStart(StringToInt(val)); } }, in SetSpecializedAttr() 128 … TextStyle& textStyle) { textFieldComponent.SetSoftKeyboardEnabled(StringToBool(val)); } }, in SetSpecializedAttr() 132 textFieldComponent.SetValue(val); in SetSpecializedAttr() [all …]
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/ |
H A D | search_composed_element.cpp | 76 auto textFieldComponent = AceType::DynamicCast<TextFieldComponent>(component->GetChild()); in GetColor() local 77 if (!textFieldComponent) { in GetColor() 80 return textFieldComponent->GetPlaceholderColor().ColorToString(); in GetColor()
|