]> git.tdb.fi Git - ext/subsurface.git/blob - main.c
Add fake 'info' frame contents
[ext/subsurface.git] / main.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <time.h>
4
5 #include "dive.h"
6 #include "display.h"
7
8 static int sortfn(const void *_a, const void *_b)
9 {
10         const struct dive *a = *(void **)_a;
11         const struct dive *b = *(void **)_b;
12
13         if (a->when < b->when)
14                 return -1;
15         if (a->when > b->when)
16                 return 1;
17         return 0;
18 }
19
20 /*
21  * This doesn't really report anything at all. We just sort the
22  * dives, the GUI does the reporting
23  */
24 static void report_dives(void)
25 {
26         qsort(dive_table.dives, dive_table.nr, sizeof(struct dive *), sortfn);
27 }
28
29 static void parse_argument(const char *arg)
30 {
31         const char *p = arg+1;
32
33         do {
34                 switch (*p) {
35                 case 'v':
36                         verbose++;
37                         continue;
38                 default:
39                         fprintf(stderr, "Bad argument '%s'\n", arg);
40                         exit(1);
41                 }
42         } while (*++p);
43 }
44
45 static void on_destroy(GtkWidget* w, gpointer data)
46 {
47         gtk_main_quit();
48 }
49
50 static GtkWidget *dive_profile;
51
52 void repaint_dive(void)
53 {
54         gtk_widget_queue_draw(dive_profile);
55 }
56
57 int main(int argc, char **argv)
58 {
59         int i;
60         GtkWidget *win;
61         GtkWidget *divelist;
62         GtkWidget *table;
63         GtkWidget *frame;
64
65         parse_xml_init();
66
67         gtk_init(&argc, &argv);
68
69         for (i = 1; i < argc; i++) {
70                 const char *a = argv[i];
71
72                 if (a[0] == '-') {
73                         parse_argument(a);
74                         continue;
75                 }
76                 parse_xml_file(a);
77         }
78
79         report_dives();
80
81         win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
82         g_signal_connect(G_OBJECT(win), "destroy",      G_CALLBACK(on_destroy), NULL);
83
84         /* Table for the list of dives, cairo window, and dive info */
85         table = gtk_table_new(2, 2, FALSE);
86         gtk_container_set_border_width(GTK_CONTAINER(table), 5);
87         gtk_container_add(GTK_CONTAINER(win), table);
88         gtk_widget_show(table);
89
90         /* Create the atual divelist */
91         divelist = create_dive_list();
92         gtk_table_attach_defaults(GTK_TABLE(table), divelist, 0, 1, 0, 2);
93
94         /* Frame for dive profile */
95         frame = dive_profile_frame();
96         gtk_table_attach_defaults(GTK_TABLE(table), frame, 1, 2, 1, 2);
97         dive_profile = frame;
98
99         /* Frame for dive info */
100         frame = dive_info_frame();
101         gtk_table_attach_defaults(GTK_TABLE(table), frame, 1, 2, 0, 1);
102
103         gtk_widget_set_app_paintable(win, TRUE);
104         gtk_widget_show_all(win);
105
106         gtk_main();
107         return 0;
108 }