加入收藏
举报
02-14 20:02
#0
文件名称:
OHOS-UISlider.md
所在目录:
Openharmony v1.0 / docs / api / api-SmartVision-Devices
文件大小:
87.92 KB
下载地址:
fenwii/OpenHarmony
   
免责声明:本网站仅提供指向 GitHub 上的文件的链接,所有文件的版权归原作者所有,本网站不对文件内容的合法性、准确性或安全性承担任何责任。
文本预览:
# OHOS::UISlider
## **Overview**
**Related Modules:**
[Graphic](Graphic.md)
**Description:**
Represents a slider.
Users can drag or click the knob to adjust the progress of an event.
**Since:**
1.0
**Version:**
1.0
## **Summary**
## Data Structures









Data Structure Name


Description


UISliderEventListener


Represents the listener for a slider change.



## Public Member Functions












































































































































































































































































































































































































Public Member Function Name


Description


UISlider ()


 


A constructor used to create a UISlider instance.


~UISlider ()


virtual 


A destructor used to delete the UISlider instance.


GetViewType () const override


UIViewType 


Obtains the view type.


SetKnobWidth (int16_t width)


void 


Sets the width for this knob.


GetKnobWidth ()


int16_t 


Obtains the knob width.


SetImage (const ImageInfo *backgroundImage, const ImageInfo *foregroundImage, const ImageInfo *knobImage)


void 


Sets the images as pixel maps for this slider, including the background, foreground, and knob images.


SetImage (const char *backgroundImage, const char *foregroundImage, const char *knobImage)


void 


Sets the images for this slider, including the background, foreground, and knob images.


SetSliderColor (const ColorType backgroundColor, const ColorType foregroundColor, const ColorType knobColor)


void 


Sets the colors for this slider, including the background, foreground, and knob colors.


SetSliderRadius (int16_t backgroundRadius, int16_t foregroundRadius, int16_t knobRadius)


void 


Sets the corner radiuses for this slider, including the background, foreground, and knob corner radiuses.


SetKnobStyle (const Style &style)


void 


Sets the knob style.


SetKnobStyle (uint8_t key, int64_t value)


void 


Sets a knob style.


GetKnobStyle () const


const Style


Obtains the knob style.


GetKnobStyle (uint8_t key) const


int64_t 


Obtains the value of a knob style.


OnClickEvent (const ClickEvent &event) override


void 


Called when the view is clicked.


OnDragEvent (const DragEvent &event) override


bool 


Called when the view is being dragged.


OnDragEndEvent (const DragEvent &event) override


bool 


Called when the view stops dragging.


OnPreDraw (const Rect &invalidatedArea) override


bool 


Called before a view is drawn. This function is used to check whether the parent view of this view needs to be redrawn so as to optimize the drawing process.


OnDraw (const Rect &invalidatedArea) override


void 


Called when a view is drawn.


SetSliderEventListener (UISliderEventListener *listener)


void 


Sets the listener for a slider change.


UIBoxProgress ()


 


A constructor used to create a UIBoxProgress instance.


~UIBoxProgress ()


virtual 


A destructor used to delete the UIBoxProgress instance.


SetWidth (int16_t width) override


void 


Sets the width for the view holding this progress bar.


SetHeight (int16_t height) override


void 


Sets the height for this view.


SetDirection (const Direction &direction)


void 


Sets the direction for this progress bar.


GetDirection () const


Direction 


Obtains the direction of this progress bar.


SetValidWidth (int16_t width)


void 


Sets the actual width for this progress bar.


GetValidWidth () const


int16_t 


Obtains the actual width of this progress bar.


SetValidHeight (int16_t height)


void 


Sets the actual height for this progress bar.


GetValidHeight () const


int16_t 


Obtains the actual height of this progress bar.


UIAbstractProgress ()


 


A constructor used to create a UIAbstractProgress instance.


~UIAbstractProgress ()


virtual 


A destructor used to delete the UIAbstractProgress instance.


EnableBackground (bool enable)


void 


Sets whether the background of the progress bar is visible.


SetValue (int16_t value)


void 


Sets the current value for this progress bar.


GetValue () const


int16_t 


Obtains the current value of this progress bar.


SetRange (int16_t rangeMax, int16_t rangeMin)


void 


Sets the range for this progress bar.


GetRangeMin () const


int16_t 


Obtains the minimum value of this progress bar.


GetRangeMax () const


int16_t 


Obtains the maximum value of this progress bar.


SetImage (const char *foregroundImage, const char *backgroundImage=nullptr)


void 


Sets the image for this progress bar.


SetImage (const ImageInfo *foregroundImage, const ImageInfo *backgroundImage=nullptr)


void 


Sets the image as a pixel map for this progress bar.


SetStep (uint16_t step)


void 


Sets the step for this progress bar.


GetStep () const


uint16_t 


Obtains the current step of this progress bar.


SetBackgroundStyle (const Style &style)


void 


Sets the background style for this progress bar.


SetBackgroundStyle (uint8_t key, int64_t value)


void 


Sets a background style for this progress bar.


GetBackgroundStyle () const


const Style


Obtains the background style of this progress bar.


GetBackgroundStyle (uint8_t key) const


int64_t 


Obtains the value of a background style of this progress bar.


SetForegroundStyle (const Style &style)


void 


Sets the foreground style for this progress bar.


SetForegroundStyle (uint8_t key, int64_t value)


void 


Sets a foreground style for this progress bar.


GetForegroundStyle () const


const Style


Obtains the foreground style of this progress bar.


GetForegroundStyle (uint8_t key) const


int64_t 


Obtains the value of a foreground style of this progress bar.


SetCapType (CapType cap)


void 


Sets the type of caps on the background and foreground of the progress bar.


UIView ()


 


A default constructor used to create an UIView instance.


UIView (const char *id)


 


A constructor used to create an UIView instance.


~UIView ()


virtual 


A destructor used to delete the UIView instance.


OnPostDraw (const Rect &invalidatedArea)


virtual void 


Called after a view is drawn.


ReMeasure ()


virtual void 


Remeasures the view size.


Invalidate ()


void 


Refreshes the invalidated area of the view.


InvalidateRect (const Rect &invalidatedArea)


void 


Refreshes a view in a specified invalidated area.


OnLongPressEvent (const LongPressEvent &event)


virtual bool 


Called when the view is long pressed.


OnDragStartEvent (const DragEvent &event)


virtual bool 


Called when the view starts to drag.


OnPressEvent (const PressEvent &event)


virtual void 


Called when the view is pressed.


OnReleaseEvent (const ReleaseEvent &event)


virtual void 


Called when the view is released.


OnCancelEvent (const CancelEvent &event)


virtual void 


Called when a click event on the view is canceled.


SetOnDragListener (OnDragListener *onDragListener)


void 


Sets a drag event listener for the view.


GetOnDragListener ()


OnDragListener *& 


Obtains the drag event listener for the view.


SetOnClickListener (OnClickListener *onClickListener)


void 


Sets a click event listener for the view.


GetOnClickListener ()


OnClickListener *& 


Obtains the click event listener for the view.


SetOnLongPressListener (OnLongPressListener *onLongPressListener)


void 


Sets a long-press event listener for the view.


GetOnLongPressListener ()


OnLongPressListener *& 


Obtains the long-press event listener for the view.


SetOnTouchListener (OnTouchListener *onTouchListener)


void 


Sets a touch event listener for the view.


GetTouchListener ()


OnTouchListener *& 


Obtains the touch event listener for the view.


GetTargetView (const Point &point, UIView **last)


virtual void 


Obtains the top-level view based on specified coordinates.


SetParent (UIView *parent)


void 


Sets the parent view for the view.


GetParent () const


UIView


Obtains the parent view of the view.


SetNextSibling (UIView *sibling)


void 


Sets the next sibling view for the view.


GetNextSibling () const


UIView


Obtains the next sibling view of the view.


SetVisible (bool visible)


virtual void 


Sets whether the view is visible.


IsVisible () const


bool 


Checks whether the view is visible.


SetTouchable (bool touch)


void 


Sets whether the view is touchable.


IsTouchable () const


bool 


Checks whether the view is touchable.


SetDraggable (bool draggable)


void 


Sets whether the view is draggable.


IsDraggable () const


bool 


Checks whether the view is draggable.


SetDragParentInstead (bool dragParentInstead)


void 


Sets whether to transfer the drag event to the parent view for processing when the view is being dragged.


IsDragParentInstead () const


bool 


Obtains whether the view transfers a drag event to the parent view for processing.


GetRect () const


Rect 


Obtains the absolute rectangle area of the view. When the view has deformation such as rotation, the rectangle area is the intersection set of the absolute rectangle area and deformation matrix.


GetVisibleRect () const


Rect 


Obtains the visible absolute rectangle area of the view.


GetMaskedRect () const


Rect 


Obtains the valid absolute rectangle area of the view. The valid area refers to the area where the view can be displayed. Generally, the valid area is the same as the visible view area, but they may be different in the grid layout.


GetOrigRect () const


Rect 


Obtains the absolute rectangle area of the view.


GetContentRect ()


virtual Rect 


Obtains the content of the absolute rectangle area of the view. This area excludes padding.


GetRelativeRect () const


Rect 


Obtains the rectangular area of the view relative to the parent view, that is, the rectangular area relative to the coordinates of the parent view.


ResizeVisibleArea (int16_t x, int16_t y, int16_t width, int16_t height)


void 


Adjusts the size of the visible area. This operation may affect the final display size.


GetWidth ()


virtual int16_t 


Obtains the width for the view.


GetHeight ()


virtual int16_t 


Obtains the height for the view.


Resize (int16_t width, int16_t height)


virtual void 


Adjusts the size of the view.


SetX (int16_t x)


virtual void 


Sets the x-coordinate for the view.


GetX () const


int16_t 


Obtains the x-coordinate for the view.


SetY (int16_t y)


virtual void 


Sets the y-coordinate for the view.


GetY () const


int16_t 


Obtains the y-coordinate for the view.


SetPosition (int16_t x, int16_t y)


virtual void 


Sets the position for the view.


SetPosition (int16_t x, int16_t y, int16_t width, int16_t height)


virtual void 


Adjusts the position and size of the view.


IsViewGroup () const


bool 


Checks whether the view is a container view.


SetIntercept (bool isIntercept)


void 


Sets whether to intercept the drag event. If intercepted, the view does not transfer the drag event to the parent view after local processing.


SetTransformMap (const TransformMap &transMap)


void 


Sets the affine transformation matrix.


GetTransformMap ()


TransformMap


Obtains an affine transformation matrix.


GetChildById (const char *id) const


virtual UIView


Obtains the child view of a specified ID.


SetViewId (const char *id)


void 


Sets the view ID.


GetViewId () const


const char * 


Obtains the view ID.


SetViewIndex (int16_t index)


void 


Sets the view index.


GetViewIndex () const


int16_t 


Obtains the view index.


LayoutChildren (bool neeInvalidate=false)


virtual void 


Lays out all child views according to the preset arrangement mode.


LayoutCenterOfParent (int16_t xOffSet=0, int16_t yOffset=0)


void 


Lays out the view in the center of the parent view.


LayoutLeftOfParent (int16_t offset=0)


void 


Lays out the view on the left of the parent view.


LayoutRightOfParent (int16_t offset=0)


void 


Lays out the view on the right of the parent view.


LayoutTopOfParent (int16_t offset=0)


void 


Lays out the view on the top of the parent view.


LayoutBottomOfParent (int16_t offset=0)


void 


Lays out the view on the bottom of the parent view.


AlignLeftToSibling (const char *id, int16_t offset=0)


void 


Aligns the view with the left of a sibling view.


AlignRightToSibling (const char *id, int16_t offset=0)


void 


Aligns the view with the right of a sibling view.


AlignTopToSibling (const char *id, int16_t offset=0)


void 


Aligns the view with the top of a sibling view.


AlignBottomToSibling (const char *id, int16_t offset=0)


void 


Aligns the view with the bottom of a sibling view.


AlignHorCenterToSibling (const char *id, int16_t offset=0)


void 


Aligns the view with the center of a sibling view in the x-axis.


AlignVerCenterToSibling (const char *id, int16_t offset=0)


void 


Aligns the view with the center of a sibling view in the y-axis.


LayoutLeftToSibling (const char *id, int16_t offset=0)


void 


Lays out the view on the left of a sibling view.


LayoutRightToSibling (const char *id, int16_t offset=0)


void 


Lays out the view on the right of a sibling view.


LayoutTopToSibling (const char *id, int16_t offset=0)


void 


Lays out the view on the above of a sibling view.


LayoutBottomToSibling (const char *id, int16_t offset=0)


void 


Lays out the view on the below of a sibling view.


SetStyle (Style &style)


virtual void 


Sets the view style.


SetStyle (uint8_t key, int64_t value)


virtual void 


Sets a style.


GetStyle (uint8_t key) const


virtual int64_t 


Obtains the value of a style.


GetStyleConst () const


const Style


Obtains the view style. This function applies to scenarios where the style does not need to be modified, which saves memory.


operator new (size_t size)


void * 


Overrides the new function.


operator delete (void *p)


void 


Overrides the delete function.



## Additional Inherited Members









Additional Inherited Member Name


Description


Direction : uint8_t { Direction::DIR_LEFT_TO_RIGHT, Direction::DIR_RIGHT_TO_LEFT, Direction::DIR_TOP_TO_BOTTOM, Direction::DIR_BOTTOM_TO_TOP }


Enumerates the directions of the progress bar.


点赞 回复
回帖
支持markdown部分语法 ?