示例#1
0
void wxLuaFreezeApp::OnLua(wxLuaEvent &event)
{
    OutputPrint(event.GetString());

    //if (event.GetEventType() == wxEVT_LUA_PRINT)
    //else if (event.GetEventType() == wxEVT_LUA_ERROR)
}
示例#2
0
文件: handlr.cpp 项目: fur-q/handlr
void HandlrApp::OnLuaPrint(wxLuaEvent &event) {
    wxLogMessage(event.GetString());
}
示例#3
0
文件: handlr.cpp 项目: fur-q/handlr
void HandlrApp::OnLuaError(wxLuaEvent &event) {
    OutputPrint(event.GetString());
}