class: ewol::widget::ParameterList


Constructor and Destructor:

+                                               ParameterList          (void );
+ virtual ~ParameterList (void );

Synopsis:

+         const char* const                     eventSelect;
+ void setLabel (std::string _newLabel);
+ void addOObject (ewol::Compositing* _newObject,
int32_t _pos);
+ void clearOObjectList (void );
+ void menuAdd (std::string & _label,
int32_t _refId,
std::string & _image);
+ void menuAddGroup (std::string & _label);
+ void menuClear (void );
+ void menuSeparator (void );
+ virtual void onRegenerateDisplay (void );
+ virtual bool onEventInput (const ewol::event::Input & _event);
+ virtual void calculateMinMaxSize (void );
# virtual void onGetFocus (void );
# virtual void onLostFocus (void );
# virtual void onDraw (void );

Object Hierarchy:

+ewol::Object
+--> +ewol::Widget
+--> +ewol::widget::WidgetScrooled
+--> ewol::widget::ParameterList

Detail:

eventSelect

+ const char* const eventSelect;



ParameterList

+  ParameterList (void );



~ParameterList

+ virtual  ~ParameterList (void );



setLabel

+ void setLabel (std::string _newLabel);



addOObject

+ void addOObject (ewol::Compositing* _newObject,
int32_t _pos);



clearOObjectList

+ void clearOObjectList (void );



menuAdd

+ void menuAdd (std::string & _label,
int32_t _refId,
std::string & _image);



menuAddGroup

+ void menuAddGroup (std::string & _label);



menuClear

+ void menuClear (void );



menuSeparator

+ void menuSeparator (void );



onRegenerateDisplay

+ virtual void onRegenerateDisplay (void );
Event generated when a redraw is needed


onEventInput

+ virtual bool onEventInput (const ewol::event::Input & _event);
Event on an input of this Widget (finger, mouse, stilet)


calculateMinMaxSize

+ virtual void calculateMinMaxSize (void );
calculate the minimum and maximum size (need to estimate expend properties of the widget)
Note: : INTERNAL EWOL SYSTEM


onGetFocus

# virtual void onGetFocus (void );
Event of the focus has been grep by the current widget


onLostFocus

# virtual void onLostFocus (void );
Event of the focus has been lost by the current widget


onDraw

# virtual void onDraw (void );
Common widget drawing function (called by the drawing thread [Android, X11, ...])