mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 18:14:25 +03:00
a01b8edd7a
Signed-off-by: Slava Zanko <slavazanko@gmail.com>
77 lines
2.9 KiB
C
77 lines
2.9 KiB
C
/* Event callbacks initialization
|
|
|
|
Copyright (C) 2011 Free Software Foundation, Inc.
|
|
|
|
Written by:
|
|
Slava Zanko <slavazanko@gmail.com>, 2011.
|
|
|
|
This file is part of the Midnight Commander.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
|
|
|
|
#include <config.h>
|
|
|
|
#include "lib/global.h"
|
|
|
|
#include "lib/event.h"
|
|
|
|
#include "clipboard.h" /* clipboard events */
|
|
#include "help.h" /* help_interactive_display() */
|
|
#include "execute.h" /* execute_suspend() */
|
|
|
|
#include "events_init.h"
|
|
|
|
/*** global variables ****************************************************************************/
|
|
|
|
/*** file scope macro definitions ****************************************************************/
|
|
|
|
/*** file scope type declarations ****************************************************************/
|
|
|
|
/*** file scope variables ************************************************************************/
|
|
|
|
|
|
/*** file scope functions ************************************************************************/
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
/*** public functions ****************************************************************************/
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
gboolean
|
|
events_init (GError ** error)
|
|
{
|
|
/* *INDENT-OFF* */
|
|
event_init_t standard_events[] =
|
|
{
|
|
{MCEVENT_GROUP_CORE, "clipboard_file_to_ext_clip", clipboard_file_to_ext_clip, NULL},
|
|
{MCEVENT_GROUP_CORE, "clipboard_file_from_ext_clip", clipboard_file_from_ext_clip, NULL},
|
|
{MCEVENT_GROUP_CORE, "clipboard_text_to_file", clipboard_text_to_file, NULL},
|
|
{MCEVENT_GROUP_CORE, "clipboard_text_from_file", clipboard_text_from_file, NULL},
|
|
|
|
{MCEVENT_GROUP_CORE, "help", help_interactive_display, NULL},
|
|
{MCEVENT_GROUP_CORE, "suspend", execute_suspend, NULL},
|
|
|
|
{NULL, NULL, NULL, NULL}
|
|
};
|
|
/* *INDENT-ON* */
|
|
|
|
if (!mc_event_init (error))
|
|
return FALSE;
|
|
|
|
return mc_event_mass_add (standard_events, error);
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|