axmol/core/ui/UILayoutParameter.h

406 lines
9.5 KiB
C
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
2021-12-25 10:04:45 +08:00
2022-10-01 16:24:52 +08:00
https://axmolengine.github.io/
2021-12-25 10:04:45 +08:00
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:
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
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 <string>
#include "base/Ref.h"
2019-11-23 20:27:39 +08:00
#include "ui/GUIExport.h"
/**
* @addtogroup ui
* @{
*/
NS_AX_BEGIN
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
namespace ui
{
2019-11-23 20:27:39 +08:00
/**
*@brief Margin of widget's in point. Margin value should be positive.
*@lua NA
*/
2022-07-16 10:43:05 +08:00
class AX_GUI_DLL Margin
2019-11-23 20:27:39 +08:00
{
public:
/**
* Left margin.
*/
float left;
/**
* Top margin.
*/
float top;
/**
* Right margin.
*/
float right;
/**
* Bottom margin.
*/
float bottom;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
public:
/**
* Default constructor.
*/
Margin();
/**
* Construct a Margin instance with left, top, right and bottom margins.
*@param l Left margin in float.
*@param t Top margin in float.
*@param r Right margin in float.
*@param b Bottom margin in float.
*/
Margin(float l, float t, float r, float b);
/**
* Copy constructor.
*/
Margin(const Margin& other);
/**
* Copy assignment operator.
*/
2021-12-25 10:04:45 +08:00
Margin& operator=(const Margin& other);
2019-11-23 20:27:39 +08:00
/**
* Change margin with left, top, right and bottom margin.
*@param l Left margin in float.
*@param t Top margin in float.
*@param r Right margin in float.
*@param b Bottom margin in float.
*/
void setMargin(float l, float t, float r, float b);
/**
* Test equality of two margins.
*@param target A Margin instance.
*@return True if two margins are equal, false otherwise.
*/
bool equals(const Margin& target) const;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* A margin constant with all margins equal zero.
*/
static const Margin ZERO;
};
/**
*@brief Base class for various LayoutParameter.
*/
2022-07-16 10:43:05 +08:00
class AX_GUI_DLL LayoutParameter : public Ref
2019-11-23 20:27:39 +08:00
{
public:
/**
*Layout parameter type.
* There are mainly two types:
* - Linear: Elements will be arranged by margin.
* - Relative: Elements will be arranged by margin and relative widget name.
*/
enum class Type
{
NONE = 0,
LINEAR,
RELATIVE
};
/**
* Default constructor.
*
* @lua new
*/
2021-12-25 10:04:45 +08:00
LayoutParameter() : _margin(Margin()) { _layoutParameterType = Type::NONE; }
2019-11-23 20:27:39 +08:00
/**
* Default destructor.
* @lua NA
*/
virtual ~LayoutParameter(){};
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Create a empty LayoutParameter.
* @return A autorelease LayoutParameter instance.
*/
static LayoutParameter* create();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Set margin parameter for LayoutParameter.
2021-12-25 10:04:45 +08:00
*
2019-11-23 20:27:39 +08:00
* @see Margin
* @param margin
*/
void setMargin(const Margin& margin);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Gets margin parameter of LayoutParameter.
*
* @see Margin
* @return Margin of layout parameter.
*/
const Margin& getMargin() const;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Gets LayoutParameterType of LayoutParameter.
*
* @see LayoutParameterType.
* @return LayoutParameterType
*/
Type getLayoutType() const;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Create a copy of original LayoutParameter.
*@return A LayoutParameter pointer.
*/
LayoutParameter* clone();
/**
* Create a cloned instance of LayoutParameter.
*@return A LayoutParameter pointer.
*/
virtual LayoutParameter* createCloneInstance();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Copy all the member field from argument LayoutParameter to self.
*@param model A LayoutParameter instance.
*/
virtual void copyProperties(LayoutParameter* model);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
protected:
Margin _margin;
Type _layoutParameterType;
};
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Protocol for getting a LayoutParameter.
* Every element want to have layout parameter should inherit from this class.
*/
2022-07-16 10:43:05 +08:00
class AX_GUI_DLL LayoutParameterProtocol
2019-11-23 20:27:39 +08:00
{
public:
/**
* Default destructor.
*/
2021-12-25 10:04:45 +08:00
virtual ~LayoutParameterProtocol() {}
2019-11-23 20:27:39 +08:00
/**
*
*@return A LayoutParameter and its descendant pointer.
*/
2021-12-25 10:04:45 +08:00
virtual LayoutParameter* getLayoutParameter() const = 0;
2019-11-23 20:27:39 +08:00
};
/**
* @brief Linear layout parameter.
* It is used by linear layout manager for arranging elements linearly.
*/
2022-07-16 10:43:05 +08:00
class AX_GUI_DLL LinearLayoutParameter : public LayoutParameter
2019-11-23 20:27:39 +08:00
{
public:
/**
* Linear gravity.
*/
enum class LinearGravity
{
NONE,
LEFT,
TOP,
RIGHT,
BOTTOM,
CENTER_VERTICAL,
CENTER_HORIZONTAL
};
/**
* Default constructor.
*
* @lua new
*/
2021-12-25 10:04:45 +08:00
LinearLayoutParameter() : _linearGravity(LinearGravity::NONE) { _layoutParameterType = Type::LINEAR; }
2019-11-23 20:27:39 +08:00
/**
* Default destructor.
*
* @lua NA
*/
virtual ~LinearLayoutParameter(){};
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Create a empty LinearLayoutParameter instance.
* @return A initialized LayoutParameter which is marked as "autorelease".
*/
static LinearLayoutParameter* create();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Sets LinearGravity parameter for LayoutParameter.
*
* @see LinearGravity
* @param gravity Gravity in LinearGravity.
*/
void setGravity(LinearGravity gravity);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Gets LinearGravity parameter for LayoutParameter.
*
* @see LinearGravity
* @return LinearGravity
*/
LinearGravity getGravity() const;
2021-12-25 10:04:45 +08:00
// override functions.
2019-11-23 20:27:39 +08:00
virtual LayoutParameter* createCloneInstance() override;
virtual void copyProperties(LayoutParameter* model) override;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
protected:
LinearGravity _linearGravity;
int i;
};
/**
* @brief Relative layout parameter.
* It is mainly used by `RelativeLayoutManager`.
*/
2022-07-16 10:43:05 +08:00
class AX_GUI_DLL RelativeLayoutParameter : public LayoutParameter
2019-11-23 20:27:39 +08:00
{
public:
/**
* Relative Alignment type
*/
enum class RelativeAlign
{
NONE,
PARENT_TOP_LEFT,
PARENT_TOP_CENTER_HORIZONTAL,
PARENT_TOP_RIGHT,
PARENT_LEFT_CENTER_VERTICAL,
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
CENTER_IN_PARENT,
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
PARENT_RIGHT_CENTER_VERTICAL,
PARENT_LEFT_BOTTOM,
PARENT_BOTTOM_CENTER_HORIZONTAL,
PARENT_RIGHT_BOTTOM,
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
LOCATION_ABOVE_LEFTALIGN,
LOCATION_ABOVE_CENTER,
LOCATION_ABOVE_RIGHTALIGN,
LOCATION_LEFT_OF_TOPALIGN,
LOCATION_LEFT_OF_CENTER,
LOCATION_LEFT_OF_BOTTOMALIGN,
LOCATION_RIGHT_OF_TOPALIGN,
LOCATION_RIGHT_OF_CENTER,
LOCATION_RIGHT_OF_BOTTOMALIGN,
LOCATION_BELOW_LEFTALIGN,
LOCATION_BELOW_CENTER,
LOCATION_BELOW_RIGHTALIGN
};
/**
* Default constructor
*
* @lua new
*/
RelativeLayoutParameter()
2021-12-25 10:04:45 +08:00
: _relativeAlign(RelativeAlign::NONE), _relativeWidgetName(""), _relativeLayoutName(""), _put(false)
2019-11-23 20:27:39 +08:00
{
_layoutParameterType = Type::RELATIVE;
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Default destructor
*
* @lua NA
*/
virtual ~RelativeLayoutParameter(){};
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Create a RelativeLayoutParameter instance.
* @return A initialized LayoutParameter which is marked as "autorelease".
*/
static RelativeLayoutParameter* create();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Sets RelativeAlign parameter for LayoutParameter.
*
* @see RelativeAlign
* @param align Relative align in `RelativeAlign`.
*/
void setAlign(RelativeAlign align);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Get RelativeAlign parameter for LayoutParameter.
*
* @see RelativeAlign
* @return A RelativeAlign variable.
*/
RelativeAlign getAlign() const;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Set widget name your widget want to relative to.
*
* @param name Relative widget name.
*/
void setRelativeToWidgetName(std::string_view name);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Get the relative widget name.
* @return name A relative widget name in string.
*/
std::string_view getRelativeToWidgetName() const;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Set a name for LayoutParameter in Relative Layout.
*
* @param name A string name.
*/
void setRelativeName(std::string_view name);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Get a name of LayoutParameter in Relative Layout.
*
* @return name Relative name in string.
*/
std::string_view getRelativeName() const;
2021-12-25 10:04:45 +08:00
// override functions.
2019-11-23 20:27:39 +08:00
virtual LayoutParameter* createCloneInstance() override;
virtual void copyProperties(LayoutParameter* model) override;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
protected:
RelativeAlign _relativeAlign;
std::string _relativeWidgetName;
std::string _relativeLayoutName;
bool _put;
friend class RelativeLayoutManager;
};
2021-12-25 10:04:45 +08:00
} // namespace ui
NS_AX_END
2019-11-23 20:27:39 +08:00
// end of ui group
/// @}
#endif /* defined(__LayoutParameter__) */