/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/slider/ |
H A D | slider_tip_modifier.cpp | 176 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 D | bubble_paint_method.h | 108 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 D | stepper_component.h | 179 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 D | popup_param.h | 359 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 D | ts-universal-attributes-popup.md | 50 | 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 D | ts-universal-attributes-popup.md | 50 | 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 D | calendar_theme.h | 107 Dimension arrowHeight; member 427 … theme->cardCalendarTheme_.arrowHeight = pattern->GetAttr<Dimension>("arrow_height", 16.0_vp); in ParseCardCalendarThemePattern()
|
H A D | calendar_component.cpp | 457 Arrow->SetHeight(calendarTheme.arrowHeight); in InitCardButton()
|
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/bubble/ |
H A D | bubble_test_ng.cpp | 1228 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 D | dialog.ets | 1721 arrowHeight: this.popover?.arrowHeight,
|
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/dialog/interfaces/ |
H A D | dialog.js | 4169 arrowHeight: this.popover?.arrowHeight,
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_view_abstract.cpp | 1045 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()
|