mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 21:06:52 +03:00
82b27ead4d
Formerly, each widget loaded its history self in its constructor. Thus, history file was read as many times as many widgets with history are in dialog. Now all widget histories are read from ${XDG_CACHE_HOME}/mc/history file at one time after dialog initialization. The ev_history_load_save_t event is apllied to load histories. Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
86 lines
2.1 KiB
C
86 lines
2.1 KiB
C
#ifndef MC__EVENT_TYPES_H
|
|
#define MC__EVENT_TYPES_H
|
|
|
|
#include <stdarg.h>
|
|
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
|
|
|
/* Event groups for main modules */
|
|
#define MCEVENT_GROUP_CORE "Core"
|
|
#define MCEVENT_GROUP_DIALOG "Dialog"
|
|
#define MCEVENT_GROUP_DIFFVIEWER "DiffViewer"
|
|
#define MCEVENT_GROUP_EDITOR "Editor"
|
|
#define MCEVENT_GROUP_FILEMANAGER "FileManager"
|
|
#define MCEVENT_GROUP_VIEWER "Viewer"
|
|
|
|
/* Events */
|
|
#define MCEVENT_HISTORY_LOAD "history_load"
|
|
#define MCEVENT_HISTORY_SAVE "history_save"
|
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
/* MCEVENT_GROUP_CORE:vfs_timestamp */
|
|
struct vfs_class;
|
|
typedef struct
|
|
{
|
|
struct vfs_class *vclass;
|
|
gpointer id;
|
|
gboolean ret;
|
|
} ev_vfs_stamp_create_t;
|
|
|
|
/* MCEVENT_GROUP_CORE:vfs_print_message */
|
|
typedef struct
|
|
{
|
|
const char *msg;
|
|
va_list ap;
|
|
} ev_vfs_print_message_t;
|
|
|
|
/* MCEVENT_GROUP_CORE:clipboard_text_from_file */
|
|
typedef struct
|
|
{
|
|
char **text;
|
|
gboolean ret;
|
|
} ev_clipboard_text_from_file_t;
|
|
|
|
/* MCEVENT_GROUP_CORE:help */
|
|
typedef struct
|
|
{
|
|
const char *filename;
|
|
const char *node;
|
|
} ev_help_t;
|
|
|
|
/* MCEVENT_GROUP_CORE:background_parent_call */
|
|
/* MCEVENT_GROUP_CORE:background_parent_call_string */
|
|
typedef struct
|
|
{
|
|
void *routine;
|
|
gpointer *ctx;
|
|
int argc;
|
|
va_list ap;
|
|
union
|
|
{
|
|
int i;
|
|
char *s;
|
|
} ret;
|
|
} ev_background_parent_call_t;
|
|
|
|
/* MCEVENT_GROUP_DIALOG:history_load */
|
|
/* MCEVENT_GROUP_DIALOG:history_save */
|
|
struct mc_config_t;
|
|
struct Widget;
|
|
typedef struct
|
|
{
|
|
struct mc_config_t *cfg;
|
|
struct Widget *receiver; /* NULL means broadcast message */
|
|
} ev_history_load_save_t;
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
|
|
|
/*** declarations of public functions ************************************************************/
|
|
|
|
/*** inline functions ****************************************************************************/
|
|
|
|
#endif /* MC__EVENT_TYPES_H */
|