mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Merge branch 'open-files' of git://github.com/nathansamson/diveclog
* 'open-files' of git://github.com/nathansamson/diveclog: Report errors when opening files Make it possible to load multiple files at once. Open File works. I refactored the code and introduced a new type. I never used it as a pointer (their was no real reason), but I'm not really satisfied.
This commit is contained in:
commit
c24fd4b82c
10 changed files with 163 additions and 56 deletions
24
Makefile
24
Makefile
|
@ -6,25 +6,25 @@ OBJS=main.o dive.o profile.o info.o divelist.o parse-xml.o save-xml.o
|
||||||
divelog: $(OBJS)
|
divelog: $(OBJS)
|
||||||
$(CC) $(LDFLAGS) -o divelog $(OBJS) \
|
$(CC) $(LDFLAGS) -o divelog $(OBJS) \
|
||||||
`xml2-config --libs` \
|
`xml2-config --libs` \
|
||||||
`pkg-config --libs gtk+-2.0`
|
`pkg-config --libs gtk+-2.0 glib-2.0`
|
||||||
|
|
||||||
parse-xml.o: parse-xml.c dive.h
|
parse-xml.o: parse-xml.c dive.h
|
||||||
$(CC) $(CFLAGS) -c `xml2-config --cflags` parse-xml.c
|
$(CC) $(CFLAGS) `pkg-config --cflags glib-2.0` -c `xml2-config --cflags` parse-xml.c
|
||||||
|
|
||||||
save-xml.o: save-xml.c dive.h
|
save-xml.o: save-xml.c dive.h
|
||||||
$(CC) $(CFLAGS) -c save-xml.c
|
$(CC) $(CFLAGS) `pkg-config --cflags glib-2.0` -c save-xml.c
|
||||||
|
|
||||||
dive.o: dive.c dive.h
|
dive.o: dive.c dive.h
|
||||||
$(CC) $(CFLAGS) -c dive.c
|
$(CC) $(CFLAGS) `pkg-config --cflags glib-2.0` -c dive.c
|
||||||
|
|
||||||
main.o: main.c dive.h display.h
|
main.o: main.c dive.h display.h divelist.h
|
||||||
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0` -c main.c
|
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0` -c main.c
|
||||||
|
|
||||||
profile.o: profile.c dive.h display.h
|
profile.o: profile.c dive.h display.h divelist.h
|
||||||
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0` -c profile.c
|
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0` -c profile.c
|
||||||
|
|
||||||
info.o: info.c dive.h display.h
|
info.o: info.c dive.h display.h divelist.h
|
||||||
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0` -c info.c
|
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0` -c info.c
|
||||||
|
|
||||||
divelist.o: divelist.c dive.h display.h
|
divelist.o: divelist.c dive.h display.h divelist.h
|
||||||
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0` -c divelist.c
|
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0` -c divelist.c
|
||||||
|
|
|
@ -5,13 +5,9 @@
|
||||||
#include <gdk/gdk.h>
|
#include <gdk/gdk.h>
|
||||||
#include <cairo.h>
|
#include <cairo.h>
|
||||||
|
|
||||||
extern int selected_dive;
|
|
||||||
#define current_dive (get_dive(selected_dive))
|
|
||||||
|
|
||||||
extern GtkWidget *dive_profile_widget(void);
|
extern GtkWidget *dive_profile_widget(void);
|
||||||
extern GtkWidget *dive_info_frame(void);
|
extern GtkWidget *dive_info_frame(void);
|
||||||
extern GtkWidget *extended_dive_info_widget(void);
|
extern GtkWidget *extended_dive_info_widget(void);
|
||||||
extern GtkWidget *create_dive_list(void);
|
|
||||||
extern void update_dive_info(struct dive *dive);
|
extern void update_dive_info(struct dive *dive);
|
||||||
extern void repaint_dive(void);
|
extern void repaint_dive(void);
|
||||||
|
|
||||||
|
|
2
dive.c
2
dive.c
|
@ -130,8 +130,6 @@ struct dive *fixup_dive(struct dive *dive)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Don't pick a zero for MERGE_MIN() */
|
/* Don't pick a zero for MERGE_MIN() */
|
||||||
#define MIN(a,b) ((a)<(b)?(a):(b))
|
|
||||||
#define MAX(a,b) ((a)>(b)?(a):(b))
|
|
||||||
#define MERGE_MAX(res, a, b, n) res->n = MAX(a->n, b->n)
|
#define MERGE_MAX(res, a, b, n) res->n = MAX(a->n, b->n)
|
||||||
#define MERGE_MIN(res, a, b, n) res->n = (a->n)?(b->n)?MIN(a->n, b->n):(a->n):(b->n)
|
#define MERGE_MIN(res, a, b, n) res->n = (a->n)?(b->n)?MIN(a->n, b->n):(a->n):(b->n)
|
||||||
|
|
||||||
|
|
6
dive.h
6
dive.h
|
@ -4,6 +4,8 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|
||||||
|
#include <glib.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Some silly typedefs to make our units very explicit.
|
* Some silly typedefs to make our units very explicit.
|
||||||
*
|
*
|
||||||
|
@ -141,7 +143,7 @@ static inline struct dive *get_dive(unsigned int nr)
|
||||||
}
|
}
|
||||||
|
|
||||||
extern void parse_xml_init(void);
|
extern void parse_xml_init(void);
|
||||||
extern void parse_xml_file(const char *filename);
|
extern void parse_xml_file(const char *filename, GError **error);
|
||||||
|
|
||||||
extern void flush_dive_info_changes(void);
|
extern void flush_dive_info_changes(void);
|
||||||
extern void save_dives(const char *filename);
|
extern void save_dives(const char *filename);
|
||||||
|
@ -154,4 +156,6 @@ static inline unsigned int dive_size(int samples)
|
||||||
extern struct dive *fixup_dive(struct dive *dive);
|
extern struct dive *fixup_dive(struct dive *dive);
|
||||||
extern struct dive *try_to_merge(struct dive *a, struct dive *b);
|
extern struct dive *try_to_merge(struct dive *a, struct dive *b);
|
||||||
|
|
||||||
|
#define DIVE_ERROR_PARSE 1
|
||||||
|
|
||||||
#endif /* DIVE_H */
|
#endif /* DIVE_H */
|
||||||
|
|
41
divelist.c
41
divelist.c
|
@ -3,6 +3,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|
||||||
|
#include "divelist.h"
|
||||||
#include "dive.h"
|
#include "dive.h"
|
||||||
#include "display.h"
|
#include "display.h"
|
||||||
|
|
||||||
|
@ -62,27 +63,31 @@ static void fill_dive_list(GtkListStore *store)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
GtkWidget *create_dive_list(void)
|
void dive_list_update_dives(struct DiveList dive_list)
|
||||||
{
|
{
|
||||||
GtkListStore *model;
|
gtk_list_store_clear(GTK_LIST_STORE(dive_list.model));
|
||||||
GtkWidget *tree_view;
|
fill_dive_list(GTK_LIST_STORE(dive_list.model));
|
||||||
|
}
|
||||||
|
|
||||||
|
struct DiveList dive_list_create(void)
|
||||||
|
{
|
||||||
|
struct DiveList dive_list;
|
||||||
GtkTreeSelection *selection;
|
GtkTreeSelection *selection;
|
||||||
GtkCellRenderer *renderer;
|
GtkCellRenderer *renderer;
|
||||||
GtkTreeViewColumn *col;
|
GtkTreeViewColumn *col;
|
||||||
GtkWidget *scroll_window;
|
|
||||||
|
|
||||||
model = gtk_list_store_new(7,
|
dive_list.model = gtk_list_store_new(7,
|
||||||
G_TYPE_STRING, G_TYPE_INT,
|
G_TYPE_STRING, G_TYPE_INT,
|
||||||
G_TYPE_STRING, G_TYPE_INT,
|
G_TYPE_STRING, G_TYPE_INT,
|
||||||
G_TYPE_STRING, G_TYPE_INT,
|
G_TYPE_STRING, G_TYPE_INT,
|
||||||
G_TYPE_INT);
|
G_TYPE_INT);
|
||||||
tree_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model));
|
dive_list.tree_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(dive_list.model));
|
||||||
selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view));
|
selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(dive_list.tree_view));
|
||||||
|
|
||||||
gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_BROWSE);
|
gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_BROWSE);
|
||||||
gtk_widget_set_size_request(tree_view, 200, 100);
|
gtk_widget_set_size_request(dive_list.tree_view, 200, 100);
|
||||||
|
|
||||||
fill_dive_list(model);
|
fill_dive_list(dive_list.model);
|
||||||
|
|
||||||
renderer = gtk_cell_renderer_text_new();
|
renderer = gtk_cell_renderer_text_new();
|
||||||
col = gtk_tree_view_column_new();
|
col = gtk_tree_view_column_new();
|
||||||
|
@ -91,7 +96,7 @@ GtkWidget *create_dive_list(void)
|
||||||
gtk_tree_view_column_set_resizable (col, TRUE);
|
gtk_tree_view_column_set_resizable (col, TRUE);
|
||||||
gtk_tree_view_column_pack_start(col, renderer, TRUE);
|
gtk_tree_view_column_pack_start(col, renderer, TRUE);
|
||||||
gtk_tree_view_column_add_attribute(col, renderer, "text", 0);
|
gtk_tree_view_column_add_attribute(col, renderer, "text", 0);
|
||||||
gtk_tree_view_append_column(GTK_TREE_VIEW(tree_view), col);
|
gtk_tree_view_append_column(GTK_TREE_VIEW(dive_list.tree_view), col);
|
||||||
|
|
||||||
renderer = gtk_cell_renderer_text_new();
|
renderer = gtk_cell_renderer_text_new();
|
||||||
col = gtk_tree_view_column_new();
|
col = gtk_tree_view_column_new();
|
||||||
|
@ -99,7 +104,7 @@ GtkWidget *create_dive_list(void)
|
||||||
gtk_tree_view_column_set_sort_column_id(col, 3);
|
gtk_tree_view_column_set_sort_column_id(col, 3);
|
||||||
gtk_tree_view_column_pack_start(col, renderer, FALSE);
|
gtk_tree_view_column_pack_start(col, renderer, FALSE);
|
||||||
gtk_tree_view_column_add_attribute(col, renderer, "text", 2);
|
gtk_tree_view_column_add_attribute(col, renderer, "text", 2);
|
||||||
gtk_tree_view_append_column(GTK_TREE_VIEW(tree_view), col);
|
gtk_tree_view_append_column(GTK_TREE_VIEW(dive_list.tree_view), col);
|
||||||
gtk_object_set(GTK_OBJECT(renderer), "alignment", PANGO_ALIGN_RIGHT, NULL);
|
gtk_object_set(GTK_OBJECT(renderer), "alignment", PANGO_ALIGN_RIGHT, NULL);
|
||||||
gtk_cell_renderer_set_alignment(GTK_CELL_RENDERER(renderer), 1.0, 0.5);
|
gtk_cell_renderer_set_alignment(GTK_CELL_RENDERER(renderer), 1.0, 0.5);
|
||||||
|
|
||||||
|
@ -109,21 +114,21 @@ GtkWidget *create_dive_list(void)
|
||||||
gtk_tree_view_column_set_sort_column_id(col, 5);
|
gtk_tree_view_column_set_sort_column_id(col, 5);
|
||||||
gtk_tree_view_column_pack_start(col, renderer, FALSE);
|
gtk_tree_view_column_pack_start(col, renderer, FALSE);
|
||||||
gtk_tree_view_column_add_attribute(col, renderer, "text", 4);
|
gtk_tree_view_column_add_attribute(col, renderer, "text", 4);
|
||||||
gtk_tree_view_append_column(GTK_TREE_VIEW(tree_view), col);
|
gtk_tree_view_append_column(GTK_TREE_VIEW(dive_list.tree_view), col);
|
||||||
gtk_object_set(GTK_OBJECT(renderer), "alignment", PANGO_ALIGN_RIGHT, NULL);
|
gtk_object_set(GTK_OBJECT(renderer), "alignment", PANGO_ALIGN_RIGHT, NULL);
|
||||||
gtk_cell_renderer_set_alignment(GTK_CELL_RENDERER(renderer), 1.0, 0.5);
|
gtk_cell_renderer_set_alignment(GTK_CELL_RENDERER(renderer), 1.0, 0.5);
|
||||||
|
|
||||||
g_object_set(G_OBJECT(tree_view), "headers-visible", TRUE,
|
g_object_set(G_OBJECT(dive_list.tree_view), "headers-visible", TRUE,
|
||||||
"search-column", 0,
|
"search-column", 0,
|
||||||
"rules-hint", TRUE,
|
"rules-hint", TRUE,
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
g_signal_connect(selection, "changed", G_CALLBACK(selection_cb), model);
|
g_signal_connect(selection, "changed", G_CALLBACK(selection_cb), dive_list.model);
|
||||||
|
|
||||||
scroll_window = gtk_scrolled_window_new(NULL, NULL);
|
dive_list.container_widget = gtk_scrolled_window_new(NULL, NULL);
|
||||||
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll_window),
|
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(dive_list.container_widget),
|
||||||
GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
|
GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
|
||||||
gtk_container_add(GTK_CONTAINER(scroll_window), tree_view);
|
gtk_container_add(GTK_CONTAINER(dive_list.container_widget), dive_list.tree_view);
|
||||||
|
|
||||||
return scroll_window;
|
return dive_list;
|
||||||
}
|
}
|
||||||
|
|
18
divelist.h
Normal file
18
divelist.h
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
#ifndef DIVELIST_H
|
||||||
|
#define DIVELIST_H
|
||||||
|
|
||||||
|
#include <gtk/gtk.h>
|
||||||
|
|
||||||
|
struct DiveList {
|
||||||
|
GtkWidget *tree_view;
|
||||||
|
GtkWidget *container_widget;
|
||||||
|
GtkListStore *model;
|
||||||
|
};
|
||||||
|
|
||||||
|
extern int selected_dive;
|
||||||
|
#define current_dive (get_dive(selected_dive))
|
||||||
|
|
||||||
|
extern struct DiveList dive_list_create(void);
|
||||||
|
extern void dive_list_update_dives(struct DiveList);
|
||||||
|
|
||||||
|
#endif
|
1
info.c
1
info.c
|
@ -5,6 +5,7 @@
|
||||||
|
|
||||||
#include "dive.h"
|
#include "dive.h"
|
||||||
#include "display.h"
|
#include "display.h"
|
||||||
|
#include "divelist.h"
|
||||||
|
|
||||||
static GtkWidget *divedate, *divetime, *depth, *duration, *temperature, *locationnote;
|
static GtkWidget *divedate, *divetime, *depth, *duration, *temperature, *locationnote;
|
||||||
static GtkEntry *location;
|
static GtkEntry *location;
|
||||||
|
|
113
main.c
113
main.c
|
@ -4,9 +4,15 @@
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|
||||||
#include "dive.h"
|
#include "dive.h"
|
||||||
|
#include "divelist.h"
|
||||||
#include "display.h"
|
#include "display.h"
|
||||||
|
|
||||||
GtkWidget *main_window;
|
GtkWidget *main_window;
|
||||||
|
GtkWidget *main_vbox;
|
||||||
|
GtkWidget *error_info_bar;
|
||||||
|
GtkWidget *error_label;
|
||||||
|
int error_count;
|
||||||
|
struct DiveList dive_list;
|
||||||
|
|
||||||
static int sortfn(const void *_a, const void *_b)
|
static int sortfn(const void *_a, const void *_b)
|
||||||
{
|
{
|
||||||
|
@ -85,6 +91,49 @@ void repaint_dive(void)
|
||||||
|
|
||||||
static char *existing_filename;
|
static char *existing_filename;
|
||||||
|
|
||||||
|
static void on_info_bar_response(GtkWidget *widget, gint response,
|
||||||
|
gpointer data)
|
||||||
|
{
|
||||||
|
if (response == GTK_RESPONSE_OK)
|
||||||
|
{
|
||||||
|
gtk_widget_destroy(widget);
|
||||||
|
error_info_bar = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void report_error(GError* error)
|
||||||
|
{
|
||||||
|
if (error == NULL)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (error_info_bar == NULL)
|
||||||
|
{
|
||||||
|
error_count = 1;
|
||||||
|
error_info_bar = gtk_info_bar_new_with_buttons(GTK_STOCK_OK,
|
||||||
|
GTK_RESPONSE_OK,
|
||||||
|
NULL);
|
||||||
|
g_signal_connect(error_info_bar, "response", G_CALLBACK(on_info_bar_response), NULL);
|
||||||
|
gtk_info_bar_set_message_type(GTK_INFO_BAR(error_info_bar),
|
||||||
|
GTK_MESSAGE_ERROR);
|
||||||
|
|
||||||
|
error_label = gtk_label_new(error->message);
|
||||||
|
GtkWidget *container = gtk_info_bar_get_content_area(GTK_INFO_BAR(error_info_bar));
|
||||||
|
gtk_container_add(GTK_CONTAINER(container), error_label);
|
||||||
|
|
||||||
|
gtk_box_pack_start(GTK_BOX(main_vbox), error_info_bar, FALSE, FALSE, 0);
|
||||||
|
gtk_widget_show_all(main_vbox);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
error_count++;
|
||||||
|
char buffer[256];
|
||||||
|
snprintf(buffer, sizeof(buffer), "Failed to open %i files.", error_count);
|
||||||
|
gtk_label_set(GTK_LABEL(error_label), buffer);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static void file_open(GtkWidget *w, gpointer data)
|
static void file_open(GtkWidget *w, gpointer data)
|
||||||
{
|
{
|
||||||
GtkWidget *dialog;
|
GtkWidget *dialog;
|
||||||
|
@ -94,12 +143,30 @@ static void file_open(GtkWidget *w, gpointer data)
|
||||||
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
||||||
GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
|
GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
|
||||||
NULL);
|
NULL);
|
||||||
|
gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(dialog), TRUE);
|
||||||
|
|
||||||
if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
|
if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
|
||||||
|
GSList *filenames;
|
||||||
char *filename;
|
char *filename;
|
||||||
filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
|
filenames = gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(dialog));
|
||||||
printf("Open: '%s'\n", filename);
|
|
||||||
g_free(filename);
|
GError *error = NULL;
|
||||||
|
while(filenames != NULL) {
|
||||||
|
filename = (char *)filenames->data;
|
||||||
|
parse_xml_file(filename, &error);
|
||||||
|
if (error != NULL)
|
||||||
|
{
|
||||||
|
report_error(error);
|
||||||
|
g_error_free(error);
|
||||||
|
error = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
g_free(filename);
|
||||||
|
filenames = g_slist_next(filenames);
|
||||||
|
}
|
||||||
|
g_slist_free(filenames);
|
||||||
|
report_dives();
|
||||||
|
dive_list_update_dives(dive_list);
|
||||||
}
|
}
|
||||||
gtk_widget_destroy(dialog);
|
gtk_widget_destroy(dialog);
|
||||||
}
|
}
|
||||||
|
@ -174,7 +241,6 @@ int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
GtkWidget *win;
|
GtkWidget *win;
|
||||||
GtkWidget *divelist;
|
|
||||||
GtkWidget *paned;
|
GtkWidget *paned;
|
||||||
GtkWidget *info_box;
|
GtkWidget *info_box;
|
||||||
GtkWidget *notebook;
|
GtkWidget *notebook;
|
||||||
|
@ -187,24 +253,14 @@ int main(int argc, char **argv)
|
||||||
|
|
||||||
gtk_init(&argc, &argv);
|
gtk_init(&argc, &argv);
|
||||||
|
|
||||||
for (i = 1; i < argc; i++) {
|
error_info_bar = NULL;
|
||||||
const char *a = argv[i];
|
|
||||||
|
|
||||||
if (a[0] == '-') {
|
|
||||||
parse_argument(a);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
parse_xml_file(a);
|
|
||||||
}
|
|
||||||
|
|
||||||
report_dives();
|
|
||||||
|
|
||||||
win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
|
win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
|
||||||
g_signal_connect(G_OBJECT(win), "destroy", G_CALLBACK(on_destroy), NULL);
|
g_signal_connect(G_OBJECT(win), "destroy", G_CALLBACK(on_destroy), NULL);
|
||||||
main_window = win;
|
main_window = win;
|
||||||
|
|
||||||
vbox = gtk_vbox_new(FALSE, 0);
|
vbox = gtk_vbox_new(FALSE, 0);
|
||||||
gtk_container_add(GTK_CONTAINER(win), vbox);
|
gtk_container_add(GTK_CONTAINER(win), vbox);
|
||||||
|
main_vbox = vbox;
|
||||||
|
|
||||||
menubar = get_menubar_menu(win);
|
menubar = get_menubar_menu(win);
|
||||||
gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, FALSE, 0);
|
gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, FALSE, 0);
|
||||||
|
@ -214,8 +270,8 @@ int main(int argc, char **argv)
|
||||||
gtk_box_pack_end(GTK_BOX(vbox), paned, TRUE, TRUE, 0);
|
gtk_box_pack_end(GTK_BOX(vbox), paned, TRUE, TRUE, 0);
|
||||||
|
|
||||||
/* Create the actual divelist */
|
/* Create the actual divelist */
|
||||||
divelist = create_dive_list();
|
dive_list = dive_list_create();
|
||||||
gtk_paned_add1(GTK_PANED(paned), divelist);
|
gtk_paned_add1(GTK_PANED(paned), dive_list.container_widget);
|
||||||
|
|
||||||
/* VBox for dive info, and tabs */
|
/* VBox for dive info, and tabs */
|
||||||
info_box = gtk_vbox_new(FALSE, 6);
|
info_box = gtk_vbox_new(FALSE, 6);
|
||||||
|
@ -239,6 +295,27 @@ int main(int argc, char **argv)
|
||||||
|
|
||||||
gtk_widget_set_app_paintable(win, TRUE);
|
gtk_widget_set_app_paintable(win, TRUE);
|
||||||
gtk_widget_show_all(win);
|
gtk_widget_show_all(win);
|
||||||
|
|
||||||
|
for (i = 1; i < argc; i++) {
|
||||||
|
const char *a = argv[i];
|
||||||
|
|
||||||
|
if (a[0] == '-') {
|
||||||
|
parse_argument(a);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
GError *error = NULL;
|
||||||
|
parse_xml_file(a, &error);
|
||||||
|
|
||||||
|
if (error != NULL)
|
||||||
|
{
|
||||||
|
report_error(error);
|
||||||
|
g_error_free(error);
|
||||||
|
error = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
report_dives();
|
||||||
|
dive_list_update_dives(dive_list);
|
||||||
|
|
||||||
gtk_main();
|
gtk_main();
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -1228,13 +1228,20 @@ static void reset_all(void)
|
||||||
import_source = UNKNOWN;
|
import_source = UNKNOWN;
|
||||||
}
|
}
|
||||||
|
|
||||||
void parse_xml_file(const char *filename)
|
void parse_xml_file(const char *filename, GError **error)
|
||||||
{
|
{
|
||||||
xmlDoc *doc;
|
xmlDoc *doc;
|
||||||
|
|
||||||
doc = xmlReadFile(filename, NULL, 0);
|
doc = xmlReadFile(filename, NULL, 0);
|
||||||
if (!doc) {
|
if (!doc) {
|
||||||
fprintf(stderr, "Failed to parse '%s'.\n", filename);
|
fprintf(stderr, "Failed to parse '%s'.\n", filename);
|
||||||
|
if (error != NULL)
|
||||||
|
{
|
||||||
|
*error = g_error_new(g_quark_from_string("divelog"),
|
||||||
|
DIVE_ERROR_PARSE,
|
||||||
|
"Failed to parse '%s'",
|
||||||
|
filename);
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
#include "dive.h"
|
#include "dive.h"
|
||||||
#include "display.h"
|
#include "display.h"
|
||||||
|
#include "divelist.h"
|
||||||
|
|
||||||
int selected_dive = 0;
|
int selected_dive = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue