add sugusr1 to bring uo std config panel

SVN revision: 45929
This commit is contained in:
Carsten Haitzler 2010-02-06 09:47:17 +00:00
parent c14491ffd0
commit f274652e1f
1 changed files with 24 additions and 0 deletions

View File

@ -77,6 +77,7 @@ static int _e_main_path_shutdown(void);
static void _e_main_cb_x_fatal(void *data);
static int _e_main_cb_signal_exit(void *data, int ev_type, void *ev);
static int _e_main_cb_signal_hup(void *data, int ev_type, void *ev);
static int _e_main_cb_signal_user(void *data, int ev_type, void *ev);
static int _e_main_cb_x_flusher(void *data);
static int _e_main_cb_idler_before(void *data);
static int _e_main_cb_idler_after(void *data);
@ -429,6 +430,12 @@ main(int argc, char **argv)
"Perhaps you are out of memory?"));
_e_main_shutdown(-1);
}
if (!ecore_event_handler_add(ECORE_EVENT_SIGNAL_USER, _e_main_cb_signal_user, NULL))
{
e_error_message_show(_("Enlightenment cannot set up a USER signal handler.\n"
"Perhaps you are out of memory?"));
_e_main_shutdown(-1);
}
/* an idle enterer to be called before all others */
_e_main_idle_enterer_before = ecore_idle_enterer_before_add(_e_main_cb_idler_before, NULL);
@ -1494,6 +1501,23 @@ _e_main_cb_signal_hup(void *data __UNUSED__, int ev_type __UNUSED__, void *ev __
return 1;
}
static int
_e_main_cb_signal_user(void *data __UNUSED__, int ev_type __UNUSED__, void *ev)
{
Ecore_Event_Signal_User *e = ev;
if (e->number == 1)
{
E_Action *a = e_action_find("configuration");
if ((a) && (a->func.go)) a->func.go(NULL, NULL);
}
else if (e->number == 2)
{
// FIXME: another core util for doing things with e
}
return 1;
}
static int
_e_main_cb_x_flusher(void *data __UNUSED__)
{