[DEV] corrrect internal bug link with exml portage
This commit is contained in:
parent
ac0ab974f6
commit
c7efaf95ab
@ -43,10 +43,6 @@ namespace appl {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#undef __class__
|
|
||||||
#define __class__ "AboutGui"
|
|
||||||
|
|
||||||
#include <ewol/widget/Label.h>
|
#include <ewol/widget/Label.h>
|
||||||
#include <ewol/widget/Spacer.h>
|
#include <ewol/widget/Spacer.h>
|
||||||
|
|
||||||
@ -94,10 +90,6 @@ class ParameterAboutGui : public ewol::widget::Sizer {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
#undef __class__
|
|
||||||
#define __class__ "MainWindows"
|
|
||||||
|
|
||||||
MainWindows::MainWindows() {
|
MainWindows::MainWindows() {
|
||||||
addObjectType("appl::MainWindows");
|
addObjectType("appl::MainWindows");
|
||||||
}
|
}
|
||||||
@ -324,12 +316,14 @@ void MainWindows::onCallbackMenuEvent(const std::string& _value) {
|
|||||||
APPL_TODO("Event from Menu : " << _value);
|
APPL_TODO("Event from Menu : " << _value);
|
||||||
} else if ( _value == "menu:color:color/black/"
|
} else if ( _value == "menu:color:color/black/"
|
||||||
|| _value == "menu:color:color/white/") {
|
|| _value == "menu:color:color/white/") {
|
||||||
etk::theme::setName("COLOR", std::string(_value, 12));
|
etk::theme::setName("COLOR", std::string(_value, 11));
|
||||||
|
EWOL_ERROR("Select Shape or Color : 'COLOR'='" << std::string(_value, 11) << "'");
|
||||||
ewol::getContext().getResourcesManager().reLoadResources();
|
ewol::getContext().getResourcesManager().reLoadResources();
|
||||||
ewol::getContext().forceRedrawAll();
|
ewol::getContext().forceRedrawAll();
|
||||||
} else if ( _value == "menu:shape:shape/square/"
|
} else if ( _value == "menu:shape:shape/square/"
|
||||||
|| _value == "menu:shape:shape/round/") {
|
|| _value == "menu:shape:shape/round/") {
|
||||||
etk::theme::setName("GUI", std::string(_value, 12));
|
EWOL_ERROR("Select Shape or Color : 'GUI'='" << std::string(_value, 11) << "'");
|
||||||
|
etk::theme::setName("GUI", std::string(_value, 11));
|
||||||
ewol::getContext().getResourcesManager().reLoadResources();
|
ewol::getContext().getResourcesManager().reLoadResources();
|
||||||
ewol::getContext().forceRedrawAll();
|
ewol::getContext().forceRedrawAll();
|
||||||
} else if (_value == "menu:reloadShape") {
|
} else if (_value == "menu:reloadShape") {
|
||||||
@ -347,6 +341,9 @@ void MainWindows::onCallbackMenuEvent(const std::string& _value) {
|
|||||||
} else if (_value == "menu:split:hori") {
|
} else if (_value == "menu:split:hori") {
|
||||||
propertySetOnWidgetNamed("appl-view-code-sizer", "mode", "hori");
|
propertySetOnWidgetNamed("appl-view-code-sizer", "mode", "hori");
|
||||||
propertySetOnWidgetNamed("appl-text-separator", "expand", "false,true");
|
propertySetOnWidgetNamed("appl-text-separator", "expand", "false,true");
|
||||||
|
} else if (_value == "menu:reloade-shader") {
|
||||||
|
ewol::getContext().getResourcesManager().reLoadResources();
|
||||||
|
ewol::getContext().forceRedrawAll();
|
||||||
} else {
|
} else {
|
||||||
APPL_ERROR("Event from Menu UNKNOW : '" << _value << "'");
|
APPL_ERROR("Event from Menu UNKNOW : '" << _value << "'");
|
||||||
}
|
}
|
||||||
|
@ -28,9 +28,6 @@
|
|||||||
#include <appl/ctags/readtags.h>
|
#include <appl/ctags/readtags.h>
|
||||||
#include <appl/globalMsg.h>
|
#include <appl/globalMsg.h>
|
||||||
|
|
||||||
#undef __class__
|
|
||||||
#define __class__ "MainApplication"
|
|
||||||
|
|
||||||
class MainApplication : public ewol::context::Application {
|
class MainApplication : public ewol::context::Application {
|
||||||
private:
|
private:
|
||||||
std::shared_ptr<appl::BufferManager> m_bufferManager;
|
std::shared_ptr<appl::BufferManager> m_bufferManager;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user