From 4b1a3a1a6e1db60bda77fc70e5be6278426589cd Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Sun, 24 Nov 2019 15:02:34 +0100 Subject: Selection: move selection functions from divelist.c to selection.c Since we now have a selection.c translation unit, put the selection- related functions there. Signed-off-by: Berthold Stoeger --- core/selection.h | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) (limited to 'core/selection.h') diff --git a/core/selection.h b/core/selection.h index 0fb226949..e990a697c 100644 --- a/core/selection.h +++ b/core/selection.h @@ -4,13 +4,35 @@ #ifndef SELECTION_H #define SELECTION_H +struct dive; + +extern int amount_selected; + +/*** C and C++ functions ***/ + +#ifdef __cplusplus +extern "C" { +#endif + +extern void select_dive(struct dive *dive); +extern void deselect_dive(struct dive *dive); +extern struct dive *first_selected_dive(void); +extern struct dive *last_selected_dive(void); +extern bool consecutive_selected(void); + +#if DEBUG_SELECTION_TRACKING +extern void dump_selection(void); +#endif + +#ifdef __cplusplus +} +#endif + /*** C++-only functions ***/ #ifdef __cplusplus #include -struct dive; - // Reset the selection to the dives of the "selection" vector and send the appropriate signals. // Set the current dive to "currentDive". "currentDive" must be an element of "selection" (or // null if "seletion" is empty). -- cgit v1.2.3-70-g09d2