mirror of https://github.com/axmolengine/axmol.git
133 lines
4.0 KiB
C
133 lines
4.0 KiB
C
![]() |
/****************************************************************************
|
||
|
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 __UIIMAGEVIEW_H__
|
||
|
#define __UIIMAGEVIEW_H__
|
||
|
|
||
|
#include "../BaseClasses/UIWidget.h"
|
||
|
|
||
|
NS_CC_EXT_BEGIN
|
||
|
|
||
|
class UIImageView : public UIWidget
|
||
|
{
|
||
|
public:
|
||
|
/**
|
||
|
* Default constructor
|
||
|
*/
|
||
|
UIImageView();
|
||
|
|
||
|
/**
|
||
|
* Default destructor
|
||
|
*/
|
||
|
virtual ~UIImageView();
|
||
|
|
||
|
/**
|
||
|
* Allocates and initializes.
|
||
|
*/
|
||
|
static UIImageView* create();
|
||
|
|
||
|
/**
|
||
|
* Load texture for imageview.
|
||
|
*
|
||
|
* @param fileName file name of texture.
|
||
|
*
|
||
|
* @param texType @see UI_TEX_TYPE_LOCAL
|
||
|
*/
|
||
|
void loadTexture(const char* fileName,TextureResType texType = UI_TEX_TYPE_LOCAL);
|
||
|
|
||
|
/**
|
||
|
* Updates the texture rect of the UIImageView in points.
|
||
|
* It will call setTextureRect:rotated:untrimmedSize with rotated = NO, and utrimmedSize = rect.size.
|
||
|
*/
|
||
|
void setTextureRect(const Rect& rect);
|
||
|
|
||
|
/**
|
||
|
* Sets if imageview is using scale9 renderer.
|
||
|
*
|
||
|
* @param true that using scale9 renderer, false otherwise.
|
||
|
*/
|
||
|
void setScale9Enabled(bool able);
|
||
|
|
||
|
/**
|
||
|
* Sets capinsets for imageview, if imageview is using scale9 renderer.
|
||
|
*
|
||
|
* @param capInsets capinsets for imageview
|
||
|
*/
|
||
|
void setCapInsets(const Rect &capInsets);
|
||
|
|
||
|
//override "setFlipX" method of widget.
|
||
|
virtual void setFlipX(bool flipX);
|
||
|
|
||
|
//override "setFlipY" method of widget.
|
||
|
virtual void setFlipY(bool flipY);
|
||
|
|
||
|
//override "isFlipX" method of widget.
|
||
|
virtual bool isFlipX();
|
||
|
|
||
|
//override "isFlipY" method of widget.
|
||
|
virtual bool isFlipY();
|
||
|
|
||
|
//override "setAnchorPoint" method of widget.
|
||
|
virtual void setAnchorPoint(const Point &pt);
|
||
|
|
||
|
//override "onTouchBegan" method of widget.
|
||
|
virtual bool onTouchBegan(const Point &touchPoint);
|
||
|
|
||
|
//override "onTouchEnded" method of widget.
|
||
|
virtual void onTouchEnded(const Point &touchPoint);
|
||
|
|
||
|
//override "ignoreContentAdaptWithSize" method of widget.
|
||
|
virtual void ignoreContentAdaptWithSize(bool ignore);
|
||
|
|
||
|
|
||
|
|
||
|
void setDoubleClickEnabled(bool able);
|
||
|
void doubleClickEvent();
|
||
|
void checkDoubleClick(float dt);
|
||
|
virtual const Size& getContentSize() const;
|
||
|
virtual Node* getVirtualRenderer();
|
||
|
protected:
|
||
|
virtual void initRenderer();
|
||
|
virtual void onSizeChanged();
|
||
|
void imageTextureScaleChangedWithSize();
|
||
|
protected:
|
||
|
int m_nViewType;
|
||
|
int m_nClickCount;
|
||
|
float m_fClickTimeInterval;
|
||
|
bool m_bStartCheckDoubleClick;
|
||
|
bool m_touchRelease;
|
||
|
bool m_bDoubleClickEnabled;
|
||
|
bool m_bScale9Enabled;
|
||
|
bool m_bPrevIgnoreSize;
|
||
|
Rect m_capInsets;
|
||
|
Node* m_pImageRenderer;
|
||
|
std::string m_strTextureFile;
|
||
|
TextureResType m_eImageTexType;
|
||
|
Size m_imageTextureSize;
|
||
|
};
|
||
|
|
||
|
NS_CC_EXT_END
|
||
|
|
||
|
#endif /* defined(__CocoGUI__UIImageView__) */
|