[DEV] review translation methodologe and position
This commit is contained in:
parent
2abb546c5e
commit
f1a0b784f6
@ -1,28 +0,0 @@
|
||||
/**
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2011, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license APACHE v2.0 (see license file)
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include <etk/types.h>
|
||||
#include <vector>
|
||||
#include <exml/exml.h>
|
||||
#include <mutex>
|
||||
#include <memory>
|
||||
|
||||
namespace ewol {
|
||||
template<class TYPE>
|
||||
using SharedPtr = std::shared_ptr<TYPE>;
|
||||
template<class TYPE>
|
||||
using WeakPtr = std::weak_ptr<TYPE>;
|
||||
template<class TYPE>
|
||||
using EnableSharedFromThis = std::enable_shared_from_this<TYPE>;
|
||||
/*
|
||||
template<class TYPE>
|
||||
using DynamicPointerCastZZ = std::dynamic_pointer_cast<TYPE>;
|
||||
*/
|
||||
}
|
||||
|
@ -15,7 +15,7 @@
|
||||
#include <unordered_map>
|
||||
|
||||
#include <ewol/debug.h>
|
||||
#include <ewol/memory.h>
|
||||
#include <ememory/memory.h>
|
||||
#include <eproperty/Interface.h>
|
||||
#include <eproperty/Value.h>
|
||||
#include <eproperty/Range.h>
|
||||
@ -32,12 +32,12 @@ namespace ewol {
|
||||
class Context;
|
||||
}
|
||||
|
||||
template<class TYPE_OBJECT> static void baseInit(const ewol::SharedPtr<TYPE_OBJECT>& _object) {
|
||||
template<class TYPE_OBJECT> static void baseInit(const ememory::SharedPtr<TYPE_OBJECT>& _object) {
|
||||
// end of recurtion
|
||||
return;
|
||||
}
|
||||
|
||||
template<class TYPE_OBJECT, class TYPE_VAL, class ... TYPE> static void baseInit(const ewol::SharedPtr<TYPE_OBJECT>& _object, const std::string& _name, const TYPE_VAL& _val, TYPE&& ... _all ) {
|
||||
template<class TYPE_OBJECT, class TYPE_VAL, class ... TYPE> static void baseInit(const ememory::SharedPtr<TYPE_OBJECT>& _object, const std::string& _name, const TYPE_VAL& _val, TYPE&& ... _all ) {
|
||||
eproperty::Property* prop(nullptr);
|
||||
eproperty::PropertyType<TYPE_VAL>* propType(nullptr);
|
||||
if (_object == nullptr) {
|
||||
@ -61,17 +61,15 @@ exit_on_error:
|
||||
}
|
||||
|
||||
#define UN_DECLARE_FACTORY(className) \
|
||||
template<class ... TYPE> static ewol::SharedPtr<className> create(const TYPE& ... _all) = delete;
|
||||
template<class ... EWOL_FACTORY_CREATE_TYPE> static ememory::SharedPtr<className> create(const EWOL_FACTORY_CREATE_TYPE& ... _all) = delete;
|
||||
|
||||
#define DECLARE_FACTORY(className) \
|
||||
template<class ... TYPE> static ewol::SharedPtr<className> create(const TYPE& ... _all) { \
|
||||
ewol::SharedPtr<className> object(new className()); \
|
||||
template<class ... EWOL_FACTORY_CREATE_TYPE> static ememory::SharedPtr<className> create(const EWOL_FACTORY_CREATE_TYPE& ... _all) { \
|
||||
ememory::SharedPtr<className> object(new className()); \
|
||||
if (object == nullptr) { \
|
||||
EWOL_ERROR("Factory error"); \
|
||||
return nullptr; \
|
||||
} \
|
||||
/*object->initNoValue();*/ \
|
||||
/*baseInit(object, std::forward<TYPE>(_all)... ); */ \
|
||||
baseInit(object, _all... ); \
|
||||
object->init(); \
|
||||
if (object->objectHasBeenCorectlyInit() == false) { \
|
||||
@ -81,30 +79,40 @@ exit_on_error:
|
||||
}
|
||||
|
||||
#define DECLARE_SINGLE_FACTORY(className, uniqueName) \
|
||||
template<class ... TYPE> static ewol::SharedPtr<className> create(const TYPE& ... _all) { \
|
||||
ewol::SharedPtr<className> object; \
|
||||
ewol::SharedPtr<ewol::Object> object2 = getObjectNamed(uniqueName); \
|
||||
template<class ... EWOL_FACTORY_CREATE_TYPE> static ememory::SharedPtr<className> create(const EWOL_FACTORY_CREATE_TYPE& ... _all) { \
|
||||
ememory::SharedPtr<className> object; \
|
||||
ememory::SharedPtr<ewol::Object> object2 = getObjectNamed(uniqueName); \
|
||||
if (object2 != nullptr) { \
|
||||
object = std::dynamic_pointer_cast<className>(object2); \
|
||||
if (object == nullptr) { \
|
||||
GALE_CRITICAL("Request object element: '" << uniqueName << "' With the wrong type (dynamic cast error)"); \
|
||||
EWOL_CRITICAL("Request object element: '" << uniqueName << "' With the wrong type (dynamic cast error)"); \
|
||||
return nullptr; \
|
||||
} \
|
||||
} \
|
||||
if (object != nullptr) { \
|
||||
return object; \
|
||||
} \
|
||||
return create("name", std::string(uniqueName), _all...); \
|
||||
object = ememory::SharedPtr<className>(new className()); \
|
||||
if (object == nullptr) { \
|
||||
EWOL_ERROR("Factory error"); \
|
||||
return nullptr; \
|
||||
} \
|
||||
baseInit(object, "name", std::string(uniqueName), _all... ); \
|
||||
object->init(); \
|
||||
if (object->objectHasBeenCorectlyInit() == false) { \
|
||||
EWOL_CRITICAL("Object Is not correctly init : " << #className ); \
|
||||
} \
|
||||
return object; \
|
||||
}
|
||||
|
||||
namespace ewol {
|
||||
using ObjectShared = ewol::SharedPtr<ewol::Object>;
|
||||
using ObjectWeak = ewol::WeakPtr<ewol::Object>;
|
||||
using ObjectShared = ememory::SharedPtr<ewol::Object>;
|
||||
using ObjectWeak = ememory::WeakPtr<ewol::Object>;
|
||||
/**
|
||||
* @brief Basic message classes for ewol system
|
||||
* this class mermit at every Object to communicate between them.
|
||||
*/
|
||||
class Object : public ewol::EnableSharedFromThis<Object>,
|
||||
class Object : public ememory::EnableSharedFromThis<Object>,
|
||||
public eproperty::Interface,
|
||||
public esignal::Interface {
|
||||
public: // Event list
|
||||
@ -281,7 +289,7 @@ namespace ewol {
|
||||
* @brief link on an signal in the subwiget with his name
|
||||
*/
|
||||
#define subBind(_type, _name, _event, _shared_ptr, _func, ...) do {\
|
||||
ewol::SharedPtr<_type> myObject = std::dynamic_pointer_cast<_type>(getSubObjectNamed(_name)); \
|
||||
ememory::SharedPtr<_type> myObject = std::dynamic_pointer_cast<_type>(getSubObjectNamed(_name)); \
|
||||
if (myObject != nullptr) { \
|
||||
myObject->_event.connect(_shared_ptr, _func, ##__VA_ARGS__); \
|
||||
} else { \
|
||||
@ -289,8 +297,8 @@ namespace ewol {
|
||||
} \
|
||||
} while (false)
|
||||
/*
|
||||
template<class TYPE> void subBind(ewol::SharedPtr<ewol::Object> _obj, void (TYPE::*_func)()) {
|
||||
ewol::SharedPtr<TYPE> obj2 = std::dynamic_pointer_cast<TYPE>(_obj);
|
||||
template<class TYPE> void subBind(ememory::SharedPtr<ewol::Object> _obj, void (TYPE::*_func)()) {
|
||||
ememory::SharedPtr<TYPE> obj2 = std::dynamic_pointer_cast<TYPE>(_obj);
|
||||
if (obj2 == nullptr) {
|
||||
EWOL_ERROR("Can not connect signal ...");
|
||||
return;
|
||||
@ -306,7 +314,7 @@ namespace ewol {
|
||||
* @brief link on an signal in the global object list with his name
|
||||
*/
|
||||
#define globalBind(_type, _name, _event, _obj, _func, ...) do {\
|
||||
ewol::SharedPtr<_type> myObject = std::dynamic_pointer_cast<_type>(ewol::getContext().getEObjectManager().getObjectNamed(_name)); \
|
||||
ememory::SharedPtr<_type> myObject = std::dynamic_pointer_cast<_type>(ewol::getContext().getEObjectManager().getObjectNamed(_name)); \
|
||||
if (myObject != nullptr) { \
|
||||
myObject->_event.connect(_obj, _func, ##__VA_ARGS__); \
|
||||
} else { \
|
||||
@ -318,7 +326,7 @@ namespace ewol {
|
||||
* @brief link on an signal in the subWidget of an object with his name
|
||||
*/
|
||||
#define externSubBind(_object, _type, _name, _event, _obj, _func, ...) do {\
|
||||
ewol::SharedPtr<_type> myObject = std::dynamic_pointer_cast<_type>(_object->getObjectNamed(_name)); \
|
||||
ememory::SharedPtr<_type> myObject = std::dynamic_pointer_cast<_type>(_object->getObjectNamed(_name)); \
|
||||
if (myObject != nullptr) { \
|
||||
myObject->_event.connect(_obj, _func, ##__VA_ARGS__); \
|
||||
} else { \
|
||||
|
@ -13,8 +13,8 @@
|
||||
namespace ewol {
|
||||
namespace object {
|
||||
class Worker;
|
||||
using WorkerShared = ewol::SharedPtr<ewol::object::Worker>;
|
||||
using WorkerWeak = ewol::WeakPtr<ewol::object::Worker>;
|
||||
using WorkerShared = ememory::SharedPtr<ewol::object::Worker>;
|
||||
using WorkerWeak = ememory::WeakPtr<ewol::object::Worker>;
|
||||
/**
|
||||
* @brief A worker might not been possesed by someone, then the system might keep a pointer on it.
|
||||
*/
|
||||
|
@ -103,17 +103,44 @@ class LocalInstanceTranslation {
|
||||
return m_language;
|
||||
};
|
||||
|
||||
const std::string& get(const std::string& _instance) {
|
||||
std::string get(const std::string& _instance) {
|
||||
loadTranslation();
|
||||
if (etk::start_with(_instance, "TRANSLATE:") == false) {
|
||||
return _instance;
|
||||
EWOL_VERBOSE("Request translate: '" << _instance << "'");
|
||||
// find all iterance of '_T{' ... '}'
|
||||
std::string out;
|
||||
auto itOld = _instance.begin();
|
||||
size_t pos = _instance.find("_T{");
|
||||
while (pos != std::string::npos) {
|
||||
out.append(itOld, _instance.begin() + pos);
|
||||
auto it = _instance.begin() + pos + 3;
|
||||
itOld = it;
|
||||
pos = _instance.find("}", pos);
|
||||
if (pos == std::string::npos) {
|
||||
EWOL_WARNING("missing end translation '}' in: '" << _instance << "'");
|
||||
it = _instance.end();
|
||||
} else {
|
||||
it = _instance.begin() + pos;
|
||||
}
|
||||
std::string basicEmptyValue = std::string(itOld, it);
|
||||
auto itTranslate = m_translate.find(basicEmptyValue);
|
||||
if (itTranslate == m_translate.end()) {
|
||||
EWOL_DEBUG("Can not find tranlation : '" << _instance << "'");
|
||||
out += basicEmptyValue;
|
||||
} else {
|
||||
out += itTranslate->second;
|
||||
}
|
||||
if (it != _instance.end()) {
|
||||
itOld = it+1;
|
||||
} else {
|
||||
itOld = it;
|
||||
}
|
||||
pos = _instance.find("_T{", pos);
|
||||
}
|
||||
auto it = m_translate.find(std::string(_instance.begin() + 9, _instance.end()));
|
||||
if (it == m_translate.end()) {
|
||||
EWOL_DEBUG("Can not find tranlation : '" << _instance << "'");
|
||||
return _instance;
|
||||
if (itOld != _instance.end()) {
|
||||
out.append(itOld, _instance.end());
|
||||
}
|
||||
return it->second;
|
||||
EWOL_VERBOSE(" translation: '" << out << "'");
|
||||
return out;
|
||||
};
|
||||
private:
|
||||
void loadTranslation() {
|
||||
@ -229,7 +256,7 @@ void ewol::translate::autoDetectLanguage() {
|
||||
#endif
|
||||
}
|
||||
|
||||
const std::string& ewol::translate::get(const std::string& _instance) {
|
||||
std::string ewol::translate::get(const std::string& _instance) {
|
||||
return getInstanceTranslation().get(_instance);
|
||||
}
|
||||
|
||||
|
@ -30,7 +30,7 @@ namespace ewol {
|
||||
* @brief Set the path folder of the translation files
|
||||
* @param[in] _lib Library name that the path depend
|
||||
* @param[in] _path ETK generic path (DATA:... or /xxx)
|
||||
* @param[in] _major This path is the major path (The last loaded, the one wichi overload all)
|
||||
* @param[in] _major This path is the major path (The last loaded, the one which overload all)
|
||||
*/
|
||||
void addPath(const std::string& _lib, const std::string& _path, bool _major = false);
|
||||
/**
|
||||
@ -68,7 +68,7 @@ namespace ewol {
|
||||
* @param[in] _instance Text to translate.
|
||||
* @return The tranlated text.
|
||||
*/
|
||||
const std::string& get(const std::string& _instance);
|
||||
std::string get(const std::string& _instance);
|
||||
};
|
||||
};
|
||||
// Here we define a simple macro to Translate all string simply:
|
||||
|
@ -21,8 +21,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class Button;
|
||||
using ButtonShared = ewol::SharedPtr<ewol::widget::Button>;
|
||||
using ButtonWeak = ewol::WeakPtr<ewol::widget::Button>;
|
||||
using ButtonShared = ememory::SharedPtr<ewol::widget::Button>;
|
||||
using ButtonWeak = ememory::WeakPtr<ewol::widget::Button>;
|
||||
/**
|
||||
* @brief a composed button is a button with an inside composed with the specify XML element
|
||||
* ==> this permit to generate standard element simple
|
||||
|
@ -20,8 +20,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class ButtonColor;
|
||||
using ButtonColorShared = ewol::SharedPtr<ewol::widget::ButtonColor>;
|
||||
using ButtonColorWeak = ewol::WeakPtr<ewol::widget::ButtonColor>;
|
||||
using ButtonColorShared = ememory::SharedPtr<ewol::widget::ButtonColor>;
|
||||
using ButtonColorWeak = ememory::WeakPtr<ewol::widget::ButtonColor>;
|
||||
class ButtonColor : public ewol::Widget {
|
||||
public: // signals
|
||||
esignal::ISignal<etk::Color<>> signalChange;
|
||||
|
@ -18,8 +18,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class CheckBox;
|
||||
using CheckBoxShared = ewol::SharedPtr<ewol::widget::CheckBox>;
|
||||
using CheckBoxWeak = ewol::WeakPtr<ewol::widget::CheckBox>;
|
||||
using CheckBoxShared = ememory::SharedPtr<ewol::widget::CheckBox>;
|
||||
using CheckBoxWeak = ememory::WeakPtr<ewol::widget::CheckBox>;
|
||||
class CheckBox : public ewol::widget::Container2 {
|
||||
public: // Event list
|
||||
esignal::ISignal<> signalPressed;
|
||||
|
@ -18,8 +18,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class ColorBar;
|
||||
using ColorBarShared = ewol::SharedPtr<ewol::widget::ColorBar>;
|
||||
using ColorBarWeak = ewol::WeakPtr<ewol::widget::ColorBar>;
|
||||
using ColorBarShared = ememory::SharedPtr<ewol::widget::ColorBar>;
|
||||
using ColorBarWeak = ememory::WeakPtr<ewol::widget::ColorBar>;
|
||||
class ColorBar : public ewol::Widget {
|
||||
public: // signals
|
||||
esignal::ISignal<etk::Color<>> signalChange;
|
||||
|
@ -14,8 +14,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class Composer;
|
||||
using ComposerShared = ewol::SharedPtr<ewol::widget::Composer>;
|
||||
using ComposerWeak = ewol::WeakPtr<ewol::widget::Composer>;
|
||||
using ComposerShared = ememory::SharedPtr<ewol::widget::Composer>;
|
||||
using ComposerWeak = ememory::WeakPtr<ewol::widget::Composer>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
* @brief the composer widget is a widget that create a link on a string.file to parse the data and generate some widget tree
|
||||
|
@ -14,8 +14,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class Container;
|
||||
using ContainerShared = ewol::SharedPtr<ewol::widget::Container>;
|
||||
using ContainerWeak = ewol::WeakPtr<ewol::widget::Container>;
|
||||
using ContainerShared = ememory::SharedPtr<ewol::widget::Container>;
|
||||
using ContainerWeak = ememory::WeakPtr<ewol::widget::Container>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
* @brief the Cotainer widget is a widget that have an only one subWidget
|
||||
|
@ -15,8 +15,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class Container2;
|
||||
using Container2Shared = ewol::SharedPtr<ewol::widget::Container2>;
|
||||
using Container2Weak = ewol::WeakPtr<ewol::widget::Container2>;
|
||||
using Container2Shared = ememory::SharedPtr<ewol::widget::Container2>;
|
||||
using Container2Weak = ememory::WeakPtr<ewol::widget::Container2>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
* @brief the Cotainer widget is a widget that have an only one subWidget
|
||||
|
@ -15,8 +15,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class ContainerN;
|
||||
using ContainerNShared = ewol::SharedPtr<ewol::widget::ContainerN>;
|
||||
using ContainerNWeak = ewol::WeakPtr<ewol::widget::ContainerN>;
|
||||
using ContainerNShared = ememory::SharedPtr<ewol::widget::ContainerN>;
|
||||
using ContainerNWeak = ememory::WeakPtr<ewol::widget::ContainerN>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
* @brief the Cotainer widget is a widget that have an only one subWidget
|
||||
|
@ -18,8 +18,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class ContextMenu;
|
||||
using ContextMenuShared = ewol::SharedPtr<ewol::widget::ContextMenu>;
|
||||
using ContextMenuWeak = ewol::WeakPtr<ewol::widget::ContextMenu>;
|
||||
using ContextMenuShared = ememory::SharedPtr<ewol::widget::ContextMenu>;
|
||||
using ContextMenuWeak = ememory::WeakPtr<ewol::widget::ContextMenu>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
*/
|
||||
|
@ -21,8 +21,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class Entry;
|
||||
using EntryShared = ewol::SharedPtr<ewol::widget::Entry>;
|
||||
using EntryWeak = ewol::WeakPtr<ewol::widget::Entry>;
|
||||
using EntryShared = ememory::SharedPtr<ewol::widget::Entry>;
|
||||
using EntryWeak = ememory::WeakPtr<ewol::widget::Entry>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
* @brief Entry box display :
|
||||
|
@ -16,8 +16,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class Gird;
|
||||
using GirdShared = ewol::SharedPtr<ewol::widget::Gird>;
|
||||
using GirdWeak = ewol::WeakPtr<ewol::widget::Gird>;
|
||||
using GirdShared = ememory::SharedPtr<ewol::widget::Gird>;
|
||||
using GirdWeak = ememory::WeakPtr<ewol::widget::Gird>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
*/
|
||||
|
@ -18,8 +18,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class Image;
|
||||
using ImageShared = ewol::SharedPtr<ewol::widget::Image>;
|
||||
using ImageWeak = ewol::WeakPtr<ewol::widget::Image>;
|
||||
using ImageShared = ememory::SharedPtr<ewol::widget::Image>;
|
||||
using ImageWeak = ememory::WeakPtr<ewol::widget::Image>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
*/
|
||||
|
@ -18,8 +18,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class Joystick;
|
||||
using JoystickShared = ewol::SharedPtr<ewol::widget::Joystick>;
|
||||
using JoystickWeak = ewol::WeakPtr<ewol::widget::Joystick>;
|
||||
using JoystickShared = ememory::SharedPtr<ewol::widget::Joystick>;
|
||||
using JoystickWeak = ememory::WeakPtr<ewol::widget::Joystick>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
*/
|
||||
|
@ -18,6 +18,10 @@
|
||||
// TODO : Remove the label name in the constructor ...
|
||||
ewol::widget::Label::Label() :
|
||||
signalPressed(this, "pressed", ""),
|
||||
propertyAutoTranslate(this, "auto-translate",
|
||||
true,
|
||||
"Translate the String with the marker _{T:xxxxxx}",
|
||||
&ewol::widget::Label::onChangePropertyAutoTranslate),
|
||||
propertyValue(this, "value",
|
||||
"",
|
||||
"displayed value string",
|
||||
@ -142,8 +146,15 @@ bool ewol::widget::Label::loadXML(const std::shared_ptr<const exml::Element>& _n
|
||||
}
|
||||
|
||||
void ewol::widget::Label::onChangePropertyValue() {
|
||||
m_value = etk::to_u32string(propertyValue.get());
|
||||
if (*propertyAutoTranslate == true) {
|
||||
m_value = etk::to_u32string(ewol::translate::get(*propertyValue));
|
||||
} else {
|
||||
m_value = etk::to_u32string(*propertyValue);
|
||||
}
|
||||
markToRedraw();
|
||||
requestUpdateSize();
|
||||
}
|
||||
|
||||
void ewol::widget::Label::onChangePropertyAutoTranslate() {
|
||||
onChangePropertyValue();
|
||||
}
|
||||
|
@ -18,8 +18,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class Label;
|
||||
using LabelShared = ewol::SharedPtr<ewol::widget::Label>;
|
||||
using LabelWeak = ewol::WeakPtr<ewol::widget::Label>;
|
||||
using LabelShared = ememory::SharedPtr<ewol::widget::Label>;
|
||||
using LabelWeak = ememory::WeakPtr<ewol::widget::Label>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
*/
|
||||
@ -27,6 +27,7 @@ namespace ewol {
|
||||
public: // signals
|
||||
esignal::ISignal<> signalPressed;
|
||||
public: // properties
|
||||
eproperty::Value<bool> propertyAutoTranslate; //!< if at true the data is translate automaticaly translate.
|
||||
eproperty::Value<std::string> propertyValue; //!< decorated text to display.
|
||||
private:
|
||||
ewol::compositing::Text m_text; //!< Compositing text element.
|
||||
@ -55,6 +56,7 @@ namespace ewol {
|
||||
virtual bool loadXML(const std::shared_ptr<const exml::Element>& _node);
|
||||
protected:
|
||||
virtual void onChangePropertyValue();
|
||||
virtual void onChangePropertyAutoTranslate();
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@ -15,8 +15,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class Layer;
|
||||
using LayerShared = ewol::SharedPtr<ewol::widget::Layer>;
|
||||
using LayerWeak = ewol::WeakPtr<ewol::widget::Layer>;
|
||||
using LayerShared = ememory::SharedPtr<ewol::widget::Layer>;
|
||||
using LayerWeak = ememory::WeakPtr<ewol::widget::Layer>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
*/
|
||||
|
@ -16,8 +16,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class List;
|
||||
using ListShared = ewol::SharedPtr<ewol::widget::List>;
|
||||
using ListWeak = ewol::WeakPtr<ewol::widget::List>;
|
||||
using ListShared = ememory::SharedPtr<ewol::widget::List>;
|
||||
using ListWeak = ememory::WeakPtr<ewol::widget::List>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
*/
|
||||
|
@ -15,8 +15,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class ListFileSystem;
|
||||
using ListFileSystemShared = ewol::SharedPtr<ewol::widget::ListFileSystem>;
|
||||
using ListFileSystemWeak = ewol::WeakPtr<ewol::widget::ListFileSystem>;
|
||||
using ListFileSystemShared = ememory::SharedPtr<ewol::widget::ListFileSystem>;
|
||||
using ListFileSystemWeak = ememory::WeakPtr<ewol::widget::ListFileSystem>;
|
||||
/**
|
||||
* @brief Generic display folder class. This widget display the content of a single folder :
|
||||
*/
|
||||
|
@ -99,7 +99,9 @@ int32_t ewol::widget::Menu::add(int32_t _parent,
|
||||
composeString+="</sizer>\n";
|
||||
myButton->setSubWidget(ewol::widget::composerGenerateString(composeString));
|
||||
} else {
|
||||
myButton->setSubWidget(ewol::widget::Label::create("value", "<left>" + tmpObject.m_label + "</left>") );
|
||||
ewol::widget::LabelShared label = ewol::widget::Label::create();
|
||||
label->propertyValue.set("<left>" + tmpObject.m_label + "</left>");
|
||||
myButton->setSubWidget(label);
|
||||
}
|
||||
// add it in the widget list
|
||||
ewol::widget::Sizer::subWidgetAdd(myButton);
|
||||
@ -174,8 +176,9 @@ void ewol::widget::Menu::onButtonPressed(ewol::widget::ButtonWeak _button) {
|
||||
tmpContext->setPositionMark(ewol::widget::ContextMenu::markTop, newPosition);
|
||||
ewol::widget::SizerShared mySizer;
|
||||
ewol::widget::ButtonShared myButton;
|
||||
mySizer = ewol::widget::Sizer::create("mode", widget::Sizer::modeVert);
|
||||
mySizer = ewol::widget::Sizer::create();
|
||||
if (mySizer != nullptr) {
|
||||
mySizer->propertyMode.set(widget::Sizer::modeVert);
|
||||
mySizer->propertyLockExpand.set(vec2(true,true));
|
||||
mySizer->propertyFill.set(vec2(true,true));
|
||||
// set it in the pop-up-system:
|
||||
|
@ -28,8 +28,8 @@ namespace ewol {
|
||||
std::string m_message;
|
||||
};
|
||||
class Menu;
|
||||
using MenuShared = ewol::SharedPtr<ewol::widget::Menu>;
|
||||
using MenuWeak = ewol::WeakPtr<ewol::widget::Menu>;
|
||||
using MenuShared = ememory::SharedPtr<ewol::widget::Menu>;
|
||||
using MenuWeak = ememory::WeakPtr<ewol::widget::Menu>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
*/
|
||||
|
@ -18,8 +18,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class PopUp;
|
||||
using PopUpShared = ewol::SharedPtr<ewol::widget::PopUp>;
|
||||
using PopUpWeak = ewol::WeakPtr<ewol::widget::PopUp>;
|
||||
using PopUpShared = ememory::SharedPtr<ewol::widget::PopUp>;
|
||||
using PopUpWeak = ememory::WeakPtr<ewol::widget::PopUp>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
*/
|
||||
|
@ -17,8 +17,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class ProgressBar;
|
||||
using ProgressBarShared = ewol::SharedPtr<ewol::widget::ProgressBar>;
|
||||
using ProgressBarWeak = ewol::WeakPtr<ewol::widget::ProgressBar>;
|
||||
using ProgressBarShared = ememory::SharedPtr<ewol::widget::ProgressBar>;
|
||||
using ProgressBarWeak = ememory::WeakPtr<ewol::widget::ProgressBar>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
*/
|
||||
|
@ -17,8 +17,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class Scroll;
|
||||
using ScrollShared = ewol::SharedPtr<ewol::widget::Scroll>;
|
||||
using ScrollWeak = ewol::WeakPtr<ewol::widget::Scroll>;
|
||||
using ScrollShared = ememory::SharedPtr<ewol::widget::Scroll>;
|
||||
using ScrollWeak = ememory::WeakPtr<ewol::widget::Scroll>;
|
||||
class Scroll : public ewol::widget::Container {
|
||||
public: // properties
|
||||
eproperty::Range<vec2> propertyLimit; //!< Set the limitation of the ratio in the sreen
|
||||
|
@ -14,8 +14,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class Select;
|
||||
using SelectShared = ewol::SharedPtr<ewol::widget::Select>;
|
||||
using SelectWeak = ewol::WeakPtr<ewol::widget::Select>;
|
||||
using SelectShared = ememory::SharedPtr<ewol::widget::Select>;
|
||||
using SelectWeak = ememory::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
|
||||
|
@ -17,8 +17,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class Sizer;
|
||||
using SizerShared = ewol::SharedPtr<ewol::widget::Sizer>;
|
||||
using SizerWeak = ewol::WeakPtr<ewol::widget::Sizer>;
|
||||
using SizerShared = ememory::SharedPtr<ewol::widget::Sizer>;
|
||||
using SizerWeak = ememory::WeakPtr<ewol::widget::Sizer>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
*/
|
||||
|
@ -17,8 +17,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class Slider;
|
||||
using SliderShared = ewol::SharedPtr<ewol::widget::Slider>;
|
||||
using SliderWeak = ewol::WeakPtr<ewol::widget::Slider>;
|
||||
using SliderShared = ememory::SharedPtr<ewol::widget::Slider>;
|
||||
using SliderWeak = ememory::WeakPtr<ewol::widget::Slider>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
*/
|
||||
|
@ -17,8 +17,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class Spacer;
|
||||
using SpacerShared = ewol::SharedPtr<ewol::widget::Spacer>;
|
||||
using SpacerWeak = ewol::WeakPtr<ewol::widget::Spacer>;
|
||||
using SpacerShared = ememory::SharedPtr<ewol::widget::Spacer>;
|
||||
using SpacerWeak = ememory::WeakPtr<ewol::widget::Spacer>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
*/
|
||||
|
@ -14,8 +14,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class Spin;
|
||||
using SpinShared = ewol::SharedPtr<ewol::widget::Spin>;
|
||||
using SpinWeak = ewol::WeakPtr<ewol::widget::Spin>;
|
||||
using SpinShared = ememory::SharedPtr<ewol::widget::Spin>;
|
||||
using SpinWeak = ememory::WeakPtr<ewol::widget::Spin>;
|
||||
/**
|
||||
* @brief a composed Spin is a Spin with an inside composed with the specify XML element
|
||||
* ==> this permit to generate standard element simple
|
||||
|
@ -16,8 +16,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class WSlider;
|
||||
using WSliderShared = ewol::SharedPtr<ewol::widget::WSlider>;
|
||||
using WSliderWeak = ewol::WeakPtr<ewol::widget::WSlider>;
|
||||
using WSliderShared = ememory::SharedPtr<ewol::widget::WSlider>;
|
||||
using WSliderWeak = ememory::WeakPtr<ewol::widget::WSlider>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
*/
|
||||
|
@ -22,8 +22,8 @@ namespace ewol {
|
||||
class Manager;
|
||||
class Windows;
|
||||
};
|
||||
using WidgetShared = ewol::SharedPtr<ewol::Widget>;
|
||||
using WidgetWeak = ewol::WeakPtr<ewol::Widget>;
|
||||
using WidgetShared = ememory::SharedPtr<ewol::Widget>;
|
||||
using WidgetWeak = ememory::WeakPtr<ewol::Widget>;
|
||||
};
|
||||
#include <gale/context/clipBoard.h>
|
||||
#include <gale/key/key.h>
|
||||
@ -528,7 +528,7 @@ namespace ewol {
|
||||
/**
|
||||
* @brief get the curent Windows
|
||||
*/
|
||||
ewol::SharedPtr<ewol::widget::Windows> getWindows();
|
||||
ememory::SharedPtr<ewol::widget::Windows> getWindows();
|
||||
/*
|
||||
* Annimation section :
|
||||
*/
|
||||
|
@ -18,8 +18,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class WidgetScrolled;
|
||||
using WidgetScrolledShared = ewol::SharedPtr<ewol::widget::WidgetScrolled>;
|
||||
using WidgetScrolledWeak = ewol::WeakPtr<ewol::widget::WidgetScrolled>;
|
||||
using WidgetScrolledShared = ememory::SharedPtr<ewol::widget::WidgetScrolled>;
|
||||
using WidgetScrolledWeak = ememory::WeakPtr<ewol::widget::WidgetScrolled>;
|
||||
/**
|
||||
* @brief Widget to integrate a scrool bar in a widget. This is not a stadalone widget.
|
||||
*/
|
||||
|
@ -17,8 +17,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class Windows;
|
||||
using WindowsShared = ewol::SharedPtr<ewol::widget::Windows>;
|
||||
using WindowsWeak = ewol::WeakPtr<ewol::widget::Windows>;
|
||||
using WindowsShared = ememory::SharedPtr<ewol::widget::Windows>;
|
||||
using WindowsWeak = ememory::WeakPtr<ewol::widget::Windows>;
|
||||
/**
|
||||
* @brief Windows basic interface
|
||||
*/
|
||||
|
@ -21,8 +21,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class ColorChooser;
|
||||
using ColorChooserShared = ewol::SharedPtr<ewol::widget::ColorChooser>;
|
||||
using ColorChooserWeak = ewol::WeakPtr<ewol::widget::ColorChooser>;
|
||||
using ColorChooserShared = ememory::SharedPtr<ewol::widget::ColorChooser>;
|
||||
using ColorChooserWeak = ememory::WeakPtr<ewol::widget::ColorChooser>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
*/
|
||||
|
@ -45,15 +45,15 @@ ewol::widget::FileChooser::FileChooser() :
|
||||
"",
|
||||
&ewol::widget::FileChooser::onChangePropertyFile),
|
||||
propertyLabelTitle(this, "title",
|
||||
"TRANSLATE:FileChooser",
|
||||
"_T{FileChooser}",
|
||||
"",
|
||||
&ewol::widget::FileChooser::onChangePropertyLabelTitle),
|
||||
propertyLabelValidate(this, "label-validate",
|
||||
"TRANSLATE:Validate",
|
||||
"_T{Validate}",
|
||||
"",
|
||||
&ewol::widget::FileChooser::onChangePropertyLabelValidate),
|
||||
propertyLabelCancel(this, "label-cancel",
|
||||
"TRANSLATE:Cancel",
|
||||
"_T{Cancel}",
|
||||
"",
|
||||
&ewol::widget::FileChooser::onChangePropertyLabelCancel) {
|
||||
addObjectType("ewol::widget::FileChooser");
|
||||
@ -66,19 +66,19 @@ void ewol::widget::FileChooser::init() {
|
||||
+ " <sizer mode='vert' lock='true' fill='true' expand='true'>\n"
|
||||
+ " <sizer mode='hori'>\n"
|
||||
+ " <checkbox name='[" + etk::to_string(getId()) + "]file-shooser:show-hiden-file'>\n"
|
||||
+ " <label>" + TRANSLATE("TRANSLATE:ShowHiddenFiles") + "</label>\n"
|
||||
+ " <label>_T{ShowHiddenFiles}</label>\n"
|
||||
+ " </checkbox>\n"
|
||||
+ " <spacer expand='true,false'/>\n"
|
||||
+ " <button name='[" + etk::to_string(getId()) + "]file-shooser:button-validate'>\n"
|
||||
+ " <sizer mode='hori'>\n"
|
||||
+ " <image src='{ewol}THEME:GUI:Load.edf' fill='true' size='7,7mm' distance-field='true'/>\n"
|
||||
+ " <label name='[" + etk::to_string(getId()) + "]file-shooser:validate-label'>" + TRANSLATE(propertyLabelValidate) + "</label>\n"
|
||||
+ " <label name='[" + etk::to_string(getId()) + "]file-shooser:validate-label'>" + *propertyLabelValidate + "</label>\n"
|
||||
+ " </sizer>\n"
|
||||
+ " </button>\n"
|
||||
+ " <button name='[" + etk::to_string(getId()) + "]file-shooser:button-cancel'>\n"
|
||||
+ " <sizer mode='hori'>\n"
|
||||
+ " <image src='{ewol}THEME:GUI:Remove.edf' fill='true' size='7,7mm' distance-field='true'/>\n"
|
||||
+ " <label name='[" + etk::to_string(getId()) + "]file-shooser:cancel-label'>" + TRANSLATE(propertyLabelCancel) + "</label>\n"
|
||||
+ " <label name='[" + etk::to_string(getId()) + "]file-shooser:cancel-label'>" + *propertyLabelCancel + "</label>\n"
|
||||
+ " </sizer>\n"
|
||||
+ " </button>\n"
|
||||
+ " </sizer>\n"
|
||||
@ -109,7 +109,7 @@ void ewol::widget::FileChooser::init() {
|
||||
+ " <entry name='[" + etk::to_string(getId()) + "]file-shooser:entry-folder' expand='true,false' fill='true,false'/>\n"
|
||||
+ " <image name='[" + etk::to_string(getId()) + "]file-shooser:img-home' src='{ewol}THEME:GUI:Home.edf' expand='false' size='8,8mm' distance-field='true'/>\n"
|
||||
+ " </sizer>\n"
|
||||
+ " <label name='[" + etk::to_string(getId()) + "]file-shooser:title-label'>" + TRANSLATE(propertyLabelTitle) + "</label>\n"
|
||||
+ " <label name='[" + etk::to_string(getId()) + "]file-shooser:title-label'>" + *propertyLabelTitle + "</label>\n"
|
||||
+ " </sizer>\n"
|
||||
+ "</popup>";
|
||||
loadFromString(myDescription);
|
||||
@ -149,15 +149,15 @@ void ewol::widget::FileChooser::onChangePropertyFile() {
|
||||
}
|
||||
|
||||
void ewol::widget::FileChooser::onChangePropertyLabelTitle() {
|
||||
propertySetOnWidgetNamed("[" + etk::to_string(getId()) + "]file-shooser:title-label", "value", TRANSLATE(propertyLabelTitle));
|
||||
propertySetOnWidgetNamed("[" + etk::to_string(getId()) + "]file-shooser:title-label", "value", propertyLabelTitle);
|
||||
}
|
||||
|
||||
void ewol::widget::FileChooser::onChangePropertyLabelValidate() {
|
||||
propertySetOnWidgetNamed("[" + etk::to_string(getId()) + "]file-shooser:validate-label", "value", TRANSLATE(propertyLabelValidate));
|
||||
propertySetOnWidgetNamed("[" + etk::to_string(getId()) + "]file-shooser:validate-label", "value", propertyLabelValidate);
|
||||
}
|
||||
|
||||
void ewol::widget::FileChooser::onChangePropertyLabelCancel() {
|
||||
propertySetOnWidgetNamed("[" + etk::to_string(getId()) + "]file-shooser:cancel-label", "value", TRANSLATE(propertyLabelCancel));
|
||||
propertySetOnWidgetNamed("[" + etk::to_string(getId()) + "]file-shooser:cancel-label", "value", propertyLabelCancel);
|
||||
}
|
||||
|
||||
void ewol::widget::FileChooser::onCallbackEntryFolderChangeValue(const std::string& _value) {
|
||||
|
@ -15,8 +15,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class FileChooser;
|
||||
using FileChooserShared = ewol::SharedPtr<ewol::widget::FileChooser>;
|
||||
using FileChooserWeak = ewol::WeakPtr<ewol::widget::FileChooser>;
|
||||
using FileChooserShared = ememory::SharedPtr<ewol::widget::FileChooser>;
|
||||
using FileChooserWeak = ememory::WeakPtr<ewol::widget::FileChooser>;
|
||||
/**
|
||||
* @brief File Chooser is a simple selector of file for opening, saving, and what you want ...
|
||||
*
|
||||
|
@ -24,7 +24,7 @@
|
||||
ewol::widget::Parameter::Parameter() :
|
||||
signalClose(this, "close", ""),
|
||||
propertyLabelTitle(this, "title",
|
||||
"TRANSLATE:Parameter",
|
||||
"_T{Parameter}",
|
||||
"Title of the parameter interface",
|
||||
&ewol::widget::Parameter::onChangePropertyLabelTitle),
|
||||
m_currentIdList(0),
|
||||
@ -76,9 +76,9 @@ void ewol::widget::Parameter::init() {
|
||||
EWOL_ERROR("Can not allocate widget == > display might be in error");
|
||||
} else {
|
||||
tmpButton->setSubWidget(ewol::widget::composerGenerateString(
|
||||
"<sizer mode=\"hori\">\n"
|
||||
" <image src=\"{ewol}THEME:GUI:Save.svg\" expand=\"true\" size=\"8,8mm\"/>\n"
|
||||
" <label>Save</label>\n"
|
||||
"<sizer mode='hori'>\n"
|
||||
" <image src='{ewol}THEME:GUI:Save.svg' expand='true' size='8,8mm'/>\n"
|
||||
" <label>_T{Save}</label>\n"
|
||||
"</sizer>\n"));
|
||||
tmpButton->signalPressed.connect(shared_from_this(), &ewol::widget::Parameter::onCallbackParameterSave);
|
||||
mySizerHori->subWidgetAdd(tmpButton);
|
||||
@ -98,9 +98,9 @@ void ewol::widget::Parameter::init() {
|
||||
EWOL_ERROR("Can not allocate widget == > display might be in error");
|
||||
} else {
|
||||
tmpButton->setSubWidget(ewol::widget::composerGenerateString(
|
||||
"<sizer mode=\"hori\">\n"
|
||||
" <image src=\"{ewol}THEME:GUI:Remove.svg\" expand=\"true\" size=\"8,8mm\"/>\n"
|
||||
" <label>Close</label>\n"
|
||||
"<sizer mode='hori'>\n"
|
||||
" <image src='{ewol}THEME:GUI:Remove.svg' expand='true' size='8,8mm'/>\n"
|
||||
" <label>_T{Close}</label>\n"
|
||||
"</sizer>\n"));
|
||||
tmpButton->signalPressed.connect(shared_from_this(), &ewol::widget::Parameter::onCallbackMenuclosed);
|
||||
mySizerHori->subWidgetAdd(tmpButton);
|
||||
@ -177,7 +177,7 @@ void ewol::widget::Parameter::init() {
|
||||
if (m_widgetTitle == nullptr) {
|
||||
EWOL_ERROR("Can not allocate widget == > display might be in error");
|
||||
} else {
|
||||
m_widgetTitle->propertyValue.set(TRANSLATE(propertyLabelTitle));
|
||||
m_widgetTitle->propertyValue.set(propertyLabelTitle);
|
||||
m_widgetTitle->propertyExpand.set(bvec2(true,false));
|
||||
mySizerVert->subWidgetAdd(m_widgetTitle);
|
||||
}
|
||||
@ -191,7 +191,7 @@ ewol::widget::Parameter::~Parameter() {
|
||||
|
||||
void ewol::widget::Parameter::onChangePropertyLabelTitle() {
|
||||
if (m_widgetTitle != nullptr) {
|
||||
m_widgetTitle->propertyValue.set(TRANSLATE(propertyLabelTitle));
|
||||
m_widgetTitle->propertyValue.set(propertyLabelTitle);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -22,8 +22,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class Parameter;
|
||||
using ParameterShared = ewol::SharedPtr<ewol::widget::Parameter>;
|
||||
using ParameterWeak = ewol::WeakPtr<ewol::widget::Parameter>;
|
||||
using ParameterShared = ememory::SharedPtr<ewol::widget::Parameter>;
|
||||
using ParameterWeak = ememory::WeakPtr<ewol::widget::Parameter>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
*/
|
||||
|
@ -30,8 +30,8 @@ namespace ewol {
|
||||
virtual ~elementPL() {};
|
||||
};
|
||||
class ParameterList;
|
||||
using ParameterListShared = ewol::SharedPtr<ewol::widget::ParameterList>;
|
||||
using ParameterListWeak = ewol::WeakPtr<ewol::widget::ParameterList>;
|
||||
using ParameterListShared = ememory::SharedPtr<ewol::widget::ParameterList>;
|
||||
using ParameterListWeak = ememory::WeakPtr<ewol::widget::ParameterList>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
*/
|
||||
|
@ -58,8 +58,8 @@ namespace ewol {
|
||||
spinPosition_RightRight
|
||||
};
|
||||
class SpinBase;
|
||||
using SpinBaseShared = ewol::SharedPtr<ewol::widget::SpinBase>;
|
||||
using SpinBaseWeak = ewol::WeakPtr<ewol::widget::SpinBase>;
|
||||
using SpinBaseShared = ememory::SharedPtr<ewol::widget::SpinBase>;
|
||||
using SpinBaseWeak = ememory::WeakPtr<ewol::widget::SpinBase>;
|
||||
/**
|
||||
* @ingroup ewolWidgetGroup
|
||||
*/
|
||||
|
@ -14,8 +14,8 @@
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
class StdPopUp;
|
||||
using StdPopUpShared = ewol::SharedPtr<ewol::widget::StdPopUp>;
|
||||
using StdPopUpWeak = ewol::WeakPtr<ewol::widget::StdPopUp>;
|
||||
using StdPopUpShared = ememory::SharedPtr<ewol::widget::StdPopUp>;
|
||||
using StdPopUpWeak = ememory::WeakPtr<ewol::widget::StdPopUp>;
|
||||
/**
|
||||
* @brief The std pop up widget is a siple message widget to notify user of some simple things, like:
|
||||
*
|
||||
|
@ -48,8 +48,7 @@ def create(target, module_name):
|
||||
'ewol/Padding.h',
|
||||
'ewol/translate.h',
|
||||
'ewol/DrawProperty.h',
|
||||
'ewol/gravity.h',
|
||||
'ewol/memory.h'
|
||||
'ewol/gravity.h'
|
||||
])
|
||||
|
||||
# compositing:
|
||||
@ -239,9 +238,11 @@ def create(target, module_name):
|
||||
|
||||
# name of the dependency
|
||||
my_module.add_module_depend([
|
||||
'elog',
|
||||
'etk',
|
||||
'esignal',
|
||||
'eproperty',
|
||||
'ememory',
|
||||
'gale',
|
||||
'freetype',
|
||||
'exml',
|
||||
|
Loading…
x
Reference in New Issue
Block a user