/**************************************************************************** Copyright (c) 2013 cocos2d-x.org http://www.cocos2d-x.org 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 __UICHECKBOX_H__ #define __UICHECKBOX_H__ #include "../BaseClasses/UIWidget.h" NS_CC_BEGIN namespace ui { typedef enum { CHECKBOX_STATE_EVENT_SELECTED, CHECKBOX_STATE_EVENT_UNSELECTED }CheckBoxEventType; typedef void (CCObject::*SEL_SelectedStateEvent)(CCObject*,CheckBoxEventType); #define checkboxselectedeventselector(_SELECTOR) (SEL_SelectedStateEvent)(&_SELECTOR) /** * @js NA * @lua NA */ class CheckBox : public Widget { DECLARE_CLASS_GUI_INFO public: /** * Default constructor */ CheckBox(); /** * Default destructor */ virtual ~CheckBox(); /** * Allocates and initializes. */ static CheckBox* create(); /** * Load textures for checkbox. * * @param backGround backGround texture. * * @param backGroundSelected backGround selected state texture. * * @param cross cross texture. * * @param frontCrossDisabled cross dark state texture. * * @param texType @see UI_TEX_TYPE_LOCAL */ void loadTextures(const char* backGround,const char* backGroundSelected,const char* cross,const char* backGroundDisabled,const char* frontCrossDisabled,TextureResType texType = UI_TEX_TYPE_LOCAL); /** * Load backGround texture for checkbox. * * @param backGround backGround texture. * * @param texType @see UI_TEX_TYPE_LOCAL */ void loadTextureBackGround(const char* backGround,TextureResType type = UI_TEX_TYPE_LOCAL); /** * Load backGroundSelected texture for checkbox. * * @param backGroundSelected backGround selected state texture. * * @param texType @see UI_TEX_TYPE_LOCAL */ void loadTextureBackGroundSelected(const char* backGroundSelected,TextureResType texType = UI_TEX_TYPE_LOCAL); /** * Load cross texture for checkbox. * * @param cross cross texture. * * @param texType @see UI_TEX_TYPE_LOCAL */ void loadTextureFrontCross(const char* cross,TextureResType texType = UI_TEX_TYPE_LOCAL); /** * Load backGroundDisabled texture for checkbox. * * @param backGroundDisabled backGroundDisabled texture. * * @param texType @see UI_TEX_TYPE_LOCAL */ void loadTextureBackGroundDisabled(const char* backGroundDisabled,TextureResType texType = UI_TEX_TYPE_LOCAL); /** * Load frontCrossDisabled texture for checkbox. * * @param frontCrossDisabled frontCrossDisabled texture. * * @param texType @see UI_TEX_TYPE_LOCAL */ void loadTextureFrontCrossDisabled(const char* frontCrossDisabled,TextureResType texType = UI_TEX_TYPE_LOCAL); /** * Sets selcted state for checkbox. * * @param selected true that checkbox is selected, false otherwise. */ void setSelectedState(bool selected); /** * Gets selcted state of checkbox. * * @return selected true that checkbox is selected, false otherwise. */ bool getSelectedState(); //override "setAnchorPoint" method of widget. virtual void setAnchorPoint(const CCPoint &pt); //add a call back function would called when checkbox is selected or unselected. void addEventListenerCheckBox(CCObject* target,SEL_SelectedStateEvent selector); //override "onTouchEnded" method of widget. virtual void onTouchEnded(CCTouch *touch, CCEvent *unused_event); //override "getContentSize" method of widget. virtual const CCSize& getContentSize() const; //override "getVirtualRenderer" method of widget. virtual CCNode* getVirtualRenderer(); /** * Returns the "class name" of widget. */ virtual std::string getDescription() const; protected: virtual bool init(); virtual void initRenderer(); virtual void onPressStateChangedToNormal(); virtual void onPressStateChangedToPressed(); virtual void onPressStateChangedToDisabled(); void selectedEvent(); void unSelectedEvent(); virtual void onSizeChanged(); virtual void updateTextureColor(); virtual void updateTextureOpacity(); virtual void updateTextureRGBA(); virtual void updateFlippedX(); virtual void updateFlippedY(); void backGroundTextureScaleChangedWithSize(); void backGroundSelectedTextureScaleChangedWithSize(); void frontCrossTextureScaleChangedWithSize(); void backGroundDisabledTextureScaleChangedWithSize(); void frontCrossDisabledTextureScaleChangedWithSize(); virtual Widget* createCloneInstance(); virtual void copySpecialProperties(Widget* model); protected: CCSprite* _backGroundBoxRenderer; CCSprite* _backGroundSelectedBoxRenderer; CCSprite* _frontCrossRenderer; CCSprite* _backGroundBoxDisabledRenderer; CCSprite* _frontCrossDisabledRenderer; bool _isSelected; CCObject* _checkBoxEventListener; SEL_SelectedStateEvent _checkBoxEventSelector; TextureResType _backGroundTexType; TextureResType _backGroundSelectedTexType; TextureResType _frontCrossTexType; TextureResType _backGroundDisabledTexType; TextureResType _frontCrossDisabledTexType; std::string _backGroundFileName; std::string _backGroundSelectedFileName; std::string _frontCrossFileName; std::string _backGroundDisabledFileName; std::string _frontCrossDisabledFileName; }; } NS_CC_END #endif /* defined(__CocoGUI__CheckBox__) */