/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef __com_sun_star_formula_Symbol_idl__ #define __com_sun_star_formula_Symbol_idl__ //============================================================================= module com { module sun { module star { module formula { //============================================================================= /** @deprecated draft - nWeight should be changed to float as in FontWeight.idl - nItalic probably needs to have FontItalic extended by the two extra defines REVERSE_* listed in FontSlant.idl - nCharSet should have the CharSet.idl extended by the new defines from rtl/textenc.h */ published struct SymbolDescriptor { /** The name of the symbol. */ string sName; /** The export name of the symbol. */ string sExportName; /** Specifies the name of the symbol set to which this symbol belongs. */ string sSymbolSet; /** Specifies the unicode character of the symbol. */ long nCharacter; /** Specifies the exact name of the font ("Arial", "Courier", etc.). */ string sFontName; /** Specifies the character set which is supported by the font. @see CharSet */ short nCharSet; /** Specifies the general style of the font. @see FontFamily */ short nFamily; /** Specifies the pitch of the font. @see FontPitch */ short nPitch; /** Specifies the thickness of the line. @see FontWeight The allowed integer values correspond as follows: 0 : FontWeight::DONTKNOW 1 : FontWeight::THIN 2 : FontWeight::ULTRALIGHT 3 : FontWeight::LIGHT 4 : FontWeight::SEMILIGHT 5 : FontWeight::NORMAL 7 : FontWeight::SEMIBOLD 8 : FontWeight::BOLD 9 : FontWeight::ULTRABOLD 10 : FontWeight::BLACK */ short nWeight; /** Specifies if the font is italic. @see FontSlant The values FontSlant::REVERSE_OBLIQUE and FontSlant::REVERSE_ITALIC may not be used. */ short nItalic; }; }; }; }; }; #endif