- this stuff is ported

SVN revision: 15122
This commit is contained in:
Dan Sinclair 2005-06-04 18:58:30 +00:00 committed by Dan Sinclair
parent 0eecbfd981
commit 69ed8ee266
2 changed files with 0 additions and 30 deletions

View File

@ -543,20 +543,6 @@ _e_ipc_cb_client_data(void *data __UNUSED__, int type __UNUSED__, void *event)
e_config->zone_desks_y_count,
E_IPC_OP_DESKS_GET_REPLY);
break;
case E_IPC_OP_FOCUS_POLICY_SET:
e_border_button_bindings_ungrab_all();
if (e_ipc_codec_int_dec(e->data, e->size,
&(e_config->focus_policy)))
{
e_config_save_queue();
}
e_border_button_bindings_grab_all();
break;
case E_IPC_OP_FOCUS_POLICY_GET:
_e_ipc_reply_int_send(e->client,
e_config->focus_policy,
E_IPC_OP_FOCUS_POLICY_GET_REPLY);
break;
case E_IPC_OP_MODULE_DIRS_APPEND:
{
char * dir;

View File

@ -1267,22 +1267,6 @@ _e_ipc_cb_server_data(void *data, int type, void *event)
printf("REPLY: %i %i\n", val1, val2);
}
break;
case E_IPC_OP_FOCUS_POLICY_GET_REPLY:
if (e->data)
{
int value;
if (e_ipc_codec_int_dec(e->data, e->size,
&(value)))
{
if (value == E_FOCUS_MOUSE)
printf("REPLY: MOUSE\n");
else if (value == E_FOCUS_CLICK)
printf("REPLY: CLICK\n");
}
}
break;
default:
break;
}