mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 20:53:23 +00:00
d3feb78df5
Let's not repeat the boiler-plate code more than necessary. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
22 lines
552 B
C
22 lines
552 B
C
#ifndef DIVELIST_H
|
|
#define DIVELIST_H
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
struct DiveList {
|
|
GtkWidget *tree_view;
|
|
GtkWidget *container_widget;
|
|
GtkListStore *model;
|
|
GtkTreeViewColumn *date, *depth, *duration, *location;
|
|
GtkTreeViewColumn *temperature, *cylinder, *nitrox, *sac;
|
|
};
|
|
|
|
struct dive;
|
|
|
|
extern struct DiveList dive_list;
|
|
extern struct DiveList dive_list_create(void);
|
|
extern void dive_list_update_dives(struct DiveList);
|
|
extern void update_dive_list_units(struct DiveList *);
|
|
extern void flush_divelist(struct DiveList *, struct dive *);
|
|
|
|
#endif
|