]> git.street.me.uk Git - andy/viking.git/blame - src/file.h
Enable option to not write invisible tracks or waypoints in GPX file and don't write...
[andy/viking.git] / src / file.h
CommitLineData
50a14534
EB
1/*
2 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3 *
4 * Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
29f1598c 5 * Copyright (C) 2012, Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
50a14534
EB
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
23#ifndef _VIKING_FILE_H
24#define _VIKING_FILE_H
25
a25c4c50
GB
26#include <glib.h>
27
28#include "vikaggregatelayer.h"
29#include "viktrwlayer.h"
94933cb8 30#include "vikviewport.h"
a25c4c50 31
a6f55d0e
GB
32typedef enum {
33FILE_TYPE_GPSPOINT=1,
34FILE_TYPE_GPSMAPPER=2,
35FILE_TYPE_GPX=3,
ba9d0a00 36FILE_TYPE_KML=4,
a6f55d0e 37} VikFileType_t;
50a14534
EB
38
39const gchar *a_file_basename ( const gchar *filename );
b0252b2e 40gboolean check_file_ext ( const gchar *filename, const gchar *fileext );
50a14534 41
ba9d0a00
RN
42/*
43 * Function to determine if a filename is a 'viking' type file
44 */
45gboolean check_file_magic_vik ( const gchar *filename );
46
47typedef enum {
48 LOAD_TYPE_READ_FAILURE,
49 LOAD_TYPE_GPSBABEL_FAILURE,
54b84792 50 LOAD_TYPE_GPX_FAILURE,
cb5ec7a8 51 LOAD_TYPE_UNSUPPORTED_FAILURE,
327a2533 52 LOAD_TYPE_VIK_FAILURE_NON_FATAL,
ba9d0a00
RN
53 LOAD_TYPE_VIK_SUCCESS,
54 LOAD_TYPE_OTHER_SUCCESS,
55} VikLoadType_t;
56
57VikLoadType_t a_file_load ( VikAggregateLayer *top, VikViewport *vp, const gchar *filename );
50a14534 58gboolean a_file_save ( VikAggregateLayer *top, gpointer vp, const gchar *filename );
ce4bd1cf 59/* Only need to define VikTrack if the file type is FILE_TYPE_GPX_TRACK */
208d2084 60gboolean a_file_export ( VikTrwLayer *vtl, const gchar *filename, VikFileType_t file_type, VikTrack *trk, gboolean write_hidden );
50a14534 61
17a1f8f9
EB
62void file_write_layer_param ( FILE *f, const gchar *name, guint8 type, VikLayerParamData data );
63
64
50a14534 65#endif