diff --git a/src/bin/e_ipc_handlers.h b/src/bin/e_ipc_handlers.h index f0432582f..ceca741e6 100644 --- a/src/bin/e_ipc_handlers.h +++ b/src/bin/e_ipc_handlers.h @@ -5069,3 +5069,17 @@ break; #endif #undef HDL +/****************************************************************************/ +#define HDL E_IPC_OP_CONFIGURATION_PANEL_SHOW +#if (TYPE == E_REMOTE_OPTIONS) + OP("-configuration-panel-show", 0, "Show the configuration panel", 0, HDL) +#elif (TYPE == E_REMOTE_OUT) + REQ_NULL(HDL) +#elif (TYPE == E_WM_IN) + GENERIC(HDL); + e_configure_show(e_container_current_get(e_manager_current_get())); + END_GENERIC(); +#elif (TYPE == E_REMOTE_IN) +#endif +#undef HDL + diff --git a/src/bin/e_ipc_handlers_list.h b/src/bin/e_ipc_handlers_list.h index 6167883c3..697ed5fc7 100644 --- a/src/bin/e_ipc_handlers_list.h +++ b/src/bin/e_ipc_handlers_list.h @@ -262,3 +262,4 @@ #define E_IPC_OP_WINDOW_PLACEMENT_POLICY_GET 259 #define E_IPC_OP_WINDOW_PLACEMENT_POLICY_GET_REPLY 260 +#define E_IPC_OP_CONFIGURATION_PANEL_SHOW 261