[DEV] remove deprecated API

This commit is contained in:
Edouard DUPIN 2014-10-19 23:04:54 +02:00
parent 36495518ac
commit d8d02254ca
2 changed files with 0 additions and 12 deletions

View File

@ -28,7 +28,6 @@ ewol::widget::Windows::Windows() :
m_colorBg(-1) {
addObjectType("ewol::widget::Windows");
setCanHaveFocus(true);
setDecorationDisable();
m_colorProperty = ewol::resource::ColorFile::create("THEME:COLOR:Windows.json");
if (m_colorProperty != nullptr) {
m_colorBg = m_colorProperty->request("background");

View File

@ -49,17 +49,6 @@ namespace ewol {
virtual void onStateForeground() {};
virtual void onStateSuspend() {};
virtual void onStateResume() {};
virtual void on() { };
private:
bool m_hasDecoration;
public:
void setDecorationDisable() {
m_hasDecoration = false;
}
void setDecorationEnable() {
m_hasDecoration = true;
}
private:
std::shared_ptr<ewol::Widget> m_subWidget;
std::list<std::shared_ptr<ewol::Widget>> m_popUpWidgetList;