[DEV] Save configuration of the user

This commit is contained in:
2013-05-28 22:09:53 +02:00
parent 421dc0c404
commit dcdfbe3647
6 changed files with 127 additions and 27 deletions

View File

@@ -234,7 +234,7 @@ MainWindows::MainWindows(void)
// add generic shortcut ...
// (shift, control, alt, meta, uniChar_t unicodeValue, const char * generateEventId, etk::UString& data)
ShortCutAdd("ctrl+o", ednMsgGuiOpen, "", true);
ShortCutAdd("ctrl+n", ednMsgGuiNew, "", true);
ShortCutAdd("ctrl+n", ednMsgGuiNew, "", true);
ShortCutAdd("ctrl+s", ednMsgGuiSave, "current", true);
ShortCutAdd("ctrl+shift+s", ednMsgGuiSave, "All", true);
@@ -384,6 +384,8 @@ void MainWindows::OnReceiveMessage(const ewol::EMessage& _msg)
} else if (_msg.GetMessage() == ednMsgGuiReloadShader) {
ewol::resource::ReLoadResources();
ewol::ForceRedrawAll();
} else if (_msg.GetMessage() == ednMsgGuiExit) {
// TODO ...
}
return;