Home
last modified time | relevance | path

Searched refs:arrowHeight (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/slider/
H A Dslider_tip_modifier.cpp176 auto arrowHeight = static_cast<float>(ARROW_HEIGHT.ConvertToPx()); in PaintVerticalBubble() local
189 path.LineTo(vertex_.GetX() + arrowHeight, vertex_.GetY() - arrowWidth * HALF); in PaintVerticalBubble()
191 … vertex_.GetX() + arrowHeight + circularOffset, vertex_.GetY() - bubbleSize_.Height() * HALF); in PaintVerticalBubble()
206 path.LineTo(vertex_.GetX() - arrowHeight, vertex_.GetY() + arrowWidth * HALF); in PaintVerticalBubble()
208 … vertex_.GetX() - arrowHeight - circularOffset, vertex_.GetY() + bubbleSize_.Height() * HALF); in PaintVerticalBubble()
286 auto arrowHeight = static_cast<float>(ARROW_HEIGHT.ConvertToPx()); in PaintVerticalBubbleSuitableAging() local
298 path.LineTo(vertex_.GetX() + arrowHeight, vertex_.GetY() - arrowWidth * HALF); in PaintVerticalBubbleSuitableAging()
301 … vertex_.GetX() + arrowHeight + circularRadius, vertex_.GetY() - bubbleSize_.Height() * HALF); in PaintVerticalBubbleSuitableAging()
312 path.LineTo(vertex_.GetX() + arrowHeight, vertex_.GetY() + arrowWidth * HALF); in PaintVerticalBubbleSuitableAging()
319 path.LineTo(vertex_.GetX() - arrowHeight, vertex_.GetY() + arrowWidth * HALF); in PaintVerticalBubbleSuitableAging()
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/bubble/
H A Dbubble_paint_method.h108 void SetArrowHeight(const float arrowHeight) in SetArrowHeight() argument
110 arrowHeight_ = arrowHeight; in SetArrowHeight()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/stepper/
H A Dstepper_component.h179 void SetArrowHeight(const Dimension& arrowHeight) in SetArrowHeight() argument
181 arrowHeight_ = arrowHeight; in SetArrowHeight()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/properties/
H A Dpopup_param.h359 void SetArrowHeight(const Dimension& arrowHeight) in SetArrowHeight() argument
361 arrowHeight_ = arrowHeight; in SetArrowHeight()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-universal-attributes-popup.md50 | arrowHeight<sup>11+</sup> | [Dimension](ts-types.md#dimension10) | 否…
103 | arrowHeight<sup>11+</sup> | [Dimension](ts-types.md#dimension10) | 否…
245 该示例为bindPopup通过配置arrowHeight、arrowWidth、radius、shadow、popupColor,实现气泡箭头以及气泡本身的样式。
265 arrowHeight: 20, // 设置气泡箭头高度
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-universal-attributes-popup.md50 | arrowHeight<sup>11+</sup> | [Dimension](ts-types.md#dimension10) | N…
103 | arrowHeight<sup>11+</sup> | [Dimension](ts-types.md#dimension10) | N…
245 This example demonstrates how to use the **bindPopup** API with properties like **arrowHeight**, **…
265 arrowHeight: 20, // Set the height for the popup arrow.
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/calendar/
H A Dcalendar_theme.h107 Dimension arrowHeight; member
427 … theme->cardCalendarTheme_.arrowHeight = pattern->GetAttr<Dimension>("arrow_height", 16.0_vp); in ParseCardCalendarThemePattern()
H A Dcalendar_component.cpp457 Arrow->SetHeight(calendarTheme.arrowHeight); in InitCardButton()
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/bubble/
H A Dbubble_test_ng.cpp1228 Dimension arrowHeight = 20.0_px; variable
1232 popupParam->SetArrowHeight(arrowHeight);
1257 EXPECT_EQ(property->GetArrowHeight().value(), arrowHeight);
1298 Dimension arrowHeight = 20.0_px; variable
1302 popupParam->SetArrowHeight(arrowHeight);
1328 EXPECT_EQ(property->GetArrowHeight().value(), arrowHeight);
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/dialog/source/
H A Ddialog.ets1721 arrowHeight: this.popover?.arrowHeight,
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/dialog/interfaces/
H A Ddialog.js4169 arrowHeight: this.popover?.arrowHeight,
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_view_abstract.cpp1045 CalcDimension arrowHeight; in ParsePopupCommonParam() local
1046 if (JSViewAbstract::ParseJsDimensionVp(arrowHeightVal, arrowHeight)) { in ParsePopupCommonParam()
1047 if (arrowHeight.Value() > 0 && arrowHeight.Unit() != DimensionUnit::PERCENT) { in ParsePopupCommonParam()
1048 popupParam->SetArrowHeight(arrowHeight); in ParsePopupCommonParam()