69 lines
1.8 KiB
C++
69 lines
1.8 KiB
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
#include <etk/types.h>
|
|
#include <ewol/widget/meta/SpinBase.h>
|
|
|
|
namespace ewol {
|
|
namespace widget {
|
|
class Select;
|
|
using SelectShared = ewol::SharedPtr<ewol::widget::Select>;
|
|
using SelectWeak = ewol::WeakPtr<ewol::widget::Select>;
|
|
/**
|
|
* @brief a composed Select is a Select with an inside composed with the specify XML element
|
|
* ==> this permit to generate standard element simple
|
|
*/
|
|
class Select : public ewol::widget::SpinBase {
|
|
public: // signals
|
|
esignal::ISignal<int32_t> signalValue;
|
|
public: // properties
|
|
eproperty::Value<int32_t> propertyValue; //!< Current state of the Select.
|
|
protected:
|
|
/**
|
|
* @brief Constructor
|
|
* @param[in] _shaperName Shaper file properties
|
|
*/
|
|
Select();
|
|
public:
|
|
DECLARE_WIDGET_FACTORY(Select, "Select");
|
|
/**
|
|
* @brief Destructor
|
|
*/
|
|
virtual ~Select();
|
|
protected:
|
|
class Element {
|
|
public:
|
|
int32_t m_value;
|
|
std::string m_name;
|
|
bool m_selected;
|
|
public:
|
|
Element(int32_t _value, std::string _name, bool _selected=false);
|
|
};
|
|
std::vector<ewol::widget::Select::Element> m_listElement;
|
|
public:
|
|
void optionSelectDefault();
|
|
void optionRemove(int32_t _value);
|
|
void optionClear();
|
|
void optionAdd(int32_t _value, std::string _name);
|
|
protected:
|
|
virtual bool loadXML(const std::shared_ptr<const exml::Element>& _node);
|
|
virtual void updateGui();
|
|
protected:
|
|
void onCallbackOpenMenu();
|
|
void onCallbackLabelPressed(int32_t _value);
|
|
protected:
|
|
esignal::Connection m_connectionEntry;
|
|
esignal::Connection m_connectionButton;
|
|
protected:
|
|
virtual void onChangePropertyValue();
|
|
};
|
|
};
|
|
};
|