1*d1766043SAndrew Rist/************************************************************** 2*d1766043SAndrew Rist * 3*d1766043SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*d1766043SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*d1766043SAndrew Rist * distributed with this work for additional information 6*d1766043SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*d1766043SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*d1766043SAndrew Rist * "License"); you may not use this file except in compliance 9*d1766043SAndrew Rist * with the License. You may obtain a copy of the License at 10*d1766043SAndrew Rist * 11*d1766043SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*d1766043SAndrew Rist * 13*d1766043SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*d1766043SAndrew Rist * software distributed under the License is distributed on an 15*d1766043SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*d1766043SAndrew Rist * KIND, either express or implied. See the License for the 17*d1766043SAndrew Rist * specific language governing permissions and limitations 18*d1766043SAndrew Rist * under the License. 19*d1766043SAndrew Rist * 20*d1766043SAndrew Rist *************************************************************/ 21*d1766043SAndrew Rist 22*d1766043SAndrew Rist 23cdf0e10cSrcweir#ifndef __com_sun_star_rendering_FontInfo_idl__ 24cdf0e10cSrcweir#define __com_sun_star_rendering_FontInfo_idl__ 25cdf0e10cSrcweir 26cdf0e10cSrcweir#ifndef __com_sun_star_util_TriState_idl__ 27cdf0e10cSrcweir#include <com/sun/star/util/TriState.idl> 28cdf0e10cSrcweir#endif 29cdf0e10cSrcweir 30cdf0e10cSrcweir#ifndef __com_sun_star_rendering_Panose_idl__ 31cdf0e10cSrcweir#include <com/sun/star/rendering/Panose.idl> 32cdf0e10cSrcweir#endif 33cdf0e10cSrcweir 34cdf0e10cSrcweir 35cdf0e10cSrcweirmodule com { module sun { module star { module rendering { 36cdf0e10cSrcweir 37cdf0e10cSrcweir/** This structure provides information about a specific font.<p> 38cdf0e10cSrcweir 39cdf0e10cSrcweir @since OOo 2.0 40cdf0e10cSrcweir */ 41cdf0e10cSrcweirpublished struct FontInfo 42cdf0e10cSrcweir{ 43cdf0e10cSrcweir /** The PANOSE font classification.<p> 44cdf0e10cSrcweir 45cdf0e10cSrcweir TODO: Document semantics in Panose.idl 46cdf0e10cSrcweir */ 47cdf0e10cSrcweir Panose FontDescription; 48cdf0e10cSrcweir 49cdf0e10cSrcweir //------------------------------------------------------------------------- 50cdf0e10cSrcweir 51cdf0e10cSrcweir /** The name of the font family.<p> 52cdf0e10cSrcweir 53cdf0e10cSrcweir The family name is the one normally associated to a font, such 54cdf0e10cSrcweir as Times New Roman, Thorndale, Andale or Arial.<p> 55cdf0e10cSrcweir 56cdf0e10cSrcweir Note: outlined fonts are now specified with 'outline' as part 57cdf0e10cSrcweir of the family name.<p> 58cdf0e10cSrcweir */ 59cdf0e10cSrcweir string FamilyName; 60cdf0e10cSrcweir 61cdf0e10cSrcweir //------------------------------------------------------------------------- 62cdf0e10cSrcweir 63cdf0e10cSrcweir /** The name of the specific font style within its family.<p> 64cdf0e10cSrcweir 65cdf0e10cSrcweir For example, oblique, italic, or narrow.<p> 66cdf0e10cSrcweir */ 67cdf0e10cSrcweir string StyleName; 68cdf0e10cSrcweir 69cdf0e10cSrcweir //------------------------------------------------------------------------- 70cdf0e10cSrcweir 71cdf0e10cSrcweir /** This value specifies which unicode ranges are supported by 72cdf0e10cSrcweir this font.<p> 73cdf0e10cSrcweir 74cdf0e10cSrcweir This is to be interpreted as a split-up 128bit value, see <a 75cdf0e10cSrcweir href=http://partners.adobe.com/asn/tech/type/opentype/os2.jsp#ur>Adobe's 76cdf0e10cSrcweir OpenType specification</a> for the specific meaning of each 77cdf0e10cSrcweir bit. UnicodeRanges0 contains the least significant bits, 78cdf0e10cSrcweir UnicodeRanges3 the most significant ones.<p> 79cdf0e10cSrcweir 80cdf0e10cSrcweir const int128 UNICODE_RANGE_BASIC_LATIN = 1; 81cdf0e10cSrcweir const int128 UNICODE_RANGE_LATIN_SUPPLEMENT = 2; 82cdf0e10cSrcweir const int128 UNICODE_RANGE_LATIN_EXTENDED_A = 4; 83cdf0e10cSrcweir const int128 UNICODE_RANGE_LATIN_EXTENDED_B = 4; 84cdf0e10cSrcweir ... 85cdf0e10cSrcweir const int128 UNICODE_RANGE_MASK_LATIN = 1; 86cdf0e10cSrcweir const int128 UNICODE_RANGE_MASK_CJK = (31<<48) + (3<<55) + 87cdf0e10cSrcweir (1<<59); 88cdf0e10cSrcweir const int128 UNICODE_RANGE_MASK_CTL = (1<<11) + (1<<13) + 89cdf0e10cSrcweir (0x3FFF<<15) + (0x0FFF<<70); 90cdf0e10cSrcweir 91cdf0e10cSrcweir */ 92cdf0e10cSrcweir long UnicodeRanges0; 93cdf0e10cSrcweir long UnicodeRanges1; 94cdf0e10cSrcweir long UnicodeRanges2; 95cdf0e10cSrcweir long UnicodeRanges3; 96cdf0e10cSrcweir 97cdf0e10cSrcweir //------------------------------------------------------------------------- 98cdf0e10cSrcweir 99cdf0e10cSrcweir /** Specifies whether the font is a symbol font.<p> 100cdf0e10cSrcweir 101cdf0e10cSrcweir If yes, text written in this symbol font does not have a 102cdf0e10cSrcweir specified meaning.<p> 103cdf0e10cSrcweir */ 104cdf0e10cSrcweir ::com::sun::star::util::TriState IsSymbolFont; 105cdf0e10cSrcweir 106cdf0e10cSrcweir //------------------------------------------------------------------------- 107cdf0e10cSrcweir 108cdf0e10cSrcweir /** Set to true, if the font is usable for vertical text 109cdf0e10cSrcweir output.<p> 110cdf0e10cSrcweir 111cdf0e10cSrcweir Vertical fonts have subtle differences to horizontal ones, 112cdf0e10cSrcweir e.g. rotated or differently shaped glyphs, or special rotated 113cdf0e10cSrcweir versions of normally upright glyphs (e.g. brackets).<p> 114cdf0e10cSrcweir */ 115cdf0e10cSrcweir ::com::sun::star::util::TriState IsVertical; 116cdf0e10cSrcweir 117cdf0e10cSrcweir 118cdf0e10cSrcweir}; 119cdf0e10cSrcweir 120cdf0e10cSrcweir}; }; }; }; 121cdf0e10cSrcweir 122cdf0e10cSrcweir#endif 123