/************************************************************** * * 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 _FONTCFG_HXX #define _FONTCFG_HXX #include #include #include #include #include "swdllapi.h" #define FONT_STANDARD 0 #define FONT_OUTLINE 1 #define FONT_LIST 2 #define FONT_CAPTION 3 #define FONT_INDEX 4 #define FONT_STANDARD_CJK 5 #define FONT_OUTLINE_CJK 6 #define FONT_LIST_CJK 7 #define FONT_CAPTION_CJK 8 #define FONT_INDEX_CJK 9 #define FONT_STANDARD_CTL 10 #define FONT_OUTLINE_CTL 11 #define FONT_LIST_CTL 12 #define FONT_CAPTION_CTL 13 #define FONT_INDEX_CTL 14 #define DEF_FONT_COUNT 15 #define FONT_PER_GROUP 5 #define FONT_GROUP_DEFAULT 0 #define FONT_GROUP_CJK 1 #define FONT_GROUP_CTL 2 //pt-size of fonts #define FONTSIZE_DEFAULT 240 #define FONTSIZE_OUTLINE 280 class SW_DLLPUBLIC SwStdFontConfig : public utl::ConfigItem { String sDefaultFonts[DEF_FONT_COUNT]; sal_Int32 nDefaultFontHeight[DEF_FONT_COUNT]; SW_DLLPRIVATE com::sun::star::uno::Sequence GetPropertyNames(); void ChangeString(sal_uInt16 nFontType, const String& rSet) { if(sDefaultFonts[nFontType] != rSet) { SetModified(); sDefaultFonts[nFontType] = rSet; } } void ChangeInt( sal_uInt16 nFontType, sal_Int32 nHeight ); public: SwStdFontConfig(); ~SwStdFontConfig(); virtual void Commit(); virtual void Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& aPropertyNames ); const String& GetFontStandard(sal_uInt8 nFontGroup) const {return sDefaultFonts[FONT_STANDARD + FONT_PER_GROUP * nFontGroup];} const String& GetFontOutline(sal_uInt8 nFontGroup) const {return sDefaultFonts[FONT_OUTLINE + FONT_PER_GROUP * nFontGroup];} const String& GetFontList (sal_uInt8 nFontGroup) const {return sDefaultFonts[FONT_LIST + FONT_PER_GROUP * nFontGroup];} const String& GetFontCaption(sal_uInt8 nFontGroup) const {return sDefaultFonts[FONT_CAPTION + FONT_PER_GROUP * nFontGroup];} const String& GetFontIndex (sal_uInt8 nFontGroup) const {return sDefaultFonts[FONT_INDEX + FONT_PER_GROUP * nFontGroup];} const String& GetFontFor(sal_uInt16 nFontType) const {return sDefaultFonts[nFontType];} sal_Bool IsFontDefault(sal_uInt16 nFontType) const; void SetFontStandard(const String& rSet, sal_uInt8 nFontGroup) {ChangeString(FONT_STANDARD + FONT_PER_GROUP * nFontGroup, rSet);} void SetFontOutline(const String& rSet, sal_uInt8 nFontGroup) { ChangeString(FONT_OUTLINE + FONT_PER_GROUP * nFontGroup, rSet);} void SetFontList (const String& rSet, sal_uInt8 nFontGroup) { ChangeString(FONT_LIST + FONT_PER_GROUP * nFontGroup, rSet);} void SetFontCaption(const String& rSet, sal_uInt8 nFontGroup) { ChangeString(FONT_CAPTION + FONT_PER_GROUP * nFontGroup, rSet);} void SetFontIndex (const String& rSet, sal_uInt8 nFontGroup) { ChangeString(FONT_INDEX + FONT_PER_GROUP * nFontGroup, rSet);} void SetFontHeight( sal_Int32 nHeight, sal_uInt8 nFont, sal_uInt8 nScriptType ) { ChangeInt(nFont + FONT_PER_GROUP * nScriptType, nHeight);} sal_Int32 GetFontHeight( sal_uInt8 nFont, sal_uInt8 nScriptType, LanguageType eLang ); static String GetDefaultFor(sal_uInt16 nFontType, LanguageType eLang); static sal_Int32 GetDefaultHeightFor(sal_uInt16 nFontType, LanguageType eLang); }; #endif