axmol/extensions/CocoStudio/GUI/Layouts/LayoutParameter.h

202 lines
5.2 KiB
C
Raw Normal View History

2013-09-13 22:20:20 +08:00
/****************************************************************************
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 __LAYOUTPARMETER_H__
#define __LAYOUTPARMETER_H__
#include "UILayoutDefine.h"
NS_CC_EXT_BEGIN
typedef enum
{
LAYOUT_PARAMETER_NONE,
LAYOUT_PARAMETER_LINEAR,
LAYOUT_PARAMETER_RELATIVE
}LayoutParameterType;
class LayoutParameter : public Object
{
public:
/**
* Default constructor
*/
LayoutParameter() : m_margin(UIMargin()){m_eLayoutParameterType = LAYOUT_PARAMETER_NONE;};
/**
* Default destructor
*/
virtual ~LayoutParameter(){};
/**
* Allocates and initializes.
* @return A initialized LayoutParameter which is marked as "autorelease".
*/
static LayoutParameter* create();
/**
* Sets Margin parameter for LayoutParameter.
*
* @see UIMargin
*
* @param margin
*/
void setMargin(const UIMargin& margin);
/**
* Gets Margin parameter of LayoutParameter.
*
* @see UIMargin
*
* @return const UIMargin&
*/
const UIMargin& getMargin() const;
/**
* Gets LayoutParameterType of LayoutParameter.
*
* @see LayoutParameterType
*
* @return LayoutParameterType
*/
LayoutParameterType getLayoutType() const;
protected:
UIMargin m_margin;
LayoutParameterType m_eLayoutParameterType;
};
class LinearLayoutParameter : public LayoutParameter
{
public:
/**
* Default constructor
*/
LinearLayoutParameter() : m_eLinearGravity(LINEAR_GRAVITY_NONE){m_eLayoutParameterType = LAYOUT_PARAMETER_LINEAR;};
/**
* Default destructor
*/
virtual ~LinearLayoutParameter(){};
/**
* Allocates and initializes.
* @return A initialized LayoutParameter which is marked as "autorelease".
*/
static LinearLayoutParameter* create();
/**
* Sets UILinearGravity parameter for LayoutParameter.
*
* @see UILinearGravity
*
* @param UILinearGravity
*/
void setGravity(UILinearGravity gravity);
/**
* Gets UILinearGravity parameter for LayoutParameter.
*
* @see UILinearGravity
*
* @return UILinearGravity
*/
UILinearGravity getGravity() const;
protected:
UILinearGravity m_eLinearGravity;
};
class RelativeLayoutParameter : public LayoutParameter
{
public:
/**
* Default constructor
*/
RelativeLayoutParameter() : m_eRelativeAlign(RELATIVE_ALIGN_NONE),m_strRelativeWidgetName(""),m_strRelativeLayoutName(""){m_eLayoutParameterType = LAYOUT_PARAMETER_RELATIVE;};
/**
* Default destructor
*/
virtual ~RelativeLayoutParameter(){};
/**
* Allocates and initializes.
* @return A initialized LayoutParameter which is marked as "autorelease".
*/
static RelativeLayoutParameter* create();
/**
* Sets UIRelativeAlign parameter for LayoutParameter.
*
* @see UIRelativeAlign
*
* @param UIRelativeAlign
*/
void setAlign(UIRelativeAlign align);
/**
* Gets UIRelativeAlign parameter for LayoutParameter.
*
* @see UIRelativeAlign
*
* @return UIRelativeAlign
*/
UIRelativeAlign getAlign() const;
/**
* Sets a key for LayoutParameter. Witch widget named this is relative to.
*
* @param name
*/
void setRelativeToWidgetName(const char* name);
/**
* Gets the key of LayoutParameter. Witch widget named this is relative to.
*
* @return name
*/
const char* getRelativeToWidgetName() const;
/**
* Sets a name in Relative Layout for LayoutParameter.
*
* @param name
*/
void setRelativeName(const char* name);
/**
* Gets a name in Relative Layout of LayoutParameter.
*
* @return name
*/
const char* getRelativeName() const;
protected:
UIRelativeAlign m_eRelativeAlign;
std::string m_strRelativeWidgetName;
std::string m_strRelativeLayoutName;
};
NS_CC_EXT_END
#endif /* defined(__LayoutParameter__) */