71 lines
2.2 KiB
C++
71 lines
2.2 KiB
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
#pragma once
|
|
|
|
#include <etk/types.h>
|
|
#include <ewol/debug.h>
|
|
#include <ewol/widget/ContainerN.h>
|
|
#include <ewol/widget/Manager.h>
|
|
#include <etk/Color.h>
|
|
#include <ewol/compositing/Drawing.h>
|
|
|
|
namespace ewol {
|
|
namespace widget {
|
|
class Sizer;
|
|
using SizerShared = ememory::SharedPtr<ewol::widget::Sizer>;
|
|
using SizerWeak = ememory::WeakPtr<ewol::widget::Sizer>;
|
|
/**
|
|
* @ingroup ewolWidgetGroup
|
|
*/
|
|
class Sizer : public ewol::widget::ContainerN {
|
|
public:
|
|
enum displayMode {
|
|
modeVert, //!< Vertical mode
|
|
modeHori, //!< Horizontal mode
|
|
};
|
|
enum animation {
|
|
animationNone, //!< No annimation
|
|
animationTop, //!< element came from the top
|
|
animationbuttom, //!< element came from the buttom
|
|
animationLeft, //!< element came from the Left
|
|
animationRight //!< element came from the right
|
|
//animationZoom //!< element came from zooming
|
|
};
|
|
public: // properties:
|
|
eproperty::List<enum displayMode> propertyMode; //!< Methode to display the widget list (vert/hory ...)
|
|
eproperty::Value<gale::Dimension> propertyBorderSize; //!< Border size needed for all the display
|
|
eproperty::List<enum animation> propertyAnimation; //!< Methode add and remove element (animation)
|
|
eproperty::Value<float> propertyAnimationTime; //!< Time in second to generate animation
|
|
protected:
|
|
/**
|
|
* @brief Constructor
|
|
* @param[in] _mode The mode to display the elements
|
|
*/
|
|
Sizer();
|
|
public:
|
|
DECLARE_WIDGET_FACTORY(Sizer, "Sizer");
|
|
/**
|
|
* @brief Destructor
|
|
*/
|
|
virtual ~Sizer();
|
|
public: // Derived function
|
|
virtual void onChangeSize();
|
|
virtual void calculateMinMaxSize();
|
|
// overwrite the set fuction to start annimations ...
|
|
virtual int32_t subWidgetAdd(ewol::WidgetShared _newWidget);
|
|
virtual int32_t subWidgetAddStart(ewol::WidgetShared _newWidget);
|
|
virtual void subWidgetRemove(ewol::WidgetShared _newWidget);
|
|
virtual void subWidgetUnLink(ewol::WidgetShared _newWidget);
|
|
protected:
|
|
virtual void onChangePropertyMode();
|
|
virtual void onChangePropertyBorderSize();
|
|
};
|
|
}
|
|
}
|
|
|