Clipboard: check mime type before pasting image.
[gnumeric.git] / src / xml-io-version.h
blobddc16ac3e39f552d89829e11fd2d87a150b0e819
1 /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 #ifndef _GNM_XML_IO_VERSION_H_
3 # define _GNM_XML_IO_VERSION_H_
5 G_BEGIN_DECLS
7 typedef enum
9 GNM_XML_UNKNOWN = -1,
10 GNM_XML_V1,
11 GNM_XML_V2,
12 GNM_XML_V3, /* >= 0.52 */
13 GNM_XML_V4, /* >= 0.57 */
14 GNM_XML_V5, /* >= 0.58 */
15 GNM_XML_V6, /* >= 0.62 */
16 GNM_XML_V7, /* >= 0.66 */
17 GNM_XML_V8, /* >= 0.71 */
18 GNM_XML_V9, /* >= 0.73 add print scaling */
19 GNM_XML_V10, /* >= 1.0.3 remove useless Content node in cells */
20 GNM_XML_V11, /* >= 1.7.0 jump to sax exporter */
21 GNM_XML_V12, /* >= 1.7.3 Fix swapping of Value and ValueType in sax exporter */
22 GNM_XML_V13, /* >= 1.7.7 Deprecate ObjectAnchorType */
23 GNM_XML_V14, /* >= 1.12.21 Various */
25 /* NOTE : Keep this up to date (and in sync with the schema) */
26 GNM_XML_LATEST = GNM_XML_V14
27 } GnumericXMLVersion;
29 G_END_DECLS
31 #endif /* _GNM_XML_IO_VERSION_H_ */