1<?xml version="1.0" encoding="UTF-8"?> 2<!--*********************************************************************** 3 * 4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5 * 6 * Copyright 2000, 2010 Oracle and/or its affiliates. 7 * 8 * OpenOffice.org - a multi-platform office productivity suite 9 * 10 * This file is part of OpenOffice.org. 11 * 12 * OpenOffice.org is free software: you can redistribute it and/or modify 13 * it under the terms of the GNU Lesser General Public License version 3 14 * only, as published by the Free Software Foundation. 15 * 16 * OpenOffice.org is distributed in the hope that it will be useful, 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 * GNU Lesser General Public License version 3 for more details 20 * (a copy is included in the LICENSE file that accompanied this code). 21 * 22 * You should have received a copy of the GNU Lesser General Public License 23 * version 3 along with OpenOffice.org. If not, see 24 * <http://www.openoffice.org/license.html> 25 * for a copy of the LGPLv3 License. 26 * 27 ************************************************************************ --> 28<!DOCTYPE oor:component-schema SYSTEM "../../../component-schema.dtd"> 29<oor:component-schema xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" oor:name="VCL" oor:package="org.openoffice" xml:lang="en-US"> <info> 30 <author>PL</author> 31 <desc >Contains preferences for the VCL (Visual Class Library).</desc> 32 </info> 33 <templates> 34 <group oor:name="LFonts"> 35 <info> 36 <author>PL</author> 37 <desc>Contains attributes for fonts. The substitution lists are separated by ';' and are searched first to last for a substitute.</desc> 38 </info> 39 <prop oor:name="SubstFonts" oor:type="xs:string"> 40 <info> 41 <desc>Contains a list of substitute fonts used in office documents.</desc> 42 </info> 43 </prop> 44 <prop oor:name="SubstFontsMS" oor:type="xs:string"> 45 <info> 46 <desc>Contains a list of substitute fonts used in MS import filters.</desc> 47 </info> 48 </prop> 49 <prop oor:name="SubstFontsPS" oor:type="xs:string"> 50 <info> 51 <desc>Contains a list of substitute fonts used in a PostScript context (for example, EPS export).</desc> 52 </info> 53 </prop> 54 <prop oor:name="SubstFontsHTML" oor:type="xs:string"> 55 <info> 56 <desc>Contains a list of substitute fonts used in a HTML context (for example, HTML import/export).</desc> 57 </info> 58 </prop> 59 <prop oor:name="FontWeight" oor:type="xs:string"> 60 <info> 61 <desc>Specifies the font weight. Valid values are "thin", "ultralight", "light", "semilight", "normal", "medium", "semibold", "bold", "ultrabold", "black" (in ascending order of weight) and "unknown".</desc> 62 </info> 63 </prop> 64 <prop oor:name="FontWidth" oor:type="xs:string"> 65 <info> 66 <desc>Specifies the font width. Valid values are "ultracondensed", "extracondensed", "condensed", "semicondensed", "normal", "semiexpanded", "expanded", "extraexpanded", "ultraexpanded" (in ascending order of width) and "unknown".</desc> 67 </info> 68 </prop> 69 <prop oor:name="FontType" oor:type="xs:string"> 70 <info> 71 <desc>Denotes the compatible styles for the font. Multiple styles are separated by ','. Valid styles are: "Default", "Standard", "Normal", "Symbol", "Fixed", "SansSerif", "Serif", "Decorative", "Special", "Italic", "Title", "Capitals", "CJK", "CJK_JP", "CJK_SC", "CJK_TC", "CJK_KR", "CTL", "NoneLatin", "Full", "Outline", "Shadow", "Rounded", "Typewriter", "Script", "Handwriting", "Chancery", "comic", "brushscript", "gothic", "schoolbook", "other"</desc> 72 </info> 73 </prop> 74 </group> 75 <group oor:name="ConfigurableSettings" oor:extensible="true"> 76 <info> 77 <author>PL</author> 78 <desc>Specifies an extensible set of options that are ordered into key/value pairs for the VCL. For example, a valid key for describing when ATTools is activated is: "EnableATToolSupport" (valid values = "true", "false").</desc> 79 </info> 80 </group> 81 <group oor:name="LocalizedDefaultFonts" oor:extensible="true"> 82 <info> 83 <author>PL</author> 84 <desc>Contains a localized table of default font lists organized as a set of sets of key/value pairs. The outer set denotes the language (e.g. "en-US") so that default fonts can be declared for different language contexts. Each value is a font list separated by ';'. Default fonts are: CJK_DISPLAY, CJK_HEADING, CJK_PRESENTATION, CJK_SPREADSHEET, CJK_TEXT, CTL_DISPLAY, CTL_HEADING, CTL_PRESENTATION, CTL_SPREADSHEET, CTL_TEXT, FIXED, LATIN_DISPLAY, LATIN_FIXED, LATIN_HEADING, LATIN_PRESENTATION, LATIN_SPREADSHEET, LATIN_TEXT, SANS, SANS_UNICODE, SERIF, SYMBOL, UI_FIXED, UI_SANS. Corresponding font lists: *_DISPLAY, *_HEADING, *_PRESENTATION, *_SPREADSHEET, *_TEXT, SANS, SANS_UNICODE, SERIF,SYMBOL, UI_FIXED, UI_SANS.</desc> 85 </info> 86 </group> 87 <set oor:name="LocalizedFontSubstitutions" oor:node-type="LFonts"> 88 <info> 89 <author>PL</author> 90 <desc>Contains localized font substitution tables organized as a group of sets of LFonts. The outer set denotes the language (for example, "en-US").</desc> 91 </info> 92 </set> 93 </templates> 94 <component> 95 <set oor:name="Settings" oor:node-type="ConfigurableSettings"> 96 <info> 97 <author>PL</author> 98 <desc>Contains the settings for VCL (see template description).</desc> 99 </info> 100 </set> 101 <set oor:name="DefaultFonts" oor:node-type="LocalizedDefaultFonts"> 102 <info> 103 <author>PL</author> 104 <desc>Contains the localized default fonts for VCL (see template description).</desc> 105 </info> 106 </set> 107 <set oor:name="FontSubstitutions" oor:node-type="LocalizedFontSubstitutions"> 108 <info> 109 <author>PL</author> 110 <desc>Contains the localized font substitution tables for VCL (see template description).</desc> 111 </info> 112 </set> 113 </component> 114</oor:component-schema> 115 116