Searched refs:PickerTextComponent (Results 1 – 7 of 7) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/picker/ |
H A D | picker_text_component.cpp | 20 PickerTextComponent::PickerTextComponent() in PickerTextComponent() function in OHOS::Ace::PickerTextComponent 27 void PickerTextComponent::OnTitleBuilding() in OnTitleBuilding() 33 void PickerTextComponent::OnColumnsBuilding() in OnColumnsBuilding() 49 std::string PickerTextComponent::GetSelectedObject(bool isColumnChange, in GetSelectedObject() 80 void PickerTextComponent::OnSelectedSaving() in OnSelectedSaving() 91 void PickerTextComponent::HandleSelectedChange() in HandleSelectedChange() 106 void PickerTextComponent::HandleRangeChange() in HandleRangeChange()
|
H A D | picker_text_component.h | 23 class ACE_EXPORT PickerTextComponent : public PickerBaseComponent { 24 DECLARE_ACE_TYPE(PickerTextComponent, PickerBaseComponent); 27 PickerTextComponent(); 28 ~PickerTextComponent() override = default;
|
H A D | render_picker_base.cpp | 91 auto textPicker = AceType::DynamicCast<PickerTextComponent>(component); in Update()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | textpicker_model_impl.cpp | 25 auto textPicker = AceType::MakeRefPtr<PickerTextComponent>(); in Create() 36 …auto textPicker = AceType::DynamicCast<PickerTextComponent>(ViewStackProcessor::GetInstance()->Get… in SetDefaultPickerItemHeight() 38 JSViewSetProperty(&PickerTextComponent::SetColumnHeight, value); in SetDefaultPickerItemHeight() 43 JSViewSetProperty(&PickerTextComponent::SetSelected, value); in SetSelected() 55 JSViewSetProperty(&PickerTextComponent::SetRange, textRange); in SetRange() 84 return AceType::MakeRefPtr<PickerTextComponent>(); in CreateObject() 93 auto pickerText = AceType::DynamicCast<PickerTextComponent>(PickerText); in SetTextPickerDialogShow()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/dom/ |
H A D | dom_picker_base.cpp | 525 pickerBase = AceType::MakeRefPtr<PickerTextComponent>(); } }, in CreatePicker() 540 basePickerChild_ = AceType::MakeRefPtr<PickerTextComponent>(); in CreatePicker() 618 AceType::InstanceOf<PickerTextComponent>(basePickerChild_)) { in SetTextSelected() 619 auto picker = AceType::DynamicCast<PickerTextComponent>(basePickerChild_); in SetTextSelected() 692 AceType::InstanceOf<PickerTextComponent>(basePickerChild_)) { in SetRange() 693 auto picker = AceType::DynamicCast<PickerTextComponent>(basePickerChild_); in SetRange() 809 AceType::InstanceOf<PickerTextComponent>(basePickerChild_)) { in SetPrefix() 810 auto picker = AceType::DynamicCast<PickerTextComponent>(basePickerChild_); in SetPrefix() 820 AceType::InstanceOf<PickerTextComponent>(basePickerChild_)) { in SetSuffix() 821 auto picker = AceType::DynamicCast<PickerTextComponent>(basePickerChild_); in SetSuffix()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_textpicker.h | 133 static void ParseText(RefPtr<PickerTextComponent>& component, const JSRef<JSObject>& paramObj); 134 static void AddEvent(RefPtr<PickerTextComponent>& picker, const JSCallbackInfo& info);
|
H A D | js_textpicker.cpp | 1812 void JSTextPickerDialog::AddEvent(RefPtr<PickerTextComponent>& picker, const JSCallbackInfo& info) in AddEvent() 1859 void JSTextPickerDialog::ParseText(RefPtr<PickerTextComponent>& component, const JSRef<JSObject>& p… in ParseText()
|