/************************************************************************* * * $RCSfile: fontdialog.cxx,v $ * * $Revision: 1.7 $ * * last change: $Author: hr $ $Date: 2003-03-25 16:03:50 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses * * - GNU Lesser General Public License Version 2.1 * - Sun Industry Standards Source License Version 1.1 * * Sun Microsystems Inc., October, 2000 * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2000 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * * Sun Industry Standards Source License Version 1.1 * ================================================= * The contents of this file are subject to the Sun Industry Standards * Source License Version 1.1 (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.openoffice.org/license.html. * * Software provided under this License is provided on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. * See the License for the specific provisions governing your rights and * obligations concerning the Software. * * The Initial Developer of the Original Code is: Sun Microsystems, Inc.. * * Copyright: 2000 by Sun Microsystems, Inc. * * All Rights Reserved. * * Contributor(s): _______________________________________ * * ************************************************************************/ #ifndef _SFXSIDS_HRC #include #endif #ifndef _EXTENSIONS_PROPCTRLR_FONTDIALOG_HXX_ #include "fontdialog.hxx" #endif #ifndef _EXTENSIONS_PROPCTRLR_PROPRESID_HRC_ #include "formresid.hrc" #endif #ifndef _EXTENSIONS_PROPCTRLR_MODULEPRC_HXX_ #include "modulepcr.hxx" #endif #ifndef _SVX_CHARDLG_HXX #include #endif #ifndef _EXTENSIONS_PROPCTRLR_FORMLOCALID_HRC_ #include "formlocalid.hrc" #endif #ifndef _SV_SVAPP_HXX #include #endif #ifndef _TOOLKIT_HELPER_VCLUNOHELPER_HXX_ #include #endif #ifndef _COMPHELPER_TYPES_HXX_ #include #endif #ifndef _COMPHELPER_EXTRACT_HXX_ #include #endif #ifndef _COM_SUN_STAR_AWT_FONTDESCRIPTOR_HPP_ #include #endif #ifndef _COM_SUN_STAR_AWT_FONTWEIGHT_HPP_ #include #endif #ifndef _COM_SUN_STAR_AWT_FONTSLANT_HPP_ #include #endif #ifndef _COM_SUN_STAR_AWT_FONTUNDERLINE_HPP_ #include #endif #ifndef _COM_SUN_STAR_AWT_FONTSTRIKEOUT_HPP_ #include #endif #ifndef _EXTENSIONS_FORMSCTRLR_FORMSTRINGS_HXX_ #include "formstrings.hxx" #endif #ifndef _EXTENSIONS_PROPCTRLR_FONTITEMIDS_HXX_ #include "fontitemids.hxx" #endif #define ITEMID_FONT CFID_FONT #define ITEMID_FONTHEIGHT CFID_HEIGHT #define ITEMID_WEIGHT CFID_WEIGHT #define ITEMID_POSTURE CFID_POSTURE #define ITEMID_LANGUAGE CFID_LANGUAGE #define ITEMID_UNDERLINE CFID_UNDERLINE #define ITEMID_CROSSEDOUT CFID_STRIKEOUT #define ITEMID_WORDLINEMODE CFID_WORDLINEMODE #define ITEMID_COLOR CFID_CHARCOLOR #define ITEMID_CHARRELIEF CFID_RELIEF #define ITEMID_EMPHASISMARK CFID_EMPHASIS #define ITEMID_CASEMAP CFID_CASEMAP #define ITEMID_CONTOUR CFID_CONTOUR #define ITEMID_SHADOWED CFID_SHADOWED #define ITEMID_FONTLIST CFID_FONTLIST #ifndef _SVX_CHARRELIEFITEM_HXX #include #endif #ifndef _SVX_EMPHITEM_HXX #include #endif #ifndef _SVX_FONTITEM_HXX #include #endif #ifndef _SVX_FHGTITEM_HXX #include #endif #ifndef _SVX_POSTITEM_HXX #include #endif #ifndef _SVX_WGHTITEM_HXX #include #endif #ifndef _SVX_UDLNITEM_HXX #include #endif #ifndef _SVX_CRSDITEM_HXX #include #endif #ifndef _SVX_COLRITEM_HXX #include #endif #ifndef _SVX_FLSTITEM_HXX #include #endif #ifndef _SVX_LANGITEM_HXX #include #endif #ifndef _SVX_WRLMITEM_HXX #include #endif #ifndef _SVX_CMAPITEM_HXX #include #endif #ifndef _SVX_ITEM_HXX #include #endif #ifndef _SVX_SHDDITEM_HXX #include #endif #ifndef _SVX_FLSTITEM_HXX #include #endif #ifndef _SV_SYSTEM_HXX #include #endif #ifndef _CTRLTOOL_HXX #include #endif #ifndef _COM_SUN_STAR_BEANS_XPROPERTYSTATE_HPP_ #include #endif //............................................................................ namespace pcr { //............................................................................ using namespace ::com::sun::star::uno; using namespace ::com::sun::star::beans; //======================================================================== //= OFontPropertyExtractor //======================================================================== class OFontPropertyExtractor { protected: ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > m_xPropValueAccess; ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyState > m_xPropStateAccess; public: OFontPropertyExtractor( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rxProps ); public: sal_Bool getCheckFontProperty(const ::rtl::OUString& _rPropName, ::com::sun::star::uno::Any& _rValue); ::rtl::OUString getStringFontProperty(const ::rtl::OUString& _rPropName, const ::rtl::OUString& _rDefault); sal_Int16 getInt16FontProperty(const ::rtl::OUString& _rPropName, const sal_Int16 _nDefault); sal_Int32 getInt32FontProperty(const ::rtl::OUString& _rPropName, const sal_Int32 _nDefault); float getFloatFontProperty(const ::rtl::OUString& _rPropName, const float _nDefault); void invalidateItem( const ::rtl::OUString& _rPropName, sal_uInt16 _nItemId, SfxItemSet& _rSet, sal_Bool _bForceInvalidation = sal_False); }; //------------------------------------------------------------------------ OFontPropertyExtractor::OFontPropertyExtractor(const Reference< XPropertySet >& _rxProps) :m_xPropValueAccess(_rxProps) ,m_xPropStateAccess(_rxProps, UNO_QUERY) { OSL_ENSURE(m_xPropValueAccess.is(), "OFontPropertyExtractor::OFontPropertyExtractor: invalid property set!"); } //------------------------------------------------------------------------ sal_Bool OFontPropertyExtractor::getCheckFontProperty(const ::rtl::OUString& _rPropName, Any& _rValue) { _rValue = m_xPropValueAccess->getPropertyValue(_rPropName); if (m_xPropStateAccess.is()) return PropertyState_DEFAULT_VALUE == m_xPropStateAccess->getPropertyState(_rPropName); return sal_False; } //------------------------------------------------------------------------ ::rtl::OUString OFontPropertyExtractor::getStringFontProperty(const ::rtl::OUString& _rPropName, const ::rtl::OUString& _rDefault) { Any aValue; if (getCheckFontProperty(_rPropName, aValue)) return _rDefault; return ::comphelper::getString(aValue); } //------------------------------------------------------------------------ sal_Int16 OFontPropertyExtractor::getInt16FontProperty(const ::rtl::OUString& _rPropName, const sal_Int16 _nDefault) { Any aValue; if (getCheckFontProperty(_rPropName, aValue)) return _nDefault; sal_Int32 nValue(_nDefault); ::cppu::enum2int(nValue, aValue); return (sal_Int16)nValue; } //------------------------------------------------------------------------ sal_Int32 OFontPropertyExtractor::getInt32FontProperty(const ::rtl::OUString& _rPropName, const sal_Int32 _nDefault) { Any aValue; if (getCheckFontProperty(_rPropName, aValue)) return _nDefault; sal_Int32 nValue(_nDefault); ::cppu::enum2int(nValue, aValue); return nValue; } //------------------------------------------------------------------------ float OFontPropertyExtractor::getFloatFontProperty(const ::rtl::OUString& _rPropName, const float _nDefault) { Any aValue; if (getCheckFontProperty(_rPropName, aValue)) return _nDefault; return ::comphelper::getFloat(aValue); } //------------------------------------------------------------------------ void OFontPropertyExtractor::invalidateItem(const ::rtl::OUString& _rPropName, sal_uInt16 _nItemId, SfxItemSet& _rSet, sal_Bool _bForceInvalidation) { if ( _bForceInvalidation || ( m_xPropStateAccess.is() && (PropertyState_AMBIGUOUS_VALUE == m_xPropStateAccess->getPropertyState(_rPropName)) ) ) _rSet.InvalidateItem(_nItemId); } //======================================================================== //= ControlCharacterDialog //======================================================================== //------------------------------------------------------------------------ ControlCharacterDialog::ControlCharacterDialog(Window* _pParent, const SfxItemSet& _rCoreSet) :SfxTabDialog(_pParent, ModuleRes(RID_TABDLG_FONTDIALOG), &_rCoreSet) { FreeResource(); AddTabPage(TABPAGE_CHARACTERS, SvxCharNamePage::Create, 0); AddTabPage(TABPAGE_CHARACTERS_EXT, SvxCharEffectsPage::Create, 0); } //------------------------------------------------------------------------ ControlCharacterDialog::~ControlCharacterDialog() { } //------------------------------------------------------------------------ void ControlCharacterDialog::translatePropertiesToItems(const Reference< XPropertySet >& _rxModel, SfxItemSet* _pSet) { OSL_ENSURE(_pSet && _rxModel.is(), "ControlCharacterDialog::translatePropertiesToItems: invalid arguments!"); if (!_pSet || !_rxModel.is()) return; try { OFontPropertyExtractor aPropExtractor(_rxModel); // some items, which may be in default state, have to be filled with non-void information Font aDefaultVCLFont = Application::GetDefaultDevice()->GetSettings().GetStyleSettings().GetAppFont(); ::com::sun::star::awt::FontDescriptor aDefaultFont = VCLUnoHelper::CreateFontDescriptor(aDefaultVCLFont); // get the current properties ::rtl::OUString aFontName = aPropExtractor.getStringFontProperty(PROPERTY_FONT_NAME, aDefaultFont.Name); ::rtl::OUString aFontStyleName = aPropExtractor.getStringFontProperty(PROPERTY_FONT_STYLENAME, aDefaultFont.StyleName); sal_Int16 nFontFamily = aPropExtractor.getInt16FontProperty(PROPERTY_FONT_FAMILY, aDefaultFont.Family); sal_Int16 nFontCharset = aPropExtractor.getInt16FontProperty(PROPERTY_FONT_CHARSET, aDefaultFont.CharSet); float nFontHeight = aPropExtractor.getFloatFontProperty(PROPERTY_FONT_HEIGHT, (float)aDefaultFont.Height); float nFontWeight = aPropExtractor.getFloatFontProperty(PROPERTY_FONT_WEIGHT, aDefaultFont.Weight); sal_Int16 nFontSlant = aPropExtractor.getInt16FontProperty(PROPERTY_FONT_SLANT, aDefaultFont.Slant); sal_Int16 nFontUnderline = aPropExtractor.getInt16FontProperty(PROPERTY_FONT_UNDERLINE, aDefaultFont.Underline); sal_Int16 nFontStrikeout = aPropExtractor.getInt16FontProperty(PROPERTY_FONT_STRIKEOUT, aDefaultFont.Strikeout); sal_Int32 nTextLineColor = aPropExtractor.getInt32FontProperty(PROPERTY_TEXTLINECOLOR, COL_AUTO); sal_Int16 nFontRelief = aPropExtractor.getInt16FontProperty(PROPERTY_FONT_RELIEF, aDefaultVCLFont.GetRelief()); sal_Int16 nFontEmphasisMark = aPropExtractor.getInt16FontProperty(PROPERTY_FONT_EMPHASIS_MARK, aDefaultVCLFont.GetEmphasisMark()); Any aValue; sal_Bool bWordLineMode = aPropExtractor.getCheckFontProperty(PROPERTY_WORDLINEMODE, aValue) ? aDefaultFont.WordLineMode : ::cppu::any2bool(aValue); sal_Int32 nColor32 = aPropExtractor.getInt32FontProperty(PROPERTY_TEXTCOLOR, 0); // build SfxItems with the values SvxFontItem aFontItem((FontFamily)nFontFamily, aFontName, aFontStyleName, PITCH_DONTKNOW, nFontCharset, CFID_FONT); nFontHeight = (float)OutputDevice::LogicToLogic(Size(0, (sal_Int32)nFontHeight), MAP_POINT, MAP_TWIP).Height(); SvxFontHeightItem aSvxFontHeightItem((sal_uInt32)nFontHeight,100,CFID_HEIGHT); FontWeight eWeight=VCLUnoHelper::ConvertFontWeight(nFontWeight); FontItalic eItalic=(FontItalic)nFontSlant; FontUnderline eUnderline=(FontUnderline)nFontUnderline; FontStrikeout eStrikeout=(FontStrikeout)nFontStrikeout; SvxWeightItem aWeightItem(eWeight,CFID_WEIGHT); SvxPostureItem aPostureItem(eItalic,CFID_POSTURE); SvxCrossedOutItem aCrossedOutItem(eStrikeout,CFID_STRIKEOUT); SvxWordLineModeItem aWordLineModeItem(bWordLineMode, CFID_WORDLINEMODE); SvxUnderlineItem aUnderlineItem(eUnderline,CFID_UNDERLINE); aUnderlineItem.SetColor(Color(nTextLineColor)); SvxColorItem aSvxColorItem(nColor32,CFID_CHARCOLOR); SvxLanguageItem aLanguageItem(Application::GetSettings().GetUILanguage(), CFID_LANGUAGE); // the 2 CJK props SvxCharReliefItem aFontReliefItem((FontRelief)nFontRelief); SvxEmphasisMarkItem aEmphasisMarkitem((FontEmphasisMark)nFontEmphasisMark); _pSet->Put(aFontItem, CFID_FONT); _pSet->Put(aSvxFontHeightItem,CFID_HEIGHT); _pSet->Put(aWeightItem, CFID_WEIGHT); _pSet->Put(aPostureItem, CFID_POSTURE); _pSet->Put(aLanguageItem, CFID_LANGUAGE); _pSet->Put(aUnderlineItem,CFID_UNDERLINE); _pSet->Put(aCrossedOutItem,CFID_STRIKEOUT); _pSet->Put(aWordLineModeItem, CFID_WORDLINEMODE); _pSet->Put(aSvxColorItem, CFID_CHARCOLOR); _pSet->Put(aFontReliefItem, CFID_RELIEF); _pSet->Put(aEmphasisMarkitem, CFID_EMPHASIS); aPropExtractor.invalidateItem(PROPERTY_FONT_NAME, CFID_FONT, *_pSet); aPropExtractor.invalidateItem(PROPERTY_FONT_HEIGHT, CFID_HEIGHT, *_pSet); aPropExtractor.invalidateItem(PROPERTY_FONT_WEIGHT, CFID_WEIGHT, *_pSet, ::com::sun::star::awt::FontWeight::DONTKNOW == nFontWeight); aPropExtractor.invalidateItem(PROPERTY_FONT_SLANT, CFID_POSTURE, *_pSet, ::com::sun::star::awt::FontSlant_DONTKNOW == nFontSlant); aPropExtractor.invalidateItem(PROPERTY_FONT_UNDERLINE, CFID_UNDERLINE, *_pSet, ::com::sun::star::awt::FontUnderline::DONTKNOW == nFontUnderline); aPropExtractor.invalidateItem(PROPERTY_FONT_STRIKEOUT, CFID_STRIKEOUT, *_pSet, ::com::sun::star::awt::FontStrikeout::DONTKNOW == nFontStrikeout); aPropExtractor.invalidateItem(PROPERTY_WORDLINEMODE, CFID_WORDLINEMODE, *_pSet); aPropExtractor.invalidateItem(PROPERTY_TEXTCOLOR, CFID_CHARCOLOR, *_pSet); aPropExtractor.invalidateItem(PROPERTY_FONT_RELIEF, CFID_RELIEF, *_pSet); aPropExtractor.invalidateItem(PROPERTY_FONT_EMPHASIS_MARK, CFID_EMPHASIS, *_pSet); } catch (Exception&) { DBG_ERROR("ControlCharacterDialog::translatePropertiesToItems: caught an exception!") } _pSet->DisableItem(SID_ATTR_CHAR_CJK_FONT); _pSet->DisableItem(SID_ATTR_CHAR_CJK_FONTHEIGHT); _pSet->DisableItem(SID_ATTR_CHAR_CJK_LANGUAGE); _pSet->DisableItem(SID_ATTR_CHAR_CJK_POSTURE); _pSet->DisableItem(SID_ATTR_CHAR_CJK_WEIGHT); _pSet->DisableItem(SID_ATTR_CHAR_CASEMAP); _pSet->DisableItem(SID_ATTR_CHAR_CONTOUR); _pSet->DisableItem(SID_ATTR_CHAR_SHADOWED); } //------------------------------------------------------------------------ String ControlCharacterDialog::translatePropertiesToItems(const SfxItemSet* _pSet, const Reference< XPropertySet >& _rxModel) { String sNewFontName; OSL_ENSURE(_pSet && _rxModel.is(), "ControlCharacterDialog::translatePropertiesToItems: invalid arguments!"); if (!_pSet || !_rxModel.is()) return sNewFontName; try { // -------------------------- // font name SfxItemState eState = _pSet->GetItemState(CFID_FONT); if ( eState == SFX_ITEM_SET ) { const SvxFontItem& rFontItem = static_cast(_pSet->Get(CFID_FONT)); sNewFontName = rFontItem.GetFamilyName(); _rxModel->setPropertyValue( PROPERTY_FONT_NAME , makeAny(::rtl::OUString(rFontItem.GetFamilyName()))); _rxModel->setPropertyValue( PROPERTY_FONT_STYLENAME, makeAny(::rtl::OUString(rFontItem.GetStyleName()))); _rxModel->setPropertyValue( PROPERTY_FONT_FAMILY , makeAny((sal_Int16)rFontItem.GetFamily())); _rxModel->setPropertyValue( PROPERTY_FONT_CHARSET , makeAny((sal_Int16)rFontItem.GetCharSet())); } // -------------------------- // font height eState = _pSet->GetItemState(CFID_HEIGHT); if ( eState == SFX_ITEM_SET ) { const SvxFontHeightItem& rSvxFontHeightItem = static_cast(_pSet->Get(CFID_HEIGHT)); float nHeight = (float)OutputDevice::LogicToLogic(Size(0, rSvxFontHeightItem.GetHeight()), MAP_TWIP, MAP_POINT).Height(); _rxModel->setPropertyValue( PROPERTY_FONT_HEIGHT,makeAny(nHeight)); } // -------------------------- // font weight eState = _pSet->GetItemState(CFID_WEIGHT); if ( eState == SFX_ITEM_SET ) { const SvxWeightItem& rWeightItem = static_cast(_pSet->Get(CFID_WEIGHT)); float nWeight = VCLUnoHelper::ConvertFontWeight( rWeightItem.GetWeight()); _rxModel->setPropertyValue( PROPERTY_FONT_WEIGHT,makeAny(nWeight)); } // -------------------------- // font slant eState = _pSet->GetItemState(CFID_POSTURE); if ( eState == SFX_ITEM_SET ) { const SvxPostureItem& rPostureItem = static_cast(_pSet->Get(CFID_POSTURE)); ::com::sun::star::awt::FontSlant eSlant = (::com::sun::star::awt::FontSlant)rPostureItem.GetPosture(); _rxModel->setPropertyValue( PROPERTY_FONT_SLANT, makeAny((sal_Int16)eSlant)); } // -------------------------- // font underline eState = _pSet->GetItemState(CFID_UNDERLINE); if ( eState == SFX_ITEM_SET ) { const SvxUnderlineItem& rUnderlineItem = static_cast(_pSet->Get(CFID_UNDERLINE)); sal_Int16 nUnderline = rUnderlineItem.GetUnderline(); _rxModel->setPropertyValue( PROPERTY_FONT_UNDERLINE,makeAny(nUnderline)); // the text line color is transported in this item, too sal_Int32 nColor = rUnderlineItem.GetColor().GetColor(); Any aUnoColor; if (COL_AUTO != nColor) aUnoColor <<= (sal_Int32)nColor; _rxModel->setPropertyValue(PROPERTY_TEXTLINECOLOR, aUnoColor); } // -------------------------- // font strikeout eState = _pSet->GetItemState(CFID_STRIKEOUT); if ( eState == SFX_ITEM_SET ) { const SvxCrossedOutItem& rCrossedOutItem = static_cast(_pSet->Get(CFID_STRIKEOUT)); sal_Int16 nStrikeout = rCrossedOutItem.GetStrikeout(); _rxModel->setPropertyValue( PROPERTY_FONT_STRIKEOUT,makeAny(nStrikeout)); } // -------------------------- // font wordline mode eState = _pSet->GetItemState(CFID_WORDLINEMODE); if ( eState == SFX_ITEM_SET ) { const SvxWordLineModeItem& rWordLineModeItem = static_cast(_pSet->Get(CFID_WORDLINEMODE)); _rxModel->setPropertyValue( PROPERTY_WORDLINEMODE, ::cppu::bool2any(rWordLineModeItem.GetValue())); } // -------------------------- // text color eState = _pSet->GetItemState(CFID_CHARCOLOR); if ( eState == SFX_ITEM_SET ) { const SvxColorItem& rColorItem = static_cast(_pSet->Get(CFID_CHARCOLOR)); sal_Int32 nColor = rColorItem.GetValue().GetColor(); Any aUnoColor; if (COL_AUTO != nColor) aUnoColor <<= (sal_Int32)nColor; _rxModel->setPropertyValue( PROPERTY_TEXTCOLOR, aUnoColor ); } // -------------------------- // font relief eState = _pSet->GetItemState(CFID_RELIEF); if ( eState == SFX_ITEM_SET ) { const SvxCharReliefItem& rReliefItem = static_cast(_pSet->Get(CFID_RELIEF)); _rxModel->setPropertyValue(PROPERTY_FONT_RELIEF, makeAny((sal_Int16)rReliefItem.GetValue())); } // -------------------------- // font emphasis mark eState = _pSet->GetItemState(CFID_EMPHASIS); if ( eState == SFX_ITEM_SET ) { const SvxEmphasisMarkItem& rEmphMarkItem = static_cast(_pSet->Get(CFID_EMPHASIS)); _rxModel->setPropertyValue(PROPERTY_FONT_EMPHASIS_MARK, makeAny((sal_Int16)rEmphMarkItem.GetEmphasisMark())); } } catch (Exception&) { DBG_ERROR("ControlCharacterDialog::translatePropertiesToItems: caught an exception!") } return sNewFontName; } //------------------------------------------------------------------------ SfxItemSet* ControlCharacterDialog::createItemSet(SfxItemSet*& _rpSet, SfxItemPool*& _rpPool, SfxPoolItem**& _rppDefaults) { // just to be sure .... _rpSet = NULL; _rpPool = NULL; _rppDefaults = NULL; // create and initialize the defaults _rppDefaults = new SfxPoolItem*[CFID_LAST_ITEM_ID - CFID_FIRST_ITEM_ID + 1]; Font aDefaultVCLFont = Application::GetDefaultDevice()->GetSettings().GetStyleSettings().GetAppFont(); SfxPoolItem** pCounter = _rppDefaults; // want to modify this without affecting the out param _rppDefaults *pCounter++ = new SvxFontItem(aDefaultVCLFont.GetFamily(), aDefaultVCLFont.GetName(), aDefaultVCLFont.GetStyleName(), aDefaultVCLFont.GetPitch(), aDefaultVCLFont.GetCharSet(), CFID_FONT); *pCounter++ = new SvxFontHeightItem(aDefaultVCLFont.GetHeight(), 100, CFID_HEIGHT); *pCounter++ = new SvxWeightItem(aDefaultVCLFont.GetWeight(), CFID_WEIGHT); *pCounter++ = new SvxPostureItem(aDefaultVCLFont.GetItalic(), CFID_POSTURE); *pCounter++ = new SvxLanguageItem(Application::GetSettings().GetUILanguage(), CFID_LANGUAGE); *pCounter++ = new SvxUnderlineItem(aDefaultVCLFont.GetUnderline(), CFID_UNDERLINE); *pCounter++ = new SvxCrossedOutItem(aDefaultVCLFont.GetStrikeout(), CFID_STRIKEOUT); *pCounter++ = new SvxWordLineModeItem(aDefaultVCLFont.IsWordLineMode(), CFID_WORDLINEMODE); *pCounter++ = new SvxColorItem(aDefaultVCLFont.GetColor(), CFID_CHARCOLOR); *pCounter++ = new SvxCharReliefItem(aDefaultVCLFont.GetRelief(), CFID_RELIEF); *pCounter++ = new SvxEmphasisMarkItem(aDefaultVCLFont.GetEmphasisMark(), CFID_EMPHASIS); *pCounter++ = new SvxFontItem(aDefaultVCLFont.GetFamily(), aDefaultVCLFont.GetName(), aDefaultVCLFont.GetStyleName(), aDefaultVCLFont.GetPitch(), aDefaultVCLFont.GetCharSet(), CFID_CJK_FONT); *pCounter++ = new SvxFontHeightItem(aDefaultVCLFont.GetHeight(), 100, CFID_CJK_HEIGHT); *pCounter++ = new SvxWeightItem(aDefaultVCLFont.GetWeight(), CFID_CJK_WEIGHT); *pCounter++ = new SvxPostureItem(aDefaultVCLFont.GetItalic(), CFID_CJK_POSTURE); *pCounter++ = new SvxLanguageItem(Application::GetSettings().GetUILanguage(), CFID_CJK_LANGUAGE); *pCounter++ = new SvxCaseMapItem(SVX_CASEMAP_NOT_MAPPED, CFID_CASEMAP); *pCounter++ = new SvxContourItem(sal_False, CFID_CONTOUR); *pCounter++ = new SvxShadowedItem(sal_False, CFID_SHADOWED); *pCounter++ = new SvxFontListItem (new FontList(Application::GetDefaultDevice()), CFID_FONTLIST); // create the pool static SfxItemInfo __READONLY_DATA aItemInfos[CFID_LAST_ITEM_ID - CFID_FIRST_ITEM_ID + 1] = { { SID_ATTR_CHAR_FONT, 0 }, { SID_ATTR_CHAR_FONTHEIGHT, 0 }, { SID_ATTR_CHAR_WEIGHT, 0 }, { SID_ATTR_CHAR_POSTURE, 0 }, { SID_ATTR_CHAR_LANGUAGE, 0 }, { SID_ATTR_CHAR_UNDERLINE, 0 }, { SID_ATTR_CHAR_STRIKEOUT, 0 }, { SID_ATTR_CHAR_WORDLINEMODE, 0 }, { SID_ATTR_CHAR_COLOR, 0 }, { SID_ATTR_CHAR_RELIEF, 0 }, { SID_ATTR_CHAR_EMPHASISMARK, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { SID_ATTR_CHAR_FONTLIST, 0 } }; _rpPool = new SfxItemPool(String::CreateFromAscii("PCRControlFontItemPool"), CFID_FIRST_ITEM_ID, CFID_LAST_ITEM_ID, aItemInfos, _rppDefaults); _rpPool->FreezeIdRanges(); // and, finally, the set _rpSet = new SfxItemSet(*_rpPool, sal_True); return _rpSet; } //------------------------------------------------------------------------- void ControlCharacterDialog::destroyItemSet(SfxItemSet*& _rpSet, SfxItemPool*& _rpPool, SfxPoolItem**& _rppDefaults) { // from the pool, get and remember the font list (needs to be deleted) const SvxFontListItem& rFontListItem = static_cast(_rpPool->GetDefaultItem(CFID_FONTLIST)); const FontList* pFontList = rFontListItem.GetFontList(); // _first_ delete the set (refering the pool) if (_rpSet) { delete _rpSet; _rpSet = NULL; } // delete the pool if (_rpPool) { _rpPool->ReleaseDefaults(sal_True); // the "true" means delete the items, too delete _rpPool; _rpPool = NULL; } // reset the defaults ptr _rppDefaults = NULL; // no need to explicitly delete the defaults, this has been done by the ReleaseDefaults delete pFontList; } //------------------------------------------------------------------------ void ControlCharacterDialog::PageCreated( sal_uInt16 _nId, SfxTabPage& _rPage ) { switch ( _nId ) { case TABPAGE_CHARACTERS: static_cast(_rPage).SetFontList( static_cast(GetInputSetImpl()->Get(CFID_FONTLIST)) ); static_cast(_rPage).DisableControls( DISABLE_HIDE_LANGUAGE ); break; } } //............................................................................ } // namespace pcr //............................................................................