]> git.street.me.uk Git - andy/viking.git/blobdiff - src/clipboard.h
Add tooltip for a more readable hours:minutes display rather than just total minutes...
[andy/viking.git] / src / clipboard.h
index 67eec225b670b18ec89038f56830320011b03157..a0f96ca6bd38ae528a523fac1fd1e689aab098ba 100644 (file)
 
 #include "viklayerspanel.h"
 
+G_BEGIN_DECLS
+
 typedef enum {
   VIK_CLIPBOARD_DATA_NONE = 0,
   VIK_CLIPBOARD_DATA_LAYER,
-  VIK_CLIPBOARD_DATA_SUBLAYER
+  VIK_CLIPBOARD_DATA_SUBLAYER,
+  VIK_CLIPBOARD_DATA_TEXT,
 } 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