Files
libreoffice/sw/source/ui/vba/vbastyle.cxx
Noel Grandin 0b4135ec99 loplugin:flatten in sw
Change-Id: I77d92e7adc9af5c88ca1930c25a0585713f9e0d3
Reviewed-on: https://gerrit.libreoffice.org/42788
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2017-09-26 14:16:13 +02:00

231 lines
6.9 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* 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 .
*/
#include "vbastyle.hxx"
#include <ooo/vba/word/WdStyleType.hpp>
#include <com/sun/star/lang/Locale.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/text/XTextDocument.hpp>
#include <i18nlangtag/languagetag.hxx>
#include "vbafont.hxx"
#include "vbapalette.hxx"
#include "vbaparagraphformat.hxx"
#include "vbastyles.hxx"
using namespace ::ooo::vba;
using namespace ::com::sun::star;
SwVbaStyle::SwVbaStyle( const uno::Reference< XHelperInterface >& xParent, const uno::Reference< uno::XComponentContext > & xContext, const uno::Reference< frame::XModel>& xModel, const uno::Reference< beans::XPropertySet >& _xPropertySet ) : SwVbaStyle_BASE( xParent, xContext ) , mxModel( xModel ), mxStyleProps( _xPropertySet )
{
mxStyle.set( _xPropertySet, uno::UNO_QUERY_THROW );
}
void SAL_CALL
SwVbaStyle::setName( const OUString& Name )
{
mxStyle->setName(Name);
}
OUString SAL_CALL
SwVbaStyle::getName()
{
return mxStyle->getName();
}
LanguageType SwVbaStyle::getLanguageID( const uno::Reference< beans::XPropertySet >& xTCProps )
{
lang::Locale aLocale;
xTCProps->getPropertyValue("CharLocale") >>= aLocale;
return LanguageTag::convertToLanguageType( aLocale, false);
}
void SwVbaStyle::setLanguageID( const uno::Reference< beans::XPropertySet >& xTCProps, LanguageType _languageid )
{
lang::Locale aLocale = LanguageTag( _languageid ).getLocale();
xTCProps->setPropertyValue("CharLocale", uno::makeAny( aLocale ) ) ;
}
::sal_Int32 SAL_CALL SwVbaStyle::getLanguageID()
{
return (sal_uInt16)getLanguageID( mxStyleProps );
}
void SAL_CALL SwVbaStyle::setLanguageID( ::sal_Int32 _languageid )
{
setLanguageID( mxStyleProps, LanguageType(_languageid) );
}
::sal_Int32 SAL_CALL SwVbaStyle::getType()
{
sal_Int32 nType = word::WdStyleType::wdStyleTypeParagraph;
uno::Reference< lang::XServiceInfo > xServiceInfo( mxStyle, uno::UNO_QUERY_THROW );
if( xServiceInfo->supportsService("com.sun.star.style.ParagraphStyle") )
nType = word::WdStyleType::wdStyleTypeParagraph;
else if( xServiceInfo->supportsService("com.sun.star.style.CharacterStyle") )
nType = word::WdStyleType::wdStyleTypeCharacter;
else
nType = word::WdStyleType::wdStyleTypeList;
return nType;
}
uno::Reference< word::XFont > SAL_CALL
SwVbaStyle::getFont()
{
VbaPalette aColors;
return new SwVbaFont( mxParent, mxContext, aColors.getPalette(), mxStyleProps );
}
void SwVbaStyle::setStyle( const uno::Reference< beans::XPropertySet >& xParaProps, const uno::Any& rStyle )
{
OUString sStyle;
uno::Reference< word::XStyle > xStyle;
if( rStyle >>= xStyle )
{
sStyle = xStyle->getName();
}
else
{
rStyle >>= sStyle;
}
if( !sStyle.isEmpty() )
{
xParaProps->setPropertyValue("ParaStyleName", uno::makeAny( sStyle ) );
return;
}
throw uno::RuntimeException();
}
OUString SAL_CALL SwVbaStyle::getNameLocal()
{
OUString sNameLocal;
mxStyleProps->getPropertyValue("DisplayName") >>= sNameLocal;
return sNameLocal;
}
void SAL_CALL SwVbaStyle::setNameLocal( const OUString& _namelocal )
{
mxStyleProps->setPropertyValue("DisplayName", uno::makeAny( _namelocal ) );
}
uno::Reference< word::XParagraphFormat > SAL_CALL SwVbaStyle::getParagraphFormat()
{
if( word::WdStyleType::wdStyleTypeParagraph != getType() )
{
throw uno::RuntimeException();
}
uno::Reference< text::XTextDocument > xTextDocument( mxModel, uno::UNO_QUERY_THROW );
return uno::Reference< word::XParagraphFormat >( new SwVbaParagraphFormat( this, mxContext, mxStyleProps ) );
}
sal_Bool SAL_CALL SwVbaStyle::getAutomaticallyUpdate()
{
bool isAutoUpdate = false;
mxStyleProps->getPropertyValue("IsAutoUpdate") >>= isAutoUpdate;
return isAutoUpdate;
}
void SAL_CALL SwVbaStyle::setAutomaticallyUpdate( sal_Bool _automaticallyupdate )
{
mxStyleProps->setPropertyValue("IsAutoUpdate", uno::makeAny( _automaticallyupdate ) );
}
uno::Any SAL_CALL SwVbaStyle::getBaseStyle()
{
// ParentStyle
OUString sBaseStyle;
mxStyleProps->getPropertyValue("ParentStyle") >>= sBaseStyle;
if( sBaseStyle.isEmpty() )
{
throw uno::RuntimeException();
}
uno::Reference< XCollection > xCol( new SwVbaStyles( this, mxContext, mxModel ) );
return xCol->Item( uno::makeAny( sBaseStyle ), uno::Any() );
}
void SAL_CALL SwVbaStyle::setBaseStyle( const uno::Any& _basestyle )
{
uno::Reference< word::XStyle > xStyle;
_basestyle >>= xStyle;
if( !xStyle.is() )
{
throw uno::RuntimeException();
}
OUString sBaseStyle = xStyle->getName();
mxStyleProps->setPropertyValue("ParentStyle", uno::makeAny( sBaseStyle ) );
}
uno::Any SAL_CALL SwVbaStyle::getNextParagraphStyle()
{
//FollowStyle
OUString sFollowStyle;
mxStyleProps->getPropertyValue("FollowStyle") >>= sFollowStyle;
if( sFollowStyle.isEmpty() )
{
throw uno::RuntimeException();
}
uno::Reference< XCollection > xCol( new SwVbaStyles( this, mxContext, mxModel ) );
return xCol->Item( uno::makeAny( sFollowStyle ), uno::Any() );
}
void SAL_CALL SwVbaStyle::setNextParagraphStyle( const uno::Any& _nextparagraphstyle )
{
uno::Reference< word::XStyle > xStyle;
_nextparagraphstyle >>= xStyle;
if( !xStyle.is() )
{
throw uno::RuntimeException();
}
OUString sFollowStyle = xStyle->getName();
mxStyleProps->setPropertyValue("FollowStyle", uno::makeAny( sFollowStyle ) );
}
::sal_Int32 SAL_CALL SwVbaStyle::getListLevelNumber()
{
sal_Int16 nNumberingLevel = 0;
mxStyleProps->getPropertyValue("NumberingLevel") >>= nNumberingLevel;
return nNumberingLevel;
}
OUString
SwVbaStyle::getServiceImplName()
{
return OUString("SwVbaStyle");
}
uno::Sequence< OUString >
SwVbaStyle::getServiceNames()
{
static uno::Sequence< OUString > aServiceNames;
if ( aServiceNames.getLength() == 0 )
{
aServiceNames.realloc( 1 );
aServiceNames[ 0 ] = "ooo.vba.word.XStyle";
}
return aServiceNames;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */