blob: ea1ed1f077625e9ed741ec6b670ac2e31b14e58b [file] [log] [blame]
<!--
The contents of this file are subject to the terms of the Common Development
and Distribution License (the License). You may not use this file except in
compliance with the License.
You can obtain a copy of the License at https://netbeans.org/cddl.html
or https://netbeans.org/cddl.txt.
When distributing Covered Code, include this CDDL Header Notice in each file
and include the License file at https://netbeans.org/cddl.txt.
If applicable, add the following below the CDDL Header, with the fields
enclosed by brackets [] replaced by your own identifying information:
"Portions Copyrighted [year] [name of copyright owner]"
The Original Software is NetBeans. The Initial Developer of the Original
Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
Microsystems, Inc. All Rights Reserved.
-->
<!--
-//NetBeans//DTD Window Manager Properties 1.0//EN
-->
<!-- The root element for window manager properties. Consists of subelements
for specific properties.
Atribute "version" is optional versioning attribute, which in fact specifies
version of this DTD. Attribute is used to perform simple versioning
without the need to use time-consuming xml validation using this DTD.
-->
<!ELEMENT windowmanager (main_window?, screen?, ui-mode, active) >
<!ATTLIST windowmanager
version CDATA #IMPLIED
>
<!-- Element "main-window" contains properties of main window.
"bounds" gives size of main window in format x, y, width, height
-->
<!ELEMENT main-window EMPTY >
<!ATTLIST main-window
x CDATA #REQUIRED
y CDATA #REQUIRED
width CDATA #REQUIRED
height CDATA #REQUIRED
>
<!-- Element "screen" contains properties of screen.
"size" size of screen in pixels, format is width, height
-->
<!ELEMENT screen EMPTY >
<!ATTLIST screen
width CDATA #REQUIRED
height CDATA #REQUIRED
>
<!-- Element "ui-mode" gives type of ui.
"ui" type of ui, possible values are "sdi","mdi"
-->
<!ELEMENT ui-mode EMPTY >
<!ATTLIST ui-mode
ui (sdi | mdi) #REQUIRED
>
<!-- Element "active" contains ID of active workspace.
"workspace" ID of active workspace
-->
<!ELEMENT active EMPTY >
<!ATTLIST active
workspace CDATA #IMPLIED
>