Home
last modified time | relevance | path

Searched refs:hostContext (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/rich_editor_drag/
H A Drich_editor_drag_pattern.cpp40 auto hostContext = hostNode->GetRenderContext(); in CreateDragNode() local
41 CHECK_NULL_RETURN(hostContext, nullptr); in CreateDragNode()
42 if (hostContext->HasForegroundColor()) { in CreateDragNode()
43 dragContext->UpdateForegroundColor(hostContext->GetForegroundColor().value()); in CreateDragNode()
45 if (hostContext->HasForegroundColorStrategy()) { in CreateDragNode()
46 … dragContext->UpdateForegroundColorStrategy(hostContext->GetForegroundColorStrategy().value()); in CreateDragNode()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_drag/
H A Dtext_drag_pattern.cpp79 auto hostContext = hostNode->GetRenderContext(); in CreateDragNode() local
80 if (hostContext->HasForegroundColor()) { in CreateDragNode()
81 dragContext->UpdateForegroundColor(hostContext->GetForegroundColor().value()); in CreateDragNode()
83 if (hostContext->HasForegroundColorStrategy()) { in CreateDragNode()
84 … dragContext->UpdateForegroundColorStrategy(hostContext->GetForegroundColorStrategy().value()); in CreateDragNode()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/scrollable/
H A Dscrollable_pattern.cpp1750 auto hostContext = host->GetRenderContext(); in DrawSelectedZone() local
1751 CHECK_NULL_VOID(hostContext); in DrawSelectedZone()
1752 hostContext->UpdateMouseSelectWithRect(selectedZone, SELECT_FILL_COLOR, SELECT_STROKE_COLOR); in DrawSelectedZone()