/* -*- 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 "vbalistlevel.hxx"
#include <utility>
#include <vbahelper/vbahelper.hxx>
#include <com/sun/star/style/NumberingType.hpp>
#include <ooo/vba/word/WdListNumberStyle.hpp>
#include <com/sun/star/text/HoriOrientation.hpp>
#include <ooo/vba/word/WdListLevelAlignment.hpp>
using namespace ::ooo::vba;
using namespace ::com::sun::star;
SwVbaListLevel::SwVbaListLevel( const uno::Reference< ooo::vba::XHelperInterface >& rParent, const uno::Reference< uno::XComponentContext >& rContext, SwVbaListHelperRef pHelper, sal_Int32 nLevel ) : SwVbaListLevel_BASE( rParent, rContext ), m_pListHelper(std::move( pHelper )), mnLevel( nLevel )
{
}
SwVbaListLevel::~SwVbaListLevel()
{
}
::sal_Int32 SAL_CALL SwVbaListLevel::getAlignment()
{
sal_Int16 nAlignment = 0;
m_pListHelper->getPropertyValueWithNameAndLevel( mnLevel, u"Adjust"_ustr ) >>= nAlignment;
switch( nAlignment )
{
case text::HoriOrientation::LEFT:
{
nAlignment = word::WdListLevelAlignment::wdListLevelAlignLeft;
break;
}
case text::HoriOrientation::RIGHT:
{
nAlignment = word::WdListLevelAlignment::wdListLevelAlignRight;
break;
}
case text::HoriOrientation::CENTER:
{
nAlignment = word::WdListLevelAlignment::wdListLevelAlignCenter;
break;
}
default:
{
throw uno::RuntimeException();
}
}
return nAlignment;
}
void SAL_CALL SwVbaListLevel::setAlignment( ::sal_Int32 _alignment )
{
sal_Int16 nAlignment = text::HoriOrientation::LEFT;
switch( _alignment )
{
case word::WdListLevelAlignment::wdListLevelAlignLeft:
{
nAlignment = text::HoriOrientation::LEFT;
break;
}
case word::WdListLevelAlignment::wdListLevelAlignRight:
{
nAlignment = text::HoriOrientation::RIGHT;
break;
}
case word::WdListLevelAlignment::wdListLevelAlignCenter:
{
nAlignment = text::HoriOrientation::CENTER;
break;
}
default:
{
throw uno::RuntimeException();
}
}
m_pListHelper->setPropertyValueWithNameAndLevel( mnLevel, u"Adjust"_ustr, uno::Any( nAlignment ) );
}
uno::Reference< ::ooo::vba::word::XFont > SAL_CALL SwVbaListLevel::getFont()
{
throw uno::RuntimeException(u"Not implemented"_ustr );
}
void SAL_CALL SwVbaListLevel::setFont( const uno::Reference< ::ooo::vba::word::XFont >& /*_font*/ )
{
throw uno::RuntimeException(u"Not implemented"_ustr );
}
::sal_Int32 SAL_CALL SwVbaListLevel::getIndex()
{
return mnLevel + 1;
}
OUString SAL_CALL SwVbaListLevel::getLinkedStyle()
{
// TODO:
return OUString();
}
void SAL_CALL SwVbaListLevel::setLinkedStyle( const OUString& /*_linkedstyle*/ )
{
// TODO:
}
OUString SAL_CALL SwVbaListLevel::getNumberFormat()
{
// TODO::
return OUString();
}
void SAL_CALL SwVbaListLevel::setNumberFormat( const OUString& /*_numberformat*/ )
{
// TODO::
}
float SAL_CALL SwVbaListLevel::getNumberPosition()
{
// indentAt + firstlineindent
sal_Int32 nIndentAt = 0;
sal_Int32 nFirstLineIndent = 0;
m_pListHelper->getPropertyValueWithNameAndLevel( mnLevel, u"IndentAt"_ustr ) >>= nIndentAt;
m_pListHelper->getPropertyValueWithNameAndLevel( mnLevel, u"FirstLineIndent"_ustr ) >>= nFirstLineIndent;
sal_Int32 nResult = nIndentAt + nFirstLineIndent;
return static_cast< float >( Millimeter::getInPoints( nResult ) );
}
void SAL_CALL SwVbaListLevel::setNumberPosition( float _numberposition )
{
sal_Int32 nNumberPosition = Millimeter::getInHundredthsOfOneMillimeter( _numberposition );
sal_Int32 nIndentAt = 0;
m_pListHelper->getPropertyValueWithNameAndLevel( mnLevel, u"IndentAt"_ustr ) >>= nIndentAt;
sal_Int32 nFirstLineIndent = nNumberPosition - nIndentAt;
m_pListHelper->setPropertyValueWithNameAndLevel( mnLevel, u"FirstLineIndent"_ustr, uno::Any( nFirstLineIndent ) );
}
::sal_Int32 SAL_CALL SwVbaListLevel::getNumberStyle()
{
sal_Int16 nNumberingType = 0;
m_pListHelper->getPropertyValueWithNameAndLevel( mnLevel, u"NumberingType"_ustr ) >>= nNumberingType;
switch( nNumberingType )
{
case style::NumberingType::CHAR_SPECIAL:
{
nNumberingType = word::WdListNumberStyle::wdListNumberStyleBullet;
break;
}
case style::NumberingType::CHARS_UPPER_LETTER:
{
nNumberingType = word::WdListNumberStyle::wdListNumberStyleUppercaseLetter;
break;
}
case style::NumberingType::CHARS_LOWER_LETTER:
{
nNumberingType = word::WdListNumberStyle::wdListNumberStyleLowercaseLetter;
break;
}
case style::NumberingType::ROMAN_UPPER:
{
nNumberingType = word::WdListNumberStyle::wdListNumberStyleUppercaseRoman;
break;
}
case style::NumberingType::ROMAN_LOWER:
{
nNumberingType = word::WdListNumberStyle::wdListNumberStyleLowercaseRoman;
break;
}
case style::NumberingType::ARABIC:
{
nNumberingType = word::WdListNumberStyle::wdListNumberStyleArabic;
break;
}
case style::NumberingType::NUMBER_NONE:
{
nNumberingType = word::WdListNumberStyle::wdListNumberStyleNone;
break;
}
case style::NumberingType::FULLWIDTH_ARABIC:
{
nNumberingType = word::WdListNumberStyle::wdListNumberStyleArabicFullWidth;
break;
}
case style::NumberingType::CIRCLE_NUMBER:
{
nNumberingType = word::WdListNumberStyle::wdListNumberStyleNumberInCircle;
break;
}
case style::NumberingType::CHARS_ARABIC:
{
nNumberingType = word::WdListNumberStyle::wdListNumberStyleCardinalText;
break;
}
default:
{
throw uno::RuntimeException(u"Not implemented"_ustr );
}
}
return nNumberingType;
}
void SAL_CALL SwVbaListLevel::setNumberStyle( ::sal_Int32 _numberstyle )
{
sal_Int16 nNumberingType = 0;
switch( _numberstyle )
{
case word::WdListNumberStyle::wdListNumberStyleBullet:
{
nNumberingType = style::NumberingType::CHAR_SPECIAL;
break;
}
case word::WdListNumberStyle::wdListNumberStyleUppercaseLetter:
{
nNumberingType = style::NumberingType::CHARS_UPPER_LETTER_N;
break;
}
case word::WdListNumberStyle::wdListNumberStyleLowercaseLetter:
{
nNumberingType = style::NumberingType::CHARS_LOWER_LETTER_N;
break;
}
case word::WdListNumberStyle::wdListNumberStyleUppercaseRoman:
{
nNumberingType = style::NumberingType::ROMAN_UPPER;
break;
}
case word::WdListNumberStyle::wdListNumberStyleLowercaseRoman:
{
nNumberingType = style::NumberingType::ROMAN_LOWER;
break;
}
case word::WdListNumberStyle::wdListNumberStyleArabic:
{
nNumberingType = style::NumberingType::ARABIC;
break;
}
case word::WdListNumberStyle::wdListNumberStyleNone:
{
nNumberingType = style::NumberingType::NUMBER_NONE;
break;
}
case word::WdListNumberStyle::wdListNumberStyleArabicFullWidth:
{
nNumberingType = style::NumberingType::FULLWIDTH_ARABIC;
break;
}
case word::WdListNumberStyle::wdListNumberStyleNumberInCircle:
{
nNumberingType = style::NumberingType::CIRCLE_NUMBER;
break;
}
case word::WdListNumberStyle::wdListNumberStyleCardinalText:
{
nNumberingType = style::NumberingType::CHARS_ARABIC;
break;
}
case word::WdListNumberStyle::wdListNumberStyleOrdinal:
case word::WdListNumberStyle::wdListNumberStyleOrdinalText:
case word::WdListNumberStyle::wdListNumberStyleKanji:
case word::WdListNumberStyle::wdListNumberStyleKanjiDigit:
case word::WdListNumberStyle::wdListNumberStyleAiueoHalfWidth:
case word::WdListNumberStyle::wdListNumberStyleIrohaHalfWidth:
{
nNumberingType = style::NumberingType::ARABIC;
break;
}
default:
{
throw uno::RuntimeException(u"Not implemented"_ustr );
}
}
m_pListHelper->setPropertyValueWithNameAndLevel( mnLevel, u"NumberingType"_ustr, uno::Any( nNumberingType ) );
}
::sal_Int32 SAL_CALL SwVbaListLevel::getResetOnHigher()
{
//seems not support?
return 0;
}
void SAL_CALL SwVbaListLevel::setResetOnHigher( ::sal_Int32 /*_resetonhigher*/ )
{
//seems not support?
}
::sal_Int32 SAL_CALL SwVbaListLevel::getStartAt()
{
sal_Int16 nStartWith = 0;
m_pListHelper->getPropertyValueWithNameAndLevel( mnLevel, u"StartWith"_ustr ) >>= nStartWith;
return nStartWith;
}
void SAL_CALL SwVbaListLevel::setStartAt( ::sal_Int32 _startat )
{
sal_Int16 nStartWith = static_cast<sal_Int16>(_startat);
m_pListHelper->setPropertyValueWithNameAndLevel( mnLevel, u"StartWith"_ustr, uno::Any( nStartWith ) );
}
float SAL_CALL SwVbaListLevel::getTabPosition()
{
sal_Int32 nTabPosition = 0;
m_pListHelper->getPropertyValueWithNameAndLevel( mnLevel, u"ListtabStopPosition"_ustr ) >>= nTabPosition;
return static_cast< float >( Millimeter::getInPoints( nTabPosition ) );
}
void SAL_CALL SwVbaListLevel::setTabPosition( float _tabposition )
{
sal_Int32 nTabPosition = Millimeter::getInHundredthsOfOneMillimeter( _tabposition );
m_pListHelper->setPropertyValueWithNameAndLevel( mnLevel, u"ListtabStopPosition"_ustr, uno::Any( nTabPosition ) );
}
float SAL_CALL SwVbaListLevel::getTextPosition()
{
// indentAt
sal_Int32 nIndentAt = 0;
m_pListHelper->getPropertyValueWithNameAndLevel( mnLevel, u"IndentAt"_ustr ) >>= nIndentAt;
return static_cast< float >( Millimeter::getInPoints( nIndentAt ) );
}
void SAL_CALL SwVbaListLevel::setTextPosition( float _textposition )
{
sal_Int32 nIndentAt = 0;
sal_Int32 nFirstLineIndent = 0;
m_pListHelper->getPropertyValueWithNameAndLevel( mnLevel, u"IndentAt"_ustr ) >>= nIndentAt;
m_pListHelper->getPropertyValueWithNameAndLevel( mnLevel, u"FirstLineIndent"_ustr ) >>= nFirstLineIndent;
sal_Int32 nAlignedAt = nIndentAt + nFirstLineIndent;
nIndentAt = Millimeter::getInHundredthsOfOneMillimeter( _textposition );
nFirstLineIndent = nAlignedAt - nIndentAt;
m_pListHelper->setPropertyValueWithNameAndLevel( mnLevel, u"IndentAt"_ustr, uno::Any( nIndentAt ) );
m_pListHelper->setPropertyValueWithNameAndLevel( mnLevel, u"FirstLineIndent"_ustr, uno::Any( nFirstLineIndent ) );
}
::sal_Int32 SAL_CALL SwVbaListLevel::getTrailingCharacter()
{
sal_Int16 nLabelFollowedBy= 0;
m_pListHelper->getPropertyValueWithNameAndLevel( mnLevel, u"LabelFollowedBy"_ustr ) >>= nLabelFollowedBy;
return nLabelFollowedBy;
}
void SAL_CALL SwVbaListLevel::setTrailingCharacter( ::sal_Int32 _trailingcharacter )
{
sal_Int16 nLabelFollowedBy = static_cast<sal_Int16>(_trailingcharacter);
m_pListHelper->setPropertyValueWithNameAndLevel( mnLevel, u"LabelFollowedBy"_ustr, uno::Any( nLabelFollowedBy ) );
}
OUString
SwVbaListLevel::getServiceImplName()
{
return u"SwVbaListLevel"_ustr;
}
uno::Sequence< OUString >
SwVbaListLevel::getServiceNames()
{
static uno::Sequence< OUString > const aServiceNames
{
u"ooo.vba.word.ListLevel"_ustr
};
return aServiceNames;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
↑ V785 Constant expression in switch statement.
↑ V785 Constant expression in switch statement.
↑ V1037 Two or more case-branches perform the same actions. Check lines: 252, 282
↑ V1048 The 'nAlignment' variable was assigned the same value.