]> git.street.me.uk Git - andy/viking.git/blobdiff - src/file.h
Allow clearing and copying of the information message in the statusbar.
[andy/viking.git] / src / file.h
index d1ee2c4540b07214cd0e37ef6f94296d25c12cd0..3e1b12b83e95c7abf485bc029a4aa9d23876b029 100644 (file)
@@ -29,6 +29,8 @@
 #include "viktrwlayer.h"
 #include "vikviewport.h"
 
 #include "viktrwlayer.h"
 #include "vikviewport.h"
 
+G_BEGIN_DECLS
+
 typedef enum {
 FILE_TYPE_GPSPOINT=1,
 FILE_TYPE_GPSMAPPER=2,
 typedef enum {
 FILE_TYPE_GPSPOINT=1,
 FILE_TYPE_GPSMAPPER=2,
@@ -36,8 +38,7 @@ FILE_TYPE_GPX=3,
 FILE_TYPE_KML=4,
 } VikFileType_t;
 
 FILE_TYPE_KML=4,
 } VikFileType_t;
 
-const gchar *a_file_basename ( const gchar *filename );
-gboolean check_file_ext ( const gchar *filename, const gchar *fileext );
+gboolean a_file_check_ext ( const gchar *filename, const gchar *fileext );
 
 /*
  * Function to determine if a filename is a 'viking' type file
 
 /*
  * Function to determine if a filename is a 'viking' type file
@@ -54,12 +55,23 @@ typedef enum {
   LOAD_TYPE_OTHER_SUCCESS,
 } VikLoadType_t;
 
   LOAD_TYPE_OTHER_SUCCESS,
 } VikLoadType_t;
 
+gchar *append_file_ext ( const gchar *filename, VikLoadType_t type );
+
 VikLoadType_t a_file_load ( VikAggregateLayer *top, VikViewport *vp, const gchar *filename );
 gboolean a_file_save ( VikAggregateLayer *top, gpointer vp, const gchar *filename );
 /* Only need to define VikTrack if the file type is FILE_TYPE_GPX_TRACK */
 VikLoadType_t a_file_load ( VikAggregateLayer *top, VikViewport *vp, const gchar *filename );
 gboolean a_file_save ( VikAggregateLayer *top, gpointer vp, const gchar *filename );
 /* Only need to define VikTrack if the file type is FILE_TYPE_GPX_TRACK */
-gboolean a_file_export ( VikTrwLayer *vtl, const gchar *filename, VikFileType_t file_type, VikTrack *trk );
+gboolean a_file_export ( VikTrwLayer *vtl, const gchar *filename, VikFileType_t file_type, VikTrack *trk, gboolean write_hidden );
+gboolean a_file_export_babel ( VikTrwLayer *vtl, const gchar *filename, const gchar *format,
+    gboolean tracks, gboolean routes, gboolean waypoints );
+
+void file_write_layer_param ( FILE *f, const gchar *name, VikLayerParamType type, VikLayerParamData data );
+
+char *file_realpath ( const char *path, char *real );
+
+char *file_realpath_dup ( const char *path );
 
 
-void file_write_layer_param ( FILE *f, const gchar *name, guint8 type, VikLayerParamData data );
+const gchar *file_GetRelativeFilename ( gchar *currentDirectory, gchar *absoluteFilename );
 
 
+G_END_DECLS
 
 #endif
 
 #endif