X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Frunxdg.cpp;h=e4ec1c932d8b6d0fea8cc2e24942cee80da0edab;hb=f7ac2f42c22b8324cc30b50dc255f85df406765a;hp=33d5324d7c143305313df4af3d45654e0368ad43;hpb=415e5cbb5787aa0429558b5256bf912231297431;p=staging%2Fxdg-launcher.git diff --git a/src/runxdg.cpp b/src/runxdg.cpp index 33d5324..e4ec1c9 100644 --- a/src/runxdg.cpp +++ b/src/runxdg.cpp @@ -283,22 +283,22 @@ int RunXDG::init_wm (void) std::function< void(json_object*) > h_active = [this](json_object* object) { AGL_DEBUG("Got Event_Active"); - t_ilm_surface s_ids[1] = { this->m_ivi_id }; - ilm_setInputFocus(s_ids, 1, ILM_INPUT_DEVICE_KEYBOARD, ILM_TRUE); }; std::function< void(json_object*) > h_inactive = [this](json_object* object) { AGL_DEBUG("Got Event_Inactive"); - t_ilm_surface s_ids[1] = { this->m_ivi_id }; - ilm_setInputFocus(s_ids, 1, ILM_INPUT_DEVICE_KEYBOARD, ILM_FALSE); }; - std::function< void(json_object*) > h_visible = [](json_object* object) { + std::function< void(json_object*) > h_visible = [this](json_object* object) { AGL_DEBUG("Got Event_Visible"); + t_ilm_surface s_ids[1] = { this->m_ivi_id }; + ilm_setInputFocus(s_ids, 1, ILM_INPUT_DEVICE_KEYBOARD, ILM_TRUE); }; - std::function< void(json_object*) > h_invisible = [](json_object* object) { + std::function< void(json_object*) > h_invisible = [this](json_object* object) { AGL_DEBUG("Got Event_Invisible"); + t_ilm_surface s_ids[1] = { this->m_ivi_id }; + ilm_setInputFocus(s_ids, 1, ILM_INPUT_DEVICE_KEYBOARD, ILM_FALSE); }; std::function< void(json_object*) > h_syncdraw = @@ -333,7 +333,7 @@ int RunXDG::init_hs (void) AGL_DEBUG("Activesurface %s ", this->m_role.c_str()); this->m_wm->activateWindow(this->m_role.c_str(), AREA_NORMAL_FULL); }; - m_hs->set_event_handler(LibHomeScreen::Event_TapShortcut, handler); + m_hs->set_event_handler(LibHomeScreen::Event_ShowWindow, handler); std::function< void(json_object*) > h_default= [](json_object* object) { const char *j_str = json_object_to_json_string(object);