2019-11-23 20:27:39 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
|
|
|
|
2022-07-09 22:23:34 +08:00
|
|
|
https://axis-project.github.io/
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __UISLIDER_H__
|
|
|
|
#define __UISLIDER_H__
|
|
|
|
|
|
|
|
#include "ui/UIWidget.h"
|
|
|
|
#include "ui/GUIExport.h"
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_BEGIN
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup ui
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
class Sprite;
|
2022-07-15 19:17:01 +08:00
|
|
|
struct AX_DLL ResourceData;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
namespace ui
|
|
|
|
{
|
|
|
|
class Scale9Sprite;
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
SLIDER_PERCENTCHANGED
|
2021-12-25 10:04:45 +08:00
|
|
|
} SliderEventType;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
typedef void (Ref::*SEL_SlidPercentChangedEvent)(Ref*, SliderEventType);
|
2019-11-23 20:27:39 +08:00
|
|
|
#define sliderpercentchangedselector(_SELECTOR) (SEL_SlidPercentChangedEvent)(&_SELECTOR)
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
/**
|
2019-11-23 20:27:39 +08:00
|
|
|
* @brief UI Slider widget.
|
|
|
|
*/
|
2022-07-15 19:17:01 +08:00
|
|
|
class AX_GUI_DLL Slider : public Widget
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
DECLARE_CLASS_GUI_INFO
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
public:
|
|
|
|
/** EventType Slider event type.
|
|
|
|
*/
|
|
|
|
enum class EventType
|
|
|
|
{
|
|
|
|
ON_PERCENTAGE_CHANGED,
|
|
|
|
//@since v3.7
|
|
|
|
ON_SLIDEBALL_DOWN,
|
|
|
|
ON_SLIDEBALL_UP,
|
|
|
|
ON_SLIDEBALL_CANCEL
|
|
|
|
};
|
2021-12-25 10:04:45 +08:00
|
|
|
typedef std::function<void(Ref*, EventType)> ccSliderCallback;
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Default constructor.
|
|
|
|
* @js ctor
|
|
|
|
* @lua new
|
|
|
|
*/
|
|
|
|
Slider();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Default destructor.
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
virtual ~Slider();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Create a slider widget.
|
|
|
|
*
|
|
|
|
* @return An autoreleased Slider object.
|
|
|
|
*/
|
|
|
|
static Slider* create();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Create a slider widget with bar texture, ball texture and texture resource type.
|
|
|
|
*
|
|
|
|
* @param barTextureName Bar texture file name.
|
|
|
|
* @param normalBallTextureName Ball texture file name.
|
|
|
|
* @param resType Texture resource type.
|
|
|
|
* @return An autoreleased Slider object.
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
static Slider* create(std::string_view barTextureName,
|
|
|
|
std::string_view normalBallTextureName,
|
2019-11-23 20:27:39 +08:00
|
|
|
TextureResType resType = TextureResType::LOCAL);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Load texture for slider bar.
|
|
|
|
*
|
|
|
|
* @param fileName File name of texture.
|
|
|
|
* @param resType @see TextureResType .
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
void loadBarTexture(std::string_view fileName, TextureResType resType = TextureResType::LOCAL);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Sets if slider is using scale9 renderer.
|
|
|
|
* @param able True that using scale9 renderer, false otherwise.
|
|
|
|
*/
|
|
|
|
void setScale9Enabled(bool able);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Gets If slider is using scale9 renderer.
|
|
|
|
* @return True that using scale9 renderer, false otherwise.
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
bool isScale9Enabled() const;
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Sets capinsets for slider, if slider is using scale9 renderer.
|
|
|
|
* @param capInsets Capinsets for slider.
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
void setCapInsets(const Rect& capInsets);
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Sets capinsets for bar slider, if slider is using scale9 renderer.
|
|
|
|
* @param capInsets Capinsets for bar slider.
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
void setCapInsetsBarRenderer(const Rect& capInsets);
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Gets capinsets for bar slider, if slider is using scale9 renderer.
|
|
|
|
* @return capInsets Capinsets for bar slider.
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
const Rect& getCapInsetsBarRenderer() const;
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Sets capinsets for progress bar slider, if slider is using scale9 renderer.
|
|
|
|
* @param capInsets Capinsets for progress bar slider.
|
|
|
|
* @js NA
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
void setCapInsetProgressBarRenderer(const Rect& capInsets);
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Gets capinsets for progress bar slider, if slider is using scale9 renderer.
|
|
|
|
* @return Capinsets for progress bar slider.
|
|
|
|
* @js NA
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
const Rect& getCapInsetsProgressBarRenderer() const;
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Load textures for slider ball.
|
|
|
|
*
|
|
|
|
* @param normal Normal state texture.
|
|
|
|
* @param pressed Pressed state texture.
|
|
|
|
* @param disabled Disabled state texture.
|
|
|
|
* @param texType @see TextureResType .
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
void loadSlidBallTextures(std::string_view normal,
|
|
|
|
std::string_view pressed = "",
|
|
|
|
std::string_view disabled = "",
|
|
|
|
TextureResType texType = TextureResType::LOCAL);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Load normal state texture for slider ball.
|
|
|
|
*
|
|
|
|
* @param normal Normal state texture.
|
|
|
|
* @param resType @see TextureResType .
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
void loadSlidBallTextureNormal(std::string_view normal, TextureResType resType = TextureResType::LOCAL);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Load pressed state texture for slider ball.
|
|
|
|
*
|
|
|
|
* @param pressed Pressed state texture.
|
|
|
|
* @param resType @see TextureResType .
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
void loadSlidBallTexturePressed(std::string_view pressed, TextureResType resType = TextureResType::LOCAL);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Load disabled state texture for slider ball.
|
|
|
|
*
|
|
|
|
* @param disabled Disabled state texture.
|
|
|
|
* @param resType @see TextureResType .
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
void loadSlidBallTextureDisabled(std::string_view disabled, TextureResType resType = TextureResType::LOCAL);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Load dark state texture for slider progress bar.
|
|
|
|
*
|
|
|
|
* @param fileName File path of texture.
|
|
|
|
* @param resType @see TextureResType .
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
void loadProgressBarTexture(std::string_view fileName, TextureResType resType = TextureResType::LOCAL);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Changes the progress direction of slider.
|
|
|
|
* @param percent Percent value from 1 to 100.
|
|
|
|
*/
|
|
|
|
void setPercent(int percent);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Updates the visual elements of the slider.
|
|
|
|
*/
|
|
|
|
void updateVisualSlider();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Gets the progress direction of slider.
|
|
|
|
*
|
|
|
|
* @return percent Percent value from 1 to 100.
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
int getPercent() const;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a large value could give more control to the precision.
|
|
|
|
* @since v3.7
|
|
|
|
* @param percent The max percent of Slider.
|
|
|
|
*/
|
|
|
|
void setMaxPercent(int percent);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Query the maximum percent of Slider. The default value is 100.
|
|
|
|
* @since v3.7
|
|
|
|
* @return The maximum percent of the Slider.
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
int getMaxPercent() const;
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Add call back function called when slider's percent has changed to slider.
|
|
|
|
*
|
|
|
|
* @param callback An given call back function called when slider's percent has changed to slider.
|
|
|
|
*/
|
|
|
|
void addEventListener(const ccSliderCallback& callback);
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
virtual bool onTouchBegan(Touch* touch, Event* unusedEvent) override;
|
|
|
|
virtual void onTouchMoved(Touch* touch, Event* unusedEvent) override;
|
|
|
|
virtual void onTouchEnded(Touch* touch, Event* unusedEvent) override;
|
|
|
|
virtual void onTouchCancelled(Touch* touch, Event* unusedEvent) override;
|
|
|
|
|
|
|
|
// override "getVirtualRendererSize" method of widget.
|
2021-10-23 23:27:14 +08:00
|
|
|
virtual Vec2 getVirtualRendererSize() const override;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
// override "getVirtualRenderer" method of widget.
|
2019-11-23 20:27:39 +08:00
|
|
|
virtual Node* getVirtualRenderer() override;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
// override "ignoreContentAdaptWithSize" method of widget.
|
2019-11-23 20:27:39 +08:00
|
|
|
virtual void ignoreContentAdaptWithSize(bool ignore) override;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
// override the widget's hitTest function to perform its own
|
|
|
|
virtual bool hitTest(const Vec2& pt, const Camera* camera, Vec3* p) const override;
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Returns the "class name" of widget.
|
|
|
|
*/
|
|
|
|
virtual std::string getDescription() const override;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** When user pressed the button, the button will zoom to a scale.
|
|
|
|
* The final scale of the button equals (button original scale + _zoomScale)
|
|
|
|
* @since v3.3
|
|
|
|
*/
|
|
|
|
void setZoomScale(float scale);
|
|
|
|
/**
|
|
|
|
* @brief Return a zoom scale
|
|
|
|
* @since v3.3
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
float getZoomScale() const;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
Sprite* getSlidBallNormalRenderer() const;
|
|
|
|
Sprite* getSlidBallPressedRenderer() const;
|
|
|
|
Sprite* getSlidBallDisabledRenderer() const;
|
|
|
|
Node* getSlidBallRenderer() const;
|
|
|
|
|
|
|
|
ResourceData getBackFile();
|
|
|
|
ResourceData getProgressBarFile();
|
|
|
|
ResourceData getBallNormalFile();
|
|
|
|
ResourceData getBallPressedFile();
|
|
|
|
ResourceData getBallDisabledFile();
|
|
|
|
|
2022-03-18 21:46:07 +08:00
|
|
|
virtual bool init() override;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void initRenderer() override;
|
2021-12-25 10:04:45 +08:00
|
|
|
float getPercentWithBallPos(const Vec2& pt) const;
|
2019-11-23 20:27:39 +08:00
|
|
|
void percentChangedEvent(EventType event);
|
|
|
|
virtual void onPressStateChangedToNormal() override;
|
|
|
|
virtual void onPressStateChangedToPressed() override;
|
|
|
|
virtual void onPressStateChangedToDisabled() override;
|
|
|
|
virtual void onSizeChanged() override;
|
|
|
|
|
|
|
|
void setupBarTexture();
|
|
|
|
void loadBarTexture(SpriteFrame* spriteframe);
|
|
|
|
void setupProgressBarTexture();
|
|
|
|
void loadProgressBarTexture(SpriteFrame* spriteframe);
|
|
|
|
void loadSlidBallTextureNormal(SpriteFrame* spriteframe);
|
|
|
|
void loadSlidBallTexturePressed(SpriteFrame* spriteframe);
|
|
|
|
void loadSlidBallTextureDisabled(SpriteFrame* spriteframe);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
void barRendererScaleChangedWithSize();
|
|
|
|
void progressBarRendererScaleChangedWithSize();
|
|
|
|
virtual Widget* createCloneInstance() override;
|
|
|
|
virtual void copySpecialProperties(Widget* model) override;
|
|
|
|
virtual void adaptRenderers() override;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
protected:
|
2021-12-25 10:04:45 +08:00
|
|
|
Scale9Sprite* _barRenderer;
|
2019-11-23 20:27:39 +08:00
|
|
|
Scale9Sprite* _progressBarRenderer;
|
2021-10-23 23:27:14 +08:00
|
|
|
Vec2 _barTextureSize;
|
2019-11-23 20:27:39 +08:00
|
|
|
Rect _originalBarRect;
|
2021-10-23 23:27:14 +08:00
|
|
|
Vec2 _progressBarTextureSize;
|
2019-11-23 20:27:39 +08:00
|
|
|
Rect _originalProgressBarRect;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
Sprite* _slidBallNormalRenderer;
|
|
|
|
Sprite* _slidBallPressedRenderer;
|
|
|
|
Sprite* _slidBallDisabledRenderer;
|
|
|
|
Node* _slidBallRenderer;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
float _barLength;
|
|
|
|
int _percent;
|
|
|
|
int _maxPercent;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
bool _scale9Enabled;
|
|
|
|
bool _prevIgnoreSize;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
float _zoomScale;
|
|
|
|
float _sliderBallNormalTextureScaleX;
|
|
|
|
float _sliderBallNormalTextureScaleY;
|
|
|
|
|
|
|
|
bool _isSliderBallPressedTextureLoaded;
|
|
|
|
bool _isSliderBallDisabledTexturedLoaded;
|
|
|
|
|
|
|
|
Rect _capInsetsBarRenderer;
|
|
|
|
Rect _capInsetsProgressBarRenderer;
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
Ref* _sliderEventListener;
|
|
|
|
|
|
|
|
ccSliderCallback _eventCallback;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
TextureResType _barTexType;
|
|
|
|
TextureResType _progressBarTexType;
|
|
|
|
TextureResType _ballNTexType;
|
|
|
|
TextureResType _ballPTexType;
|
|
|
|
TextureResType _ballDTexType;
|
|
|
|
bool _barRendererAdaptDirty;
|
|
|
|
bool _progressBarRendererDirty;
|
|
|
|
|
|
|
|
std::string _textureFile;
|
|
|
|
std::string _progressBarTextureFile;
|
|
|
|
std::string _slidBallNormalTextureFile;
|
|
|
|
std::string _slidBallPressedTextureFile;
|
|
|
|
std::string _slidBallDisabledTextureFile;
|
|
|
|
};
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
} // namespace ui
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
// end of ui group
|
|
|
|
/// @}
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_END
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
#endif /* defined(__CocoGUI__Slider__) */
|