1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
/*
Event callbacks initialization
Copyright (C) 2011-2025
Free Software Foundation, Inc.
Written by:
Slava Zanko <slavazanko@gmail.com>, 2011.
This file is part of the Midnight Commander.
The Midnight Commander 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 3 of the License,
or (at your option) any later version.
The Midnight Commander 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, see <https://www.gnu.org/licenses/>.
*/
#include <config.h>
#include "lib/global.h"
#include "lib/event.h"
#ifdef ENABLE_BACKGROUND
#include "background.h" // (background_parent_call), background_parent_call_string()
#endif
#include "clipboard.h" // clipboard events
#include "execute.h" // execute_suspend()
#include "help.h" // help_interactive_display()
#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 **mcerror)
{
static const 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 },
#ifdef ENABLE_BACKGROUND
{ MCEVENT_GROUP_CORE, "background_parent_call", background_parent_call, NULL },
{ MCEVENT_GROUP_CORE, "background_parent_call_string", background_parent_call_string,
NULL },
#endif
{ NULL, NULL, NULL, NULL },
};
if (!mc_event_init (mcerror))
return FALSE;
return mc_event_mass_add (standard_events, mcerror);
}
/* --------------------------------------------------------------------------------------------- */
|