summaryrefslogtreecommitdiffstats
path: root/chalk/dtd/chalk.dtd
blob: 1e690f0b8299308ed178136b1eac54d9a40f668e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!--	$Id: chalk.dtd 502406 2006-01-25 21:58:52Z rempt $

		This is an XML document type definition (DTD) for the KImageShop
		image format. 
		Written by Matthias Elter <[email protected]>.
-->


<!--   
        A DOC element can contain only one IMAGE element.

        Attributes
	
        editor:     The program this file was written with
        depth:      The number of bytes a pixel uses per channel.
	syntaxVersion: always 1 for now
-->

<!ELEMENT DOC (IMAGE)>
<!ATTLIST DOC
	editor   CDATA 'chalk'
	depth      CDATA #REQUIRED
	syntaxVersion CDATA #REQUIRED>

<!--	An image contains at most _one_ LAYERS element.

        Attributes:

        mime:       The MIME type 
				If this is 'application/x-kra', then search for LAYERS component.
				The data is saved in external binary files 
        name:       Every image has a name.  This is also the in-store filename where to get the pixel data or foreign image.
        width:      The image with in pixels.
        height:     The image height in pixels.
-->

<!ELEMENT IMAGE (LAYERS)>
<!ATTLIST IMAGE 
	name       CDATA #REQUIRED
	mime       CDATA #REQUIRED
	width      CDATA #REQUIRED
	height     CDATA #REQUIRED
	x-res      CDATA #REQUIRED
	y-res     CDATA #REQUIRED
	profile CDATA #REQUIRED
	colorspacename CDATA #REQUIRED>


<!--	The layers element holds the image's layers.

        Attributes: none

-->
<!ELEMENT LAYERS (layer)+>


<!--
        The data is saved in external binary files.
        Attributes:

        name:       The channel's name.
        x:             The layer's horizontal positon in the image.
        y:             The layer's vertical position in the image.
        width:       The layer's width in pixels OBSOLETE
        height:      The layers height in pixels OBSOLETE
        opacity:    The layer's opactiy. A value betwenn 0 and 255.
        visible       Is the layer visible? (yes or no)
        linked:       Is the layer linked? (yes or no) OBSOLETE
        filename:   The name of the binary file of the layer' data.
        layertype:   The type of layer. paintlayer is assumed if absent.
        filtername  The name of the filter in case the layer is an adjustmentlayer
        filterversion The version of the filter in case the layer is an adjustmentlayer
-->
<!ELEMENT layer (LAYERS)?>
<!ATTLIST layer 
	name      CDATA #REQUIRED
	x         CDATA #REQUIRED
	y         CDATA #REQUIRED
	width     CDATA #IMPLIED
	height    CDATA #IMPLIED
	opacity   CDATA #REQUIRED
	visible   CDATA #REQUIRED
	linked    CDATA #IMPLIED
	colorspacename CDATA #REQUIRED
	profile CDATA #REQUIRED
	filename      CDATA #IMPLIED
	layertype      CDATA "paintlayer"
        filtername CDATA ""
        filterversion CDATA ""
>

<!ELEMENT FILTERCONFIG (filterconfig)>