/*
- * Copyright (c) 2021 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2022 Samsung Electronics Co., Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
/////////////////////////////////////////////////////////////////////////////////////////////////
// Window Auxiliary Message Callbacks
/////////////////////////////////////////////////////////////////////////////////////////////////
-static Eina_Bool EcoreEventWindowAuxiliaryMessage(void *data, int type, void *event)
+static Eina_Bool EcoreEventWindowAuxiliaryMessage(void* data, int type, void* event)
{
- WindowBaseEcoreWl2* windowBase = static_cast<WindowBaseEcoreWl2*>(data);
+ WindowBaseEcoreWl2* windowBase = static_cast<WindowBaseEcoreWl2*>(data);
if(windowBase)
{
windowBase->OnEcoreEventWindowAuxiliaryMessage(event);
void WindowBaseEcoreWl2::OnEcoreEventWindowAuxiliaryMessage(void* event)
{
- Ecore_Wl2_Event_Aux_Message *message = static_cast<Ecore_Wl2_Event_Aux_Message*>(event);
- if(message)
- {
- DALI_LOG_RELEASE_INFO("WindowBaseEcoreWl2::OnEcoreEventWindowAuxiliaryMessage, key:%s, value:%s \n",message->key, message->val);
- std::string key(message->key);
- std::string value(message->val);
- Dali::Property::Array options;
+ Ecore_Wl2_Event_Aux_Message* message = static_cast<Ecore_Wl2_Event_Aux_Message*>(event);
+ if(message)
+ {
+ DALI_LOG_RELEASE_INFO("WindowBaseEcoreWl2::OnEcoreEventWindowAuxiliaryMessage, key:%s, value:%s \n", message->key, message->val);
+ std::string key(message->key);
+ std::string value(message->val);
+ Dali::Property::Array options;
- if(message->options)
- {
- Eina_List *l;
- void* data;
- EINA_LIST_FOREACH(message->options, l, data)
- {
- DALI_LOG_RELEASE_INFO("WindowBaseEcoreWl2::OnEcoreEventWindowAuxiliaryMessage, option: %s\n",(char*)data);
- std::string option(static_cast<char*>(data));
- options.Add(option);
- }
- }
+ if(message->options)
+ {
+ Eina_List* l;
+ void* data;
+ EINA_LIST_FOREACH(message->options, l, data)
+ {
+ DALI_LOG_RELEASE_INFO("WindowBaseEcoreWl2::OnEcoreEventWindowAuxiliaryMessage, option: %s\n", (char*)data);
+ std::string option(static_cast<char*>(data));
+ options.Add(option);
+ }
+ }
- mAuxiliaryMessageSignal.Emit(key, value, options);
- }
+ mAuxiliaryMessageSignal.Emit(key, value, options);
+ }
}
-
void WindowBaseEcoreWl2::KeymapChanged(void* data, int type, void* event)
{
Ecore_Wl2_Event_Seat_Keymap_Changed* changed = static_cast<Ecore_Wl2_Event_Seat_Keymap_Changed*>(event);
EINA_ITERATOR_FOREACH(globals, global)
{
- if(strcmp(global->interface, "wl_input_panel") == 0)
+ if(strcmp(global->interface, "zwp_input_panel_v1") == 0)
{
- mWlInputPanel = (wl_input_panel*)wl_registry_bind(registry, global->id, &wl_input_panel_interface, 1);
+ mWlInputPanel = (zwp_input_panel_v1*)wl_registry_bind(registry, global->id, &zwp_input_panel_v1_interface, 1);
}
else if(strcmp(global->interface, "wl_output") == 0)
{
return;
}
- mWlInputPanelSurface = wl_input_panel_get_input_panel_surface(mWlInputPanel, mWlSurface);
+ mWlInputPanelSurface = zwp_input_panel_v1_get_input_panel_surface(mWlInputPanel, mWlSurface);
if(!mWlInputPanelSurface)
{
DALI_LOG_ERROR("WindowBaseEcoreWl2::InitializeIme(), fail to get wayland input panel surface\n");
return;
}
- wl_input_panel_surface_set_toplevel(mWlInputPanelSurface, mWlOutput, WL_INPUT_PANEL_SURFACE_POSITION_CENTER_BOTTOM);
+ zwp_input_panel_surface_v1_set_toplevel(mWlInputPanelSurface, mWlOutput, ZWP_INPUT_PANEL_SURFACE_V1_POSITION_CENTER_BOTTOM);
}
void WindowBaseEcoreWl2::ImeWindowReadyToRender()
return;
}
- wl_input_panel_surface_set_ready(mWlInputPanelSurface, 1);
+ zwp_input_panel_surface_v1_set_ready(mWlInputPanelSurface, 1);
}
void WindowBaseEcoreWl2::RequestMoveToServer()
#define DALI_INTERNAL_WINDOWSYSTEM_TIZENWAYLAND_WINDOW_BASE_ECORE_WL2_H
/*
- * Copyright (c) 2021 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2022 Samsung Electronics Co., Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
*/
void OnEcoreEventWindowAuxiliaryMessage(void* event);
-
#ifdef DALI_ELDBUS_AVAILABLE
/**
* @brief Called when Ecore ElDBus accessibility event is received.
Dali::Vector<Ecore_Event_Handler*> mEcoreEventHandler;
Ecore_Wl2_Window* mEcoreWindow;
- wl_surface* mWlSurface;
- wl_input_panel* mWlInputPanel;
- wl_output* mWlOutput;
- wl_input_panel_surface* mWlInputPanelSurface;
+ wl_surface* mWlSurface;
+ zwp_input_panel_v1* mWlInputPanel;
+ wl_output* mWlOutput;
+ zwp_input_panel_surface_v1* mWlInputPanelSurface;
wl_egl_window* mEglWindow;
wl_display* mDisplay;