/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org 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 version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #include #include "xmluconv.hxx" #include #include namespace binfilter { using namespace ::rtl; using namespace ::com::sun::star; using namespace ::com::sun::star::awt; using namespace ::binfilter::xmloff::token; SvXMLEnumMapEntry const pXML_Underline_Enum[] = { { XML_UNDERLINE_NONE, FontUnderline::NONE }, { XML_UNDERLINE_SINGLE, FontUnderline::SINGLE }, { XML_UNDERLINE_DOUBLE, FontUnderline::DOUBLE }, { XML_UNDERLINE_DOTTED, FontUnderline::DOTTED }, { XML_UNDERLINE_DASH, FontUnderline::DASH }, { XML_UNDERLINE_LONG_DASH, FontUnderline::LONGDASH }, { XML_UNDERLINE_DOT_DASH, FontUnderline::DASHDOT }, { XML_UNDERLINE_DOT_DOT_DASH, FontUnderline::DASHDOTDOT }, { XML_UNDERLINE_WAVE, FontUnderline::WAVE }, { XML_UNDERLINE_BOLD, FontUnderline::BOLD }, { XML_UNDERLINE_BOLD_DOTTED, FontUnderline::BOLDDOTTED }, { XML_UNDERLINE_BOLD_DASH, FontUnderline::BOLDDASH }, { XML_UNDERLINE_BOLD_LONG_DASH, FontUnderline::BOLDLONGDASH }, { XML_UNDERLINE_BOLD_DOT_DASH, FontUnderline::BOLDDASHDOT }, { XML_UNDERLINE_BOLD_DOT_DOT_DASH, FontUnderline::BOLDDASHDOTDOT }, { XML_UNDERLINE_BOLD_WAVE, FontUnderline::BOLDWAVE }, { XML_UNDERLINE_DOUBLE_WAVE, FontUnderline::DOUBLEWAVE }, { XML_UNDERLINE_SMALL_WAVE, FontUnderline::SMALLWAVE }, { XML_TOKEN_INVALID, 0 } }; /////////////////////////////////////////////////////////////////////////////// // // class XMLPosturePropHdl // XMLUnderlinePropHdl::~XMLUnderlinePropHdl() { // nothing to do } sal_Bool XMLUnderlinePropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const { sal_Bool bRet = sal_False; sal_uInt16 eUnderline; if( ( bRet = rUnitConverter.convertEnum( eUnderline, rStrImpValue, pXML_Underline_Enum ) ) ) rValue <<= (sal_Int16)eUnderline; return bRet; } sal_Bool XMLUnderlinePropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const { sal_Bool bRet = sal_False; sal_Int16 nValue(0); OUStringBuffer aOut; if( rValue >>= nValue ) { if( ( bRet = rUnitConverter.convertEnum( aOut, (sal_uInt16)nValue, pXML_Underline_Enum ) ) ) rStrExpValue = aOut.makeStringAndClear(); } return bRet; } }//end of namespace binfilter /* vim:set shiftwidth=4 softtabstop=4 expandtab: */