56 lines
1.7 KiB
C++
56 lines
1.7 KiB
C++
/** @file
|
|
* @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/Container.h>
|
|
|
|
namespace ewol {
|
|
namespace widget {
|
|
class 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
|
|
*/
|
|
class Composer : public ewol::widget::Container {
|
|
public:
|
|
eproperty::Value<bool> propertyRemoveIfUnderRemove; //!< Remove the composer if sub element request a remove
|
|
protected:
|
|
/**
|
|
* @brief Constructor
|
|
*/
|
|
Composer();
|
|
public:
|
|
DECLARE_WIDGET_FACTORY(Composer, "Composer");
|
|
/**
|
|
* @brief Destructor
|
|
*/
|
|
virtual ~Composer();
|
|
/**
|
|
* @brief load a composition with a file
|
|
* @param[in] _fileName Name of the file
|
|
* @return true == > all done OK
|
|
* @return false == > some error occured
|
|
*/
|
|
bool loadFromFile(const std::string& _fileName);
|
|
/**
|
|
* @brief load a composition with a file
|
|
* @param[in] _composerXmlString xml to parse directly
|
|
* @return true == > all done OK
|
|
* @return false == > some error occured
|
|
*/
|
|
bool loadFromString(const std::string& _composerXmlString);
|
|
private:
|
|
void requestDestroyFromChild(const ewol::ObjectShared& _child) override;
|
|
};
|
|
ewol::WidgetShared composerGenerateString(const std::string& _data = "");
|
|
ewol::WidgetShared composerGenerateFile(const std::string& _data = "");
|
|
};
|
|
};
|