mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
a11dbbdb18
It should have depth, time, place etc information, but right now it only has a fake depth that doesn't even get updated. Just to show the idea of the table usage. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
14 lines
292 B
C
14 lines
292 B
C
#ifndef DISPLAY_H
|
|
#define DISPLAY_H
|
|
|
|
#include <gtk/gtk.h>
|
|
#include <gdk/gdk.h>
|
|
#include <cairo.h>
|
|
|
|
extern int selected_dive;
|
|
extern GtkWidget *dive_profile_frame(void);
|
|
extern GtkWidget *dive_info_frame(void);
|
|
extern GtkWidget *create_dive_list(void);
|
|
extern void repaint_dive(void);
|
|
|
|
#endif
|