mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
fac006148f
Currently, the "hide event" status is lost when switching dives. Save it in the event struct instead to make it persistent. In the future we might save this information to the log file. Then this should be integrated in the undo-system. This commit also makes the "unhide events" menu entry more fine grained: It now differentiates between individual events and event types. Note this adds an additional field to the event structure. There is a "deleted" field that is used internally for book-keeping, but probably should be removed. Not touching this at the moment as long as this is C-only code. When/if switching to C++ we can make the event linked list a table, which will make this much simpler. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
67 lines
1.9 KiB
C
67 lines
1.9 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef EVENT_H
|
|
#define EVENT_H
|
|
|
|
#include "divemode.h"
|
|
#include "gas.h"
|
|
#include "units.h"
|
|
|
|
#include <libdivecomputer/parser.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
enum event_severity {
|
|
EVENT_SEVERITY_NONE = 0,
|
|
EVENT_SEVERITY_INFO,
|
|
EVENT_SEVERITY_WARN,
|
|
EVENT_SEVERITY_ALARM
|
|
};
|
|
|
|
/*
|
|
* Events are currently based straight on what libdivecomputer gives us.
|
|
* We need to wrap these into our own events at some point to remove some of the limitations.
|
|
*/
|
|
struct event {
|
|
struct event *next;
|
|
duration_t time;
|
|
int type;
|
|
/* This is the annoying libdivecomputer format. */
|
|
int flags, value;
|
|
/* .. and this is our "extended" data for some event types */
|
|
union {
|
|
enum divemode_t divemode; // for divemode change events
|
|
/*
|
|
* NOTE! The index may be -1, which means "unknown". In that
|
|
* case, the get_cylinder_index() function will give the best
|
|
* match with the cylinders in the dive based on gasmix.
|
|
*/
|
|
struct { // for gas switch events
|
|
int index;
|
|
struct gasmix mix;
|
|
} gas;
|
|
};
|
|
bool deleted; // used internally in the parser and in fixup_dive().
|
|
bool hidden;
|
|
char name[];
|
|
};
|
|
|
|
extern int event_is_gaschange(const struct event *ev);
|
|
extern bool event_is_divemodechange(const struct event *ev);
|
|
extern struct event *clone_event(const struct event *src_ev);
|
|
extern void free_events(struct event *ev);
|
|
extern struct event *create_event(unsigned int time, int type, int flags, int value, const char *name);
|
|
extern struct event *clone_event_rename(const struct event *ev, const char *name);
|
|
extern bool same_event(const struct event *a, const struct event *b);
|
|
extern enum event_severity get_event_severity(const struct event *ev);
|
|
|
|
/* Since C doesn't have parameter-based overloading, two versions of get_next_event. */
|
|
extern const struct event *get_next_event(const struct event *event, const char *name);
|
|
extern struct event *get_next_event_mutable(struct event *event, const char *name);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|