Home
last modified time | relevance | path

Searched refs:ListLayoutManager (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/list/
H A Dlist_layout_manager.cpp32 ListLayoutManager::ListLayoutManager(RenderList& renderList) : renderList_(renderList) {} in ListLayoutManager() function in OHOS::Ace::ListLayoutManager
34 void ListLayoutManager::Update() in Update()
118 void ListLayoutManager::CalculateCachedRange( in CalculateCachedRange()
151 void ListLayoutManager::RefreshLayout() in RefreshLayout()
201 void ListLayoutManager::NotifyNeedRefresh() in NotifyNeedRefresh()
214 bool ListLayoutManager::CheckNeedAnimation() in CheckNeedAnimation()
258 void ListLayoutManager::AnimationForItemUpdate() in AnimationForItemUpdate()
351 double ListLayoutManager::FlushChainAnimation() in FlushChainAnimation()
400 void ListLayoutManager::PerformLayout() in PerformLayout()
489 void ListLayoutManager::ShowItemFocusAnimation() in ShowItemFocusAnimation()
[all …]
H A Dlist_layout_manager.h31 class ListLayoutManager : public LayoutManager {
32 DECLARE_ACE_TYPE(ListLayoutManager, LayoutManager);
35 explicit ListLayoutManager(RenderList& renderList);
37 ~ListLayoutManager() override = default;
H A Dlist_watch_layout_manager.h28 class ListWatchLayoutManager : public ListLayoutManager {
29 DECLARE_ACE_TYPE(ListWatchLayoutManager, ListLayoutManager);
H A Dlist_watch_layout_manager.cpp29 : ListLayoutManager(renderList) {} in ListWatchLayoutManager()
H A Drender_list.cpp82 layoutManager_ = AceType::MakeRefPtr<ListLayoutManager>(*this); in Update()