Home
last modified time | relevance | path

Searched refs:PickerDateComponent (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/picker/
H A Dpicker_date_component.cpp21 const PickerDate PickerDateComponent::limitStartDate_(1900, 1, 31);
22 const PickerDate PickerDateComponent::limitEndDate_(2100, 12, 31);
24 PickerDateComponent::PickerDateComponent() in PickerDateComponent() function in OHOS::Ace::PickerDateComponent
53 void PickerDateComponent::OnTitleBuilding() in OnTitleBuilding()
76 void PickerDateComponent::OnColumnsBuilding() in OnColumnsBuilding()
87 void PickerDateComponent::OnSelectedSaving() in OnSelectedSaving()
126 void PickerDateComponent::OnAnimationPlaying() in OnAnimationPlaying()
137 PickerDate PickerDateComponent::GetCurrentDate() const in GetCurrentDate()
382 void PickerDateComponent::HandleAddLunarDayChange(uint32_t index) in HandleAddLunarDayChange()
701 void PickerDateComponent::AdjustSolarDate(PickerDate& date) const in AdjustSolarDate()
[all …]
H A Dpicker_date_component.h24 class ACE_EXPORT PickerDateComponent : public PickerBaseComponent {
25 DECLARE_ACE_TYPE(PickerDateComponent, PickerBaseComponent);
28 PickerDateComponent();
30 ~PickerDateComponent() override = default;
H A Dpicker_datetime_component.h83 RefPtr<PickerDateComponent> datePicker_;
H A Dpicker_datetime_component.cpp89 datePicker_ = AceType::MakeRefPtr<PickerDateComponent>(); in InitDatePicker()
H A Drender_picker_base.cpp104 auto datePicker = AceType::DynamicCast<PickerDateComponent>(component); in Update()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dpicker_model_impl.cpp26 auto datePicker = AceType::MakeRefPtr<PickerDateComponent>(); in CreateDatePicker()
48 JSViewSetProperty(&PickerDateComponent::SetStartDate, value); in SetStartDate()
53 JSViewSetProperty(&PickerDateComponent::SetEndDate, value); in SetEndDate()
58 JSViewSetProperty(&PickerDateComponent::SetSelectedDate, value); in SetSelectedDate()
68 JSViewSetProperty(&PickerDateComponent::SetShowLunar, lunar); in SetShowLunar()
115 auto datePicker = AceType::MakeRefPtr<PickerDateComponent>(); in SetDatePickerDialogShow()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H A Ddom_picker_base.cpp489 AceType::InstanceOf<PickerDateComponent>(basePickerChild_)) { in CompositeComponents()
490 auto picker = AceType::DynamicCast<PickerDateComponent>(basePickerChild_); in CompositeComponents()
522 pickerBase = AceType::MakeRefPtr<PickerDateComponent>(); } }, in CreatePicker()
581 AceType::InstanceOf<PickerDateComponent>(basePickerChild_)) { in SetStart()
582 auto picker = AceType::DynamicCast<PickerDateComponent>(basePickerChild_); in SetStart()
597 AceType::InstanceOf<PickerDateComponent>(basePickerChild_)) { in SetEnd()
598 auto picker = AceType::DynamicCast<PickerDateComponent>(basePickerChild_); in SetEnd()
643 AceType::InstanceOf<PickerDateComponent>(basePickerChild_)) { in SetDateTimeSelected()
644 auto picker = AceType::DynamicCast<PickerDateComponent>(basePickerChild_); in SetDateTimeSelected()
763 AceType::InstanceOf<PickerDateComponent>(basePickerChild_)) { in SetShowLunar()
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_datepicker.cpp1218 auto datePicker = AceType::MakeRefPtr<PickerDateComponent>(); in CreateDatePicker()