mirror of
https://gitee.com/openharmony/interface_sdk_c
synced 2024-11-27 00:41:01 +00:00
commit
6c369e6bd5
@ -1055,6 +1055,14 @@
|
||||
"first_introduced": "12",
|
||||
"name": "OH_ArkUI_SwiperIndicator_GetSelectedColor"
|
||||
},
|
||||
{
|
||||
"first_introduced": "12",
|
||||
"name": "OH_ArkUI_SwiperIndicator_SetMaxDisplayCount"
|
||||
},
|
||||
{
|
||||
"first_introduced": "12",
|
||||
"name": "OH_ArkUI_SwiperIndicator_GetMaxDisplayCount"
|
||||
},
|
||||
{
|
||||
"first_introduced": "12",
|
||||
"name": "OH_ArkUI_DrawableDescriptor_CreateFromPixelMap"
|
||||
|
@ -4816,6 +4816,17 @@ typedef enum {
|
||||
*/
|
||||
NODE_SWIPER_SWIPE_TO_INDEX,
|
||||
|
||||
/**
|
||||
* @brief Set to disable component navigation point interaction function。
|
||||
*
|
||||
* Property setting method parameter {@link ArkUI-AttributeItem} format: \n
|
||||
* .value[0].i32:Set to disable the interaction function of component navigation points. When set to true, it
|
||||
* indicates that the navigation points are interactive. The default value is true. \n
|
||||
* The return value of the attribute acquisition method is in the format of {@ link ArkUI-AttributeItem}: \n
|
||||
* .value[0].i32:Set to disable component navigation point interaction. \n
|
||||
*/
|
||||
NODE_SWIPER_INDICATOR_INTERACTIVE,
|
||||
|
||||
/**
|
||||
* @brief: Set the delineation component of the ListItem, supporting property settings, property resets, and
|
||||
* property acquisition interfaces.
|
||||
|
@ -2632,6 +2632,28 @@ void OH_ArkUI_SwiperIndicator_SetSelectedColor(ArkUI_SwiperIndicator* indicator,
|
||||
*/
|
||||
uint32_t OH_ArkUI_SwiperIndicator_GetSelectedColor(ArkUI_SwiperIndicator* indicator);
|
||||
|
||||
/**
|
||||
* @brief Sets the number of maxDisplayCount for the dot navigation indicator.
|
||||
*
|
||||
* @param indicator Indicates the pointer to the indicator.
|
||||
* @param maxDisplayCount the maxDisplayCount of the navigation dot, span is 6-9.
|
||||
* @return {@link ARKUI_ERROR_CODE_NO_ERROR} Success.
|
||||
* {@link ARKUI_ERROR_CODE_PARAM_INVALID} indicator is null or maxDisplayCount less then 6 or
|
||||
* maxDisplayCount more then 9
|
||||
* @since 12
|
||||
*/
|
||||
int32_t OH_ArkUI_SwiperIndicator_SetMaxDisplayCount(ArkUI_SwiperIndicator* indicator, int32_t maxDisplayCount);
|
||||
|
||||
/**
|
||||
* @brief Obtains the number of maxDisplayCount for the dot navigation indicator.
|
||||
*
|
||||
* @param indicator Indicates the pointer to the indicator.
|
||||
* @return Returns the number of the maxDisplayCount, span is 6-9.
|
||||
* 0 - indicator is null
|
||||
* @since 12
|
||||
*/
|
||||
int32_t OH_ArkUI_SwiperIndicator_GetMaxDisplayCount(ArkUI_SwiperIndicator* indicator);
|
||||
|
||||
/**
|
||||
* @brief Create auxiliary line information in the RelativeContaine container.
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user