]> git.street.me.uk Git - andy/viking.git/blobdiff - src/clipboard.h
[QA] Initialization of TrackWaypoint layer data in related part.
[andy/viking.git] / src / clipboard.h
index d608a0714278497cc4fbbb6edd668d3a5068dda7..87d579461b3537523a3418bdd749dda375e59148 100644 (file)
 
 #include "viklayerspanel.h"
 
-void a_clipboard_copy ( VikLayersPanel *vlp );
+G_BEGIN_DECLS
+
+typedef enum {
+  VIK_CLIPBOARD_DATA_NONE = 0,
+  VIK_CLIPBOARD_DATA_LAYER,
+  VIK_CLIPBOARD_DATA_SUBLAYER
+} VikClipboardDataType;
+
+void a_clipboard_copy(VikClipboardDataType  type, guint16 layer_type, gint subtype, guint len, const gchar* text, guint8 * data);
+void a_clipboard_copy_selected ( VikLayersPanel *vlp );
 gboolean a_clipboard_paste ( VikLayersPanel *vlp );
+VikClipboardDataType a_clipboard_type ( );
+
+G_END_DECLS
 
 #endif