odk: don't run compiler -dumpversion for eaach include of settings.mk
[LibreOffice.git] / framework / dtd / toolbar.dtd
blob7f8ee24e8ab9d32fb62406917f7bb5607e25c75b
1 <!--
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
17 -->
18 <!ENTITY % boolean "(true|false)">
19 <!ENTITY % numeric "CDATA">
20 <!ENTITY % alignment "(top|bottom|left|right)">
21 <!ENTITY % style "(symbol|text|symboltext)">
22 <!ELEMENT toolbar:toolbar (toolbar:toolbaritem | toolbar:toolbarspace | toolbar:toolbarbreak | toolbar:toolbarseparator)*>
23 <!ATTLIST toolbar:toolbar
24 xmlns:toolbar CDATA #FIXED "http://openoffice.org/2001/toolbar"
25 xmlns:xlink CDATA #FIXED "http://www.w3.org/1999/xlink"
27 <!ELEMENT toolbar:toolbaritem EMPTY>
28 <!ATTLIST toolbar:toolbaritem
29 xlink:href CDATA #REQUIRED
30 toolbar:visible %boolean; "true"
31 toolbar:text CDATA #IMPLIED
32 toolbar:style CDATA #IMPLIED
34 <!ELEMENT toolbar:toolbarspace EMPTY>
35 <!ELEMENT toolbar:toolbarbreak EMPTY>
36 <!ELEMENT toolbar:toolbarseparator EMPTY>
37 <!ELEMENT toolbar:toolbarlayouts (toolbar:toolbarlayout*)>
38 <!ATTLIST toolbar:toolbarlayouts
39 xmlns:toolbar CDATA #FIXED "http://openoffice.org/2001/toolbar"
41 <!ELEMENT toolbar:toolbarlayout EMPTY>
42 <!ATTLIST toolbar:toolbarlayout
43 toolbar:id CDATA #REQUIRED
44 toolbar:floatingposleft %numeric; #IMPLIED
45 toolbar:floatingpostop %numeric; #IMPLIED
46 toolbar:floatinglines %numeric; "0"
47 toolbar:dockinglines %numeric; "1"
48 toolbar:align %alignment; "left"
49 toolbar:visible %boolean; "false"
50 toolbar:floating %boolean; "false"
51 toolbar:style %style; "symbol"
52 toolbar:userdefname CDATA #IMPLIED