-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: http://svn.osgeo.org/qgis/trunk@182 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
gsherman
committed
Jan 26, 2003
1 parent
9f48f34
commit 016d8f2
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<!-- DTD for QGIS project file | ||
* This DTD describes the maplayers and their symbology and | ||
* is used when saving/restoring a QGIS project. | ||
--> | ||
<!ELEMENT qgis (title, extent, projectlayers) > | ||
<!ELEMENT projectlayers (maplayer*) > | ||
<!ELEMENT extent (xmin, ymin, xmax, ymax) > | ||
<!ELEMENT xmin (#PCDATA) > | ||
<!ELEMENT ymin (#PCDATA) > | ||
<!ELEMENT xmax (#PCDATA) > | ||
<!ELEMENT ymax (#PCDATA) > | ||
<!ELEMENT title (#PCDATA) > | ||
<!ELEMENT maplayer (layername, datasource, zorder, symbol) > | ||
<!ELEMENT layername (#PCDATA) > | ||
<!ELEMENT datasource (#PCDATA) > | ||
<!ELEMENT zorder (#PCDATA) > | ||
<!ELEMENT symbol (linewidth, outlinecolor, fillcolor) > | ||
<!ELEMENT linewidth (#PCDATA) > | ||
<!ELEMENT fillcolor EMPTY> | ||
<!ELEMENT outlinecolor EMPTY> | ||
<!ATTLIST qgis projectname CDATA #REQUIRED > | ||
<!ATTLIST maplayer | ||
type (vector|raster|database) "vector" | ||
visible (1|0) "0" | ||
> | ||
<!ATTLIST projectlayers layercount CDATA #REQUIRED > | ||
<!ATTLIST fillcolor | ||
red CDATA #IMPLIED | ||
green CDATA #IMPLIED | ||
blue CDATA #IMPLIED | ||
> | ||
<!ATTLIST outlinecolor | ||
red CDATA #IMPLIED | ||
green CDATA #IMPLIED | ||
blue CDATA #IMPLIED | ||
> |