MSVC warning C4510: 'TokenType' : default constructor could not be generated and warning C4610: struct 'TokenType' can never be instantiated - user defined constructor required. The default constructor could not be generated because of the const member eTokenType, so unconstipate that. The g_TokenTypes array is const itself anyway.
3232 lines
104 KiB
C++
3232 lines
104 KiB
C++
/* -*- 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
|
|
* <http://www.openoffice.org/license.html>
|
|
* for a copy of the LGPLv3 License.
|
|
*
|
|
************************************************************************/
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
#include "precompiled_sw.hxx"
|
|
|
|
#include <com/sun/star/beans/PropertyAttribute.hpp>
|
|
#include <com/sun/star/container/XIndexReplace.hpp>
|
|
#include <com/sun/star/frame/XModel.hpp>
|
|
#include <com/sun/star/text/ChapterFormat.hpp>
|
|
#include <com/sun/star/text/ReferenceFieldPart.hpp>
|
|
#include <com/sun/star/text/BibliographyDataField.hpp>
|
|
#include <com/sun/star/text/XTextDocument.hpp>
|
|
|
|
#include <osl/mutex.hxx>
|
|
#include <vcl/svapp.hxx>
|
|
#include <editeng/unolingu.hxx>
|
|
#include <hints.hxx>
|
|
#include <cmdid.h>
|
|
#include <swtypes.hxx>
|
|
#include <shellres.hxx>
|
|
#include <viewsh.hxx>
|
|
#include <doc.hxx>
|
|
#include <docary.hxx>
|
|
#include <poolfmt.hxx>
|
|
#include <poolfmt.hrc>
|
|
#include <pagedesc.hxx>
|
|
#include <fmtcntnt.hxx>
|
|
#include <unomap.hxx>
|
|
#include <unotextrange.hxx>
|
|
#include <unotextcursor.hxx>
|
|
#include <unosection.hxx>
|
|
#include <doctxm.hxx>
|
|
#include <txttxmrk.hxx>
|
|
#include <unocrsr.hxx>
|
|
#include <unostyle.hxx>
|
|
#include <ndtxt.hxx>
|
|
#include <unoidx.hxx>
|
|
#include <docsh.hxx>
|
|
#include <chpfld.hxx>
|
|
#include <SwStyleNameMapper.hxx>
|
|
#include <unoevtlstnr.hxx>
|
|
#include <comphelper/servicehelper.hxx>
|
|
|
|
|
|
using namespace ::com::sun::star;
|
|
using ::rtl::OUString;
|
|
|
|
static OUString
|
|
lcl_AnyToString(uno::Any const& rVal) throw (lang::IllegalArgumentException)
|
|
{
|
|
OUString sRet;
|
|
if(!(rVal >>= sRet))
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
return sRet;
|
|
}
|
|
|
|
static sal_Int16
|
|
lcl_AnyToInt16(uno::Any const& rVal) throw (lang::IllegalArgumentException)
|
|
{
|
|
sal_Int16 nRet = 0;
|
|
if(!(rVal >>= nRet))
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
return nRet;
|
|
}
|
|
|
|
static sal_Bool
|
|
lcl_AnyToBool(uno::Any const& rVal) throw (lang::IllegalArgumentException)
|
|
{
|
|
sal_Bool bRet = sal_False;
|
|
if(!(rVal >>= bRet))
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
return bRet;
|
|
}
|
|
|
|
static void
|
|
lcl_AnyToBitMask(uno::Any const& rValue,
|
|
sal_uInt16 & rBitMask, const sal_uInt16 nBit)
|
|
throw (lang::IllegalArgumentException)
|
|
{
|
|
rBitMask = lcl_AnyToBool(rValue)
|
|
? (rBitMask | nBit)
|
|
: (rBitMask & ~nBit);
|
|
}
|
|
|
|
static void
|
|
lcl_BitMaskToAny(uno::Any & o_rValue,
|
|
const sal_uInt16 nBitMask, const sal_uInt16 nBit)
|
|
{
|
|
const sal_Bool bRet = 0 != (nBitMask & nBit);
|
|
o_rValue <<= bRet;
|
|
}
|
|
|
|
static void
|
|
lcl_ReAssignTOXType(SwDoc* pDoc, SwTOXBase& rTOXBase, const OUString& rNewName)
|
|
{
|
|
const sal_uInt16 nUserCount = pDoc->GetTOXTypeCount( TOX_USER );
|
|
const SwTOXType* pNewType = 0;
|
|
for(sal_uInt16 nUser = 0; nUser < nUserCount; nUser++)
|
|
{
|
|
const SwTOXType* pType = pDoc->GetTOXType( TOX_USER, nUser );
|
|
if(pType->GetTypeName().Equals((String)rNewName))
|
|
{
|
|
pNewType = pType;
|
|
break;
|
|
}
|
|
}
|
|
if(!pNewType)
|
|
{
|
|
SwTOXType aNewType(TOX_USER, rNewName);
|
|
pNewType = pDoc->InsertTOXType( aNewType );
|
|
}
|
|
|
|
rTOXBase.RegisterToTOXType( *((SwTOXType*)pNewType) );
|
|
}
|
|
|
|
static const char cUserDefined[] = "User-Defined";
|
|
static const char cUserSuffix[] = " (user)";
|
|
#define USER_LEN 12
|
|
#define USER_AND_SUFFIXLEN 19
|
|
|
|
void lcl_ConvertTOUNameToProgrammaticName(OUString& rTmp)
|
|
{
|
|
ShellResource* pShellRes = ViewShell::GetShellRes();
|
|
|
|
if(rTmp.equals(pShellRes->aTOXUserName))
|
|
{
|
|
rTmp = OUString(C2U(cUserDefined));
|
|
}
|
|
// if the version is not English but the alternative index's name is
|
|
// "User-Defined" a " (user)" is appended
|
|
else if(rTmp.equalsAscii(cUserDefined))
|
|
{
|
|
rTmp += C2U(cUserSuffix);
|
|
}
|
|
}
|
|
|
|
static void
|
|
lcl_ConvertTOUNameToUserName(OUString& rTmp)
|
|
{
|
|
ShellResource* pShellRes = ViewShell::GetShellRes();
|
|
if(rTmp.equalsAscii(cUserDefined))
|
|
{
|
|
rTmp = pShellRes->aTOXUserName;
|
|
}
|
|
else if(!pShellRes->aTOXUserName.EqualsAscii(cUserDefined) &&
|
|
USER_AND_SUFFIXLEN == rTmp.getLength())
|
|
{
|
|
//make sure that in non-English versions the " (user)" suffix is removed
|
|
if (rTmp.matchAsciiL(cUserDefined, sizeof(cUserDefined)) &&
|
|
rTmp.matchAsciiL(cUserSuffix, sizeof(cUserSuffix), USER_LEN))
|
|
{
|
|
rTmp = C2U(cUserDefined);
|
|
}
|
|
}
|
|
}
|
|
|
|
typedef ::cppu::WeakImplHelper2
|
|
< lang::XServiceInfo
|
|
, container::XIndexReplace
|
|
> SwXDocumentIndexStyleAccess_Base;
|
|
|
|
class SwXDocumentIndex::StyleAccess_Impl
|
|
: public SwXDocumentIndexStyleAccess_Base
|
|
{
|
|
|
|
private:
|
|
/// can be destroyed threadsafely, so no UnoImplPtr here
|
|
::rtl::Reference<SwXDocumentIndex> m_xParent;
|
|
|
|
virtual ~StyleAccess_Impl();
|
|
|
|
public:
|
|
StyleAccess_Impl(SwXDocumentIndex& rParentIdx);
|
|
|
|
// XServiceInfo
|
|
virtual ::rtl::OUString SAL_CALL getImplementationName()
|
|
throw (uno::RuntimeException);
|
|
virtual sal_Bool SAL_CALL
|
|
supportsService(const ::rtl::OUString& rServiceName)
|
|
throw (uno::RuntimeException);
|
|
virtual uno::Sequence< ::rtl::OUString > SAL_CALL
|
|
getSupportedServiceNames() throw (uno::RuntimeException);
|
|
|
|
// XElementAccess
|
|
virtual uno::Type SAL_CALL getElementType() throw (uno::RuntimeException);
|
|
virtual sal_Bool SAL_CALL hasElements() throw (uno::RuntimeException);
|
|
|
|
// XIndexAccess
|
|
virtual sal_Int32 SAL_CALL getCount() throw (uno::RuntimeException);
|
|
virtual uno::Any SAL_CALL getByIndex(sal_Int32 nIndex)
|
|
throw (lang::IndexOutOfBoundsException, lang::WrappedTargetException,
|
|
uno::RuntimeException);
|
|
|
|
// XIndexReplace
|
|
virtual void SAL_CALL
|
|
replaceByIndex(sal_Int32 Index, const uno::Any& rElement)
|
|
throw (lang::IllegalArgumentException, lang::IndexOutOfBoundsException,
|
|
lang::WrappedTargetException, uno::RuntimeException);
|
|
|
|
};
|
|
|
|
typedef ::cppu::WeakImplHelper2
|
|
< lang::XServiceInfo
|
|
, container::XIndexReplace
|
|
> SwXDocumentIndexTokenAccess_Base;
|
|
|
|
class SwXDocumentIndex::TokenAccess_Impl
|
|
: public SwXDocumentIndexTokenAccess_Base
|
|
{
|
|
|
|
private:
|
|
/// can be destroyed threadsafely, so no UnoImplPtr here
|
|
::rtl::Reference<SwXDocumentIndex> m_xParent;
|
|
|
|
virtual ~TokenAccess_Impl();
|
|
|
|
public:
|
|
|
|
TokenAccess_Impl(SwXDocumentIndex& rParentIdx);
|
|
|
|
// XServiceInfo
|
|
virtual ::rtl::OUString SAL_CALL getImplementationName()
|
|
throw (uno::RuntimeException);
|
|
virtual sal_Bool SAL_CALL
|
|
supportsService(const ::rtl::OUString& rServiceName)
|
|
throw (uno::RuntimeException);
|
|
virtual uno::Sequence< ::rtl::OUString > SAL_CALL
|
|
getSupportedServiceNames() throw (uno::RuntimeException);
|
|
|
|
// XElementAccess
|
|
virtual uno::Type SAL_CALL getElementType() throw (uno::RuntimeException);
|
|
virtual sal_Bool SAL_CALL hasElements() throw (uno::RuntimeException);
|
|
|
|
// XIndexAccess
|
|
virtual sal_Int32 SAL_CALL getCount() throw (uno::RuntimeException);
|
|
virtual uno::Any SAL_CALL getByIndex(sal_Int32 nIndex)
|
|
throw (lang::IndexOutOfBoundsException, lang::WrappedTargetException,
|
|
uno::RuntimeException);
|
|
|
|
// XIndexReplace
|
|
virtual void SAL_CALL
|
|
replaceByIndex(sal_Int32 Index, const uno::Any& rElement)
|
|
throw (lang::IllegalArgumentException, lang::IndexOutOfBoundsException,
|
|
lang::WrappedTargetException, uno::RuntimeException);
|
|
|
|
};
|
|
|
|
/******************************************************************
|
|
* SwXDocumentIndex
|
|
******************************************************************/
|
|
class SwDocIndexDescriptorProperties_Impl
|
|
{
|
|
private:
|
|
::std::auto_ptr<SwTOXBase> m_pTOXBase;
|
|
OUString m_sUserTOXTypeName;
|
|
|
|
public:
|
|
SwDocIndexDescriptorProperties_Impl(SwTOXType const*const pType);
|
|
|
|
SwTOXBase & GetTOXBase() { return *m_pTOXBase; }
|
|
const OUString& GetTypeName() const { return m_sUserTOXTypeName; }
|
|
void SetTypeName(const OUString& rSet) { m_sUserTOXTypeName = rSet; }
|
|
};
|
|
|
|
SwDocIndexDescriptorProperties_Impl::SwDocIndexDescriptorProperties_Impl(
|
|
SwTOXType const*const pType)
|
|
{
|
|
SwForm aForm(pType->GetType());
|
|
m_pTOXBase.reset(new SwTOXBase(pType, aForm,
|
|
nsSwTOXElement::TOX_MARK, pType->GetTypeName()));
|
|
if(pType->GetType() == TOX_CONTENT || pType->GetType() == TOX_USER)
|
|
{
|
|
m_pTOXBase->SetLevel(MAXLEVEL);
|
|
}
|
|
m_sUserTOXTypeName = pType->GetTypeName();
|
|
}
|
|
|
|
static sal_uInt16
|
|
lcl_TypeToPropertyMap_Index(const TOXTypes eType)
|
|
{
|
|
switch (eType)
|
|
{
|
|
case TOX_INDEX: return PROPERTY_MAP_INDEX_IDX;
|
|
case TOX_CONTENT: return PROPERTY_MAP_INDEX_CNTNT;
|
|
case TOX_TABLES: return PROPERTY_MAP_INDEX_TABLES;
|
|
case TOX_ILLUSTRATIONS: return PROPERTY_MAP_INDEX_ILLUSTRATIONS;
|
|
case TOX_OBJECTS: return PROPERTY_MAP_INDEX_OBJECTS;
|
|
case TOX_AUTHORITIES: return PROPERTY_MAP_BIBLIOGRAPHY;
|
|
//case TOX_USER:
|
|
default:
|
|
return PROPERTY_MAP_INDEX_USER;
|
|
}
|
|
}
|
|
|
|
class SwXDocumentIndex::Impl
|
|
: public SwClient
|
|
{
|
|
|
|
public:
|
|
|
|
SfxItemPropertySet const& m_rPropSet;
|
|
const TOXTypes m_eTOXType;
|
|
SwEventListenerContainer m_ListenerContainer;
|
|
bool m_bIsDescriptor;
|
|
SwDoc * m_pDoc;
|
|
::std::auto_ptr<SwDocIndexDescriptorProperties_Impl> m_pProps;
|
|
uno::WeakReference<container::XIndexReplace> m_wStyleAccess;
|
|
uno::WeakReference<container::XIndexReplace> m_wTokenAccess;
|
|
|
|
Impl( SwXDocumentIndex & rThis,
|
|
SwDoc & rDoc,
|
|
const TOXTypes eType,
|
|
SwTOXBaseSection const*const pBaseSection)
|
|
: SwClient((pBaseSection) ? pBaseSection->GetFmt() : 0)
|
|
, m_rPropSet(
|
|
*aSwMapProvider.GetPropertySet(lcl_TypeToPropertyMap_Index(eType)))
|
|
, m_eTOXType(eType)
|
|
, m_ListenerContainer(static_cast< ::cppu::OWeakObject* >(&rThis))
|
|
// #i111177# unxsols4 (Sun C++ 5.9 SunOS_sparc) may generate wrong code
|
|
, m_bIsDescriptor((0 == pBaseSection) ? true : false)
|
|
, m_pDoc(&rDoc)
|
|
, m_pProps((m_bIsDescriptor)
|
|
? new SwDocIndexDescriptorProperties_Impl(rDoc.GetTOXType(eType, 0))
|
|
: 0)
|
|
{
|
|
}
|
|
|
|
SwSectionFmt * GetSectionFmt() const {
|
|
return static_cast<SwSectionFmt *>(
|
|
const_cast<SwModify *>(GetRegisteredIn()));
|
|
}
|
|
|
|
SwTOXBase & GetTOXSectionOrThrow() const
|
|
{
|
|
SwSectionFmt *const pSectionFmt(GetSectionFmt());
|
|
SwTOXBase *const pTOXSection( (m_bIsDescriptor)
|
|
? &m_pProps->GetTOXBase()
|
|
: ((pSectionFmt)
|
|
? static_cast<SwTOXBaseSection*>(pSectionFmt->GetSection())
|
|
: 0));
|
|
if (!pTOXSection)
|
|
{
|
|
throw uno::RuntimeException(OUString(RTL_CONSTASCII_USTRINGPARAM(
|
|
"SwXDocumentIndex: disposed or invalid")), 0);
|
|
}
|
|
return *pTOXSection;
|
|
}
|
|
|
|
sal_Int32 GetFormMax() const
|
|
{
|
|
SwTOXBase & rSection( GetTOXSectionOrThrow() );
|
|
return (m_bIsDescriptor)
|
|
? SwForm::GetFormMaxLevel(m_eTOXType)
|
|
: rSection.GetTOXForm().GetFormMax();
|
|
}
|
|
protected:
|
|
// SwClient
|
|
virtual void Modify(const SfxPoolItem *pOld, const SfxPoolItem *pNew);
|
|
|
|
};
|
|
|
|
void SwXDocumentIndex::Impl::Modify(const SfxPoolItem *pOld, const SfxPoolItem *pNew)
|
|
{
|
|
ClientModify(this, pOld, pNew);
|
|
|
|
if (!GetRegisteredIn())
|
|
{
|
|
m_ListenerContainer.Disposing();
|
|
}
|
|
}
|
|
|
|
SwXDocumentIndex::SwXDocumentIndex(
|
|
SwTOXBaseSection const& rBaseSection, SwDoc & rDoc)
|
|
: m_pImpl( new SwXDocumentIndex::Impl( *this,
|
|
rDoc, rBaseSection.SwTOXBase::GetType(), & rBaseSection) )
|
|
{
|
|
}
|
|
|
|
SwXDocumentIndex::SwXDocumentIndex(const TOXTypes eType, SwDoc& rDoc)
|
|
: m_pImpl( new SwXDocumentIndex::Impl( *this, rDoc, eType, 0) )
|
|
{
|
|
}
|
|
|
|
SwXDocumentIndex::~SwXDocumentIndex()
|
|
{
|
|
}
|
|
|
|
uno::Reference<text::XDocumentIndex>
|
|
SwXDocumentIndex::CreateXDocumentIndex(
|
|
SwDoc & rDoc, SwTOXBaseSection const& rSection)
|
|
{
|
|
// re-use existing SwXDocumentIndex
|
|
// #i105557#: do not iterate over the registered clients: race condition
|
|
SwSectionFmt *const pFmt = rSection.GetFmt();
|
|
uno::Reference<text::XDocumentIndex> xIndex(pFmt->GetXObject(),
|
|
uno::UNO_QUERY);
|
|
if (!xIndex.is())
|
|
{
|
|
SwXDocumentIndex *const pIndex(new SwXDocumentIndex(rSection, rDoc));
|
|
xIndex.set(pIndex);
|
|
pFmt->SetXObject(uno::Reference<uno::XInterface>(xIndex));
|
|
}
|
|
return xIndex;
|
|
}
|
|
|
|
namespace
|
|
{
|
|
class theSwXDocumentIndexUnoTunnelId : public rtl::Static< UnoTunnelIdInit, theSwXDocumentIndexUnoTunnelId > {};
|
|
}
|
|
|
|
const uno::Sequence< sal_Int8 > & SwXDocumentIndex::getUnoTunnelId()
|
|
{
|
|
return theSwXDocumentIndexUnoTunnelId::get().getSeq();
|
|
}
|
|
|
|
sal_Int64 SAL_CALL
|
|
SwXDocumentIndex::getSomething(const uno::Sequence< sal_Int8 >& rId)
|
|
throw (uno::RuntimeException)
|
|
{
|
|
return ::sw::UnoTunnelImpl<SwXDocumentIndex>(rId, this);
|
|
}
|
|
|
|
OUString SAL_CALL
|
|
SwXDocumentIndex::getImplementationName() throw (uno::RuntimeException)
|
|
{
|
|
return C2U("SwXDocumentIndex");
|
|
}
|
|
|
|
sal_Bool SAL_CALL
|
|
SwXDocumentIndex::supportsService(const OUString& rServiceName)
|
|
throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard g;
|
|
|
|
return C2U("com.sun.star.text.BaseIndex") == rServiceName
|
|
|| ((TOX_INDEX == m_pImpl->m_eTOXType) &&
|
|
rServiceName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("com.sun.star.text.DocumentIndex")))
|
|
|| ((TOX_CONTENT == m_pImpl->m_eTOXType) &&
|
|
rServiceName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("com.sun.star.text.ContentIndex")))
|
|
|| ((TOX_USER == m_pImpl->m_eTOXType) &&
|
|
rServiceName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("com.sun.star.text.UserDefinedIndex")))
|
|
|| ((TOX_ILLUSTRATIONS == m_pImpl->m_eTOXType) &&
|
|
rServiceName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("com.sun.star.text.IllustrationsIndex")))
|
|
|| ((TOX_TABLES == m_pImpl->m_eTOXType) &&
|
|
rServiceName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("com.sun.star.text.TableIndex")))
|
|
|| ((TOX_OBJECTS == m_pImpl->m_eTOXType) &&
|
|
rServiceName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("com.sun.star.text.ObjectIndex")))
|
|
|| ((TOX_AUTHORITIES == m_pImpl->m_eTOXType) &&
|
|
rServiceName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("com.sun.star.text.Bibliography")));
|
|
}
|
|
|
|
uno::Sequence< OUString > SAL_CALL
|
|
SwXDocumentIndex::getSupportedServiceNames() throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard g;
|
|
|
|
uno::Sequence< OUString > aRet(2);
|
|
OUString* pArray = aRet.getArray();
|
|
pArray[0] = C2U("com.sun.star.text.BaseIndex");
|
|
switch (m_pImpl->m_eTOXType)
|
|
{
|
|
case TOX_INDEX:
|
|
pArray[1] = C2U("com.sun.star.text.DocumentIndex");
|
|
break;
|
|
case TOX_CONTENT:
|
|
pArray[1] = C2U("com.sun.star.text.ContentIndex");
|
|
break;
|
|
case TOX_TABLES:
|
|
pArray[1] = C2U("com.sun.star.text.TableIndex");
|
|
break;
|
|
case TOX_ILLUSTRATIONS:
|
|
pArray[1] = C2U("com.sun.star.text.IllustrationsIndex");
|
|
break;
|
|
case TOX_OBJECTS:
|
|
pArray[1] = C2U("com.sun.star.text.ObjectIndex");
|
|
break;
|
|
case TOX_AUTHORITIES:
|
|
pArray[1] = C2U("com.sun.star.text.Bibliography");
|
|
break;
|
|
//case TOX_USER:
|
|
default:
|
|
pArray[1] = C2U("com.sun.star.text.UserDefinedIndex");
|
|
}
|
|
return aRet;
|
|
}
|
|
|
|
OUString SAL_CALL SwXDocumentIndex::getServiceName()
|
|
throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard g;
|
|
|
|
sal_uInt16 nObjectType = SW_SERVICE_TYPE_INDEX;
|
|
switch (m_pImpl->m_eTOXType)
|
|
{
|
|
// case TOX_INDEX: break;
|
|
case TOX_USER: nObjectType = SW_SERVICE_USER_INDEX;
|
|
break;
|
|
case TOX_CONTENT: nObjectType = SW_SERVICE_CONTENT_INDEX;
|
|
break;
|
|
case TOX_ILLUSTRATIONS: nObjectType = SW_SERVICE_INDEX_ILLUSTRATIONS;
|
|
break;
|
|
case TOX_OBJECTS: nObjectType = SW_SERVICE_INDEX_OBJECTS;
|
|
break;
|
|
case TOX_TABLES: nObjectType = SW_SERVICE_INDEX_TABLES;
|
|
break;
|
|
case TOX_AUTHORITIES: nObjectType = SW_SERVICE_INDEX_BIBLIOGRAPHY;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return SwXServiceProvider::GetProviderName(nObjectType);
|
|
}
|
|
|
|
void SAL_CALL SwXDocumentIndex::update() throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
SwSectionFmt *const pFmt = m_pImpl->GetSectionFmt();
|
|
SwTOXBaseSection *const pTOXBase = (pFmt) ?
|
|
static_cast<SwTOXBaseSection*>(pFmt->GetSection()) : 0;
|
|
if(!pTOXBase)
|
|
{
|
|
throw uno::RuntimeException();
|
|
}
|
|
pTOXBase->Update();
|
|
// page numbers
|
|
pTOXBase->UpdatePageNum();
|
|
}
|
|
|
|
uno::Reference< beans::XPropertySetInfo > SAL_CALL
|
|
SwXDocumentIndex::getPropertySetInfo() throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard g;
|
|
|
|
const uno::Reference< beans::XPropertySetInfo > xRef =
|
|
m_pImpl->m_rPropSet.getPropertySetInfo();
|
|
return xRef;
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndex::setPropertyValue(
|
|
const OUString& rPropertyName, const uno::Any& rValue)
|
|
throw (beans::UnknownPropertyException, beans::PropertyVetoException,
|
|
lang::IllegalArgumentException, lang::WrappedTargetException,
|
|
uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
SfxItemPropertySimpleEntry const*const pEntry =
|
|
m_pImpl->m_rPropSet.getPropertyMap()->getByName(rPropertyName);
|
|
if (!pEntry)
|
|
{
|
|
throw beans::UnknownPropertyException(
|
|
OUString(RTL_CONSTASCII_USTRINGPARAM("Unknown property: "))
|
|
+ rPropertyName,
|
|
static_cast<cppu::OWeakObject *>(this));
|
|
}
|
|
if (pEntry->nFlags & beans::PropertyAttribute::READONLY)
|
|
{
|
|
throw beans::PropertyVetoException(
|
|
OUString(RTL_CONSTASCII_USTRINGPARAM("Property is read-only: " ))
|
|
+ rPropertyName,
|
|
static_cast<cppu::OWeakObject *>(this));
|
|
}
|
|
|
|
SwSectionFmt *const pSectionFmt(m_pImpl->GetSectionFmt());
|
|
SwTOXBase & rTOXBase( m_pImpl->GetTOXSectionOrThrow() );
|
|
|
|
sal_uInt16 nCreate = rTOXBase.GetCreateType();
|
|
sal_uInt16 nTOIOptions = 0;
|
|
sal_uInt16 nOLEOptions = rTOXBase.GetOLEOptions();
|
|
const TOXTypes eTxBaseType = rTOXBase.GetTOXType()->GetType();
|
|
if (eTxBaseType == TOX_INDEX)
|
|
{
|
|
nTOIOptions = rTOXBase.GetOptions();
|
|
}
|
|
SwForm aForm(rTOXBase.GetTOXForm());
|
|
sal_Bool bForm = sal_False;
|
|
switch (pEntry->nWID)
|
|
{
|
|
case WID_IDX_TITLE:
|
|
{
|
|
OUString sNewName;
|
|
if (!(rValue >>= sNewName))
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
rTOXBase.SetTitle(sNewName);
|
|
}
|
|
break;
|
|
case WID_IDX_NAME:
|
|
{
|
|
OUString sNewName;
|
|
if (!(rValue >>= sNewName))
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
rTOXBase.SetTOXName(sNewName);
|
|
}
|
|
break;
|
|
case WID_USER_IDX_NAME:
|
|
{
|
|
OUString sNewName;
|
|
if (!(rValue >>= sNewName))
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
lcl_ConvertTOUNameToUserName(sNewName);
|
|
OSL_ENSURE(TOX_USER == eTxBaseType,
|
|
"tox type name can only be changed for user indexes");
|
|
if (pSectionFmt)
|
|
{
|
|
OUString sTmp = rTOXBase.GetTOXType()->GetTypeName();
|
|
if (sTmp != sNewName)
|
|
{
|
|
lcl_ReAssignTOXType(pSectionFmt->GetDoc(),
|
|
rTOXBase, sNewName);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
m_pImpl->m_pProps->SetTypeName(sNewName);
|
|
}
|
|
}
|
|
break;
|
|
case WID_IDX_LOCALE:
|
|
{
|
|
lang::Locale aLocale;
|
|
if (!(rValue>>= aLocale))
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
rTOXBase.SetLanguage(SvxLocaleToLanguage(aLocale));
|
|
}
|
|
break;
|
|
case WID_IDX_SORT_ALGORITHM:
|
|
{
|
|
OUString sTmp;
|
|
if (!(rValue >>= sTmp))
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
rTOXBase.SetSortAlgorithm(sTmp);
|
|
}
|
|
break;
|
|
case WID_LEVEL:
|
|
{
|
|
rTOXBase.SetLevel(lcl_AnyToInt16(rValue));
|
|
}
|
|
break;
|
|
case WID_CREATE_FROM_MARKS:
|
|
lcl_AnyToBitMask(rValue, nCreate, nsSwTOXElement::TOX_MARK);
|
|
break;
|
|
case WID_CREATE_FROM_OUTLINE:
|
|
lcl_AnyToBitMask(rValue, nCreate, nsSwTOXElement::TOX_OUTLINELEVEL);
|
|
break;
|
|
// case WID_PARAGRAPH_STYLE_NAMES :OSL_FAIL("not implemented")
|
|
// break;
|
|
case WID_CREATE_FROM_CHAPTER:
|
|
rTOXBase.SetFromChapter(lcl_AnyToBool(rValue));
|
|
break;
|
|
case WID_CREATE_FROM_LABELS:
|
|
rTOXBase.SetFromObjectNames(! lcl_AnyToBool(rValue));
|
|
break;
|
|
case WID_PROTECTED:
|
|
{
|
|
sal_Bool bSet = lcl_AnyToBool(rValue);
|
|
rTOXBase.SetProtected(bSet);
|
|
if (pSectionFmt)
|
|
{
|
|
static_cast<SwTOXBaseSection &>(rTOXBase).SetProtect(bSet);
|
|
}
|
|
}
|
|
break;
|
|
case WID_USE_ALPHABETICAL_SEPARATORS:
|
|
lcl_AnyToBitMask(rValue, nTOIOptions,
|
|
nsSwTOIOptions::TOI_ALPHA_DELIMITTER);
|
|
break;
|
|
case WID_USE_KEY_AS_ENTRY:
|
|
lcl_AnyToBitMask(rValue, nTOIOptions,
|
|
nsSwTOIOptions::TOI_KEY_AS_ENTRY);
|
|
break;
|
|
case WID_USE_COMBINED_ENTRIES:
|
|
lcl_AnyToBitMask(rValue, nTOIOptions,
|
|
nsSwTOIOptions::TOI_SAME_ENTRY);
|
|
break;
|
|
case WID_IS_CASE_SENSITIVE:
|
|
lcl_AnyToBitMask(rValue, nTOIOptions,
|
|
nsSwTOIOptions::TOI_CASE_SENSITIVE);
|
|
break;
|
|
case WID_USE_P_P:
|
|
lcl_AnyToBitMask(rValue, nTOIOptions, nsSwTOIOptions::TOI_FF);
|
|
break;
|
|
case WID_USE_DASH:
|
|
lcl_AnyToBitMask(rValue, nTOIOptions, nsSwTOIOptions::TOI_DASH);
|
|
break;
|
|
case WID_USE_UPPER_CASE:
|
|
lcl_AnyToBitMask(rValue, nTOIOptions,
|
|
nsSwTOIOptions::TOI_INITIAL_CAPS);
|
|
break;
|
|
case WID_IS_COMMA_SEPARATED:
|
|
bForm = sal_True;
|
|
aForm.SetCommaSeparated(lcl_AnyToBool(rValue));
|
|
break;
|
|
case WID_LABEL_CATEGORY:
|
|
{
|
|
// convert file-format/API/external programmatic english name
|
|
// to internal UI name before usage
|
|
String aName( SwStyleNameMapper::GetSpecialExtraUIName(
|
|
lcl_AnyToString(rValue) ) );
|
|
rTOXBase.SetSequenceName( aName );
|
|
}
|
|
break;
|
|
case WID_LABEL_DISPLAY_TYPE:
|
|
{
|
|
const sal_Int16 nVal = lcl_AnyToInt16(rValue);
|
|
sal_uInt16 nSet = CAPTION_COMPLETE;
|
|
switch (nVal)
|
|
{
|
|
case text::ReferenceFieldPart::TEXT:
|
|
nSet = CAPTION_COMPLETE;
|
|
break;
|
|
case text::ReferenceFieldPart::CATEGORY_AND_NUMBER:
|
|
nSet = CAPTION_NUMBER;
|
|
break;
|
|
case text::ReferenceFieldPart::ONLY_CAPTION:
|
|
nSet = CAPTION_TEXT;
|
|
break;
|
|
default:
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
rTOXBase.SetCaptionDisplay(static_cast<SwCaptionDisplay>(nSet));
|
|
}
|
|
break;
|
|
case WID_USE_LEVEL_FROM_SOURCE:
|
|
rTOXBase.SetLevelFromChapter(lcl_AnyToBool(rValue));
|
|
break;
|
|
case WID_MAIN_ENTRY_CHARACTER_STYLE_NAME:
|
|
{
|
|
String aString;
|
|
SwStyleNameMapper::FillUIName(lcl_AnyToString(rValue),
|
|
aString, nsSwGetPoolIdFromName::GET_POOLID_CHRFMT, sal_True);
|
|
rTOXBase.SetMainEntryCharStyle( aString );
|
|
}
|
|
break;
|
|
case WID_CREATE_FROM_TABLES:
|
|
lcl_AnyToBitMask(rValue, nCreate, nsSwTOXElement::TOX_TABLE);
|
|
break;
|
|
case WID_CREATE_FROM_TEXT_FRAMES:
|
|
lcl_AnyToBitMask(rValue, nCreate, nsSwTOXElement::TOX_FRAME);
|
|
break;
|
|
case WID_CREATE_FROM_GRAPHIC_OBJECTS:
|
|
lcl_AnyToBitMask(rValue, nCreate, nsSwTOXElement::TOX_GRAPHIC);
|
|
break;
|
|
case WID_CREATE_FROM_EMBEDDED_OBJECTS:
|
|
lcl_AnyToBitMask(rValue, nCreate, nsSwTOXElement::TOX_OLE);
|
|
break;
|
|
case WID_CREATE_FROM_STAR_MATH:
|
|
lcl_AnyToBitMask(rValue, nOLEOptions, nsSwTOOElements::TOO_MATH);
|
|
break;
|
|
case WID_CREATE_FROM_STAR_CHART:
|
|
lcl_AnyToBitMask(rValue, nOLEOptions, nsSwTOOElements::TOO_CHART);
|
|
break;
|
|
case WID_CREATE_FROM_STAR_CALC:
|
|
lcl_AnyToBitMask(rValue, nOLEOptions, nsSwTOOElements::TOO_CALC);
|
|
break;
|
|
case WID_CREATE_FROM_STAR_DRAW:
|
|
lcl_AnyToBitMask(rValue, nOLEOptions,
|
|
nsSwTOOElements::TOO_DRAW_IMPRESS);
|
|
break;
|
|
case WID_CREATE_FROM_OTHER_EMBEDDED_OBJECTS:
|
|
lcl_AnyToBitMask(rValue, nOLEOptions, nsSwTOOElements::TOO_OTHER);
|
|
break;
|
|
case WID_PARA_HEAD:
|
|
{
|
|
String aString;
|
|
SwStyleNameMapper::FillUIName( lcl_AnyToString(rValue),
|
|
aString, nsSwGetPoolIdFromName::GET_POOLID_TXTCOLL, sal_True);
|
|
bForm = sal_True;
|
|
// Header is on Pos 0
|
|
aForm.SetTemplate( 0, aString );
|
|
}
|
|
break;
|
|
case WID_IS_RELATIVE_TABSTOPS:
|
|
bForm = sal_True;
|
|
aForm.SetRelTabPos(lcl_AnyToBool(rValue));
|
|
break;
|
|
case WID_PARA_SEP:
|
|
{
|
|
String aString;
|
|
bForm = sal_True;
|
|
SwStyleNameMapper::FillUIName( lcl_AnyToString(rValue),
|
|
aString, nsSwGetPoolIdFromName::GET_POOLID_TXTCOLL, sal_True);
|
|
aForm.SetTemplate( 1, aString );
|
|
}
|
|
break;
|
|
case WID_CREATE_FROM_PARAGRAPH_STYLES:
|
|
lcl_AnyToBitMask(rValue, nCreate, nsSwTOXElement::TOX_TEMPLATE);
|
|
break;
|
|
|
|
case WID_PARA_LEV1:
|
|
case WID_PARA_LEV2:
|
|
case WID_PARA_LEV3:
|
|
case WID_PARA_LEV4:
|
|
case WID_PARA_LEV5:
|
|
case WID_PARA_LEV6:
|
|
case WID_PARA_LEV7:
|
|
case WID_PARA_LEV8:
|
|
case WID_PARA_LEV9:
|
|
case WID_PARA_LEV10:
|
|
{
|
|
bForm = sal_True;
|
|
// in sdbcx::Index Label 1 begins at Pos 2 otherwise at Pos 1
|
|
const sal_uInt16 nLPos = rTOXBase.GetType() == TOX_INDEX ? 2 : 1;
|
|
String aString;
|
|
SwStyleNameMapper::FillUIName( lcl_AnyToString(rValue),
|
|
aString, nsSwGetPoolIdFromName::GET_POOLID_TXTCOLL, sal_True);
|
|
aForm.SetTemplate(nLPos + pEntry->nWID - WID_PARA_LEV1, aString );
|
|
}
|
|
break;
|
|
default:
|
|
//this is for items only
|
|
if (WID_PRIMARY_KEY > pEntry->nWID)
|
|
{
|
|
const SwAttrSet& rSet =
|
|
m_pImpl->m_pDoc->GetTOXBaseAttrSet(rTOXBase);
|
|
SfxItemSet aAttrSet(rSet);
|
|
m_pImpl->m_rPropSet.setPropertyValue(
|
|
rPropertyName, rValue, aAttrSet);
|
|
|
|
const SwSectionFmts& rSects = m_pImpl->m_pDoc->GetSections();
|
|
for (sal_uInt16 i = 0; i < rSects.Count(); i++)
|
|
{
|
|
const SwSectionFmt* pTmpFmt = rSects[ i ];
|
|
if (pTmpFmt == pSectionFmt)
|
|
{
|
|
SwSectionData tmpData(
|
|
static_cast<SwTOXBaseSection&>(rTOXBase));
|
|
m_pImpl->m_pDoc->UpdateSection(i, tmpData, & aAttrSet);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
rTOXBase.SetCreate(nCreate);
|
|
rTOXBase.SetOLEOptions(nOLEOptions);
|
|
if (rTOXBase.GetTOXType()->GetType() == TOX_INDEX)
|
|
{
|
|
rTOXBase.SetOptions(nTOIOptions);
|
|
}
|
|
if (bForm)
|
|
{
|
|
rTOXBase.SetTOXForm(aForm);
|
|
}
|
|
}
|
|
|
|
uno::Any SAL_CALL
|
|
SwXDocumentIndex::getPropertyValue(const OUString& rPropertyName)
|
|
throw (beans::UnknownPropertyException, lang::WrappedTargetException,
|
|
uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
uno::Any aRet;
|
|
SfxItemPropertySimpleEntry const*const pEntry =
|
|
m_pImpl->m_rPropSet.getPropertyMap()->getByName(rPropertyName);
|
|
if (!pEntry)
|
|
{
|
|
throw beans::UnknownPropertyException(
|
|
OUString(RTL_CONSTASCII_USTRINGPARAM("Unknown property: "))
|
|
+ rPropertyName,
|
|
static_cast< cppu::OWeakObject * >(this));
|
|
}
|
|
|
|
SwSectionFmt *const pSectionFmt( m_pImpl->GetSectionFmt() );
|
|
SwTOXBase* pTOXBase = 0;
|
|
if (pSectionFmt)
|
|
{
|
|
pTOXBase = static_cast<SwTOXBaseSection*>(pSectionFmt->GetSection());
|
|
}
|
|
else if (m_pImpl->m_bIsDescriptor)
|
|
{
|
|
pTOXBase = &m_pImpl->m_pProps->GetTOXBase();
|
|
}
|
|
if(pTOXBase)
|
|
{
|
|
const sal_uInt16 nCreate = pTOXBase->GetCreateType();
|
|
const sal_uInt16 nOLEOptions = pTOXBase->GetOLEOptions();
|
|
const sal_uInt16 nTOIOptions =
|
|
(pTOXBase->GetTOXType()->GetType() == TOX_INDEX)
|
|
? pTOXBase->GetOptions()
|
|
: 0U;
|
|
const SwForm& rForm = pTOXBase->GetTOXForm();
|
|
switch(pEntry->nWID)
|
|
{
|
|
case WID_IDX_CONTENT_SECTION:
|
|
case WID_IDX_HEADER_SECTION :
|
|
if(WID_IDX_CONTENT_SECTION == pEntry->nWID)
|
|
{
|
|
const uno::Reference <text::XTextSection> xContentSect =
|
|
SwXTextSection::CreateXTextSection( pSectionFmt );
|
|
aRet <<= xContentSect;
|
|
}
|
|
else
|
|
{
|
|
SwSections aSectArr;
|
|
pSectionFmt->GetChildSections(aSectArr,
|
|
SORTSECT_NOT, sal_False);
|
|
for(sal_uInt16 i = 0; i < aSectArr.Count(); i++)
|
|
{
|
|
SwSection* pSect = aSectArr[i];
|
|
if(pSect->GetType() == TOX_HEADER_SECTION)
|
|
{
|
|
const uno::Reference <text::XTextSection> xHeader =
|
|
SwXTextSection::CreateXTextSection(
|
|
pSect->GetFmt() );
|
|
aRet <<= xHeader;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
case WID_IDX_TITLE :
|
|
{
|
|
OUString uRet(pTOXBase->GetTitle());
|
|
aRet <<= uRet;
|
|
break;
|
|
}
|
|
case WID_IDX_NAME:
|
|
aRet <<= OUString(pTOXBase->GetTOXName());
|
|
break;
|
|
case WID_USER_IDX_NAME:
|
|
{
|
|
OUString sTmp;
|
|
if (!m_pImpl->m_bIsDescriptor)
|
|
{
|
|
sTmp = pTOXBase->GetTOXType()->GetTypeName();
|
|
}
|
|
else
|
|
{
|
|
sTmp = m_pImpl->m_pProps->GetTypeName();
|
|
}
|
|
//I18N
|
|
lcl_ConvertTOUNameToProgrammaticName(sTmp);
|
|
aRet <<= sTmp;
|
|
}
|
|
break;
|
|
case WID_IDX_LOCALE:
|
|
aRet <<= SvxCreateLocale(pTOXBase->GetLanguage());
|
|
break;
|
|
case WID_IDX_SORT_ALGORITHM:
|
|
aRet <<= OUString(pTOXBase->GetSortAlgorithm());
|
|
break;
|
|
case WID_LEVEL :
|
|
aRet <<= static_cast<sal_Int16>(pTOXBase->GetLevel());
|
|
break;
|
|
case WID_CREATE_FROM_MARKS:
|
|
lcl_BitMaskToAny(aRet, nCreate, nsSwTOXElement::TOX_MARK);
|
|
break;
|
|
case WID_CREATE_FROM_OUTLINE:
|
|
lcl_BitMaskToAny(aRet, nCreate,
|
|
nsSwTOXElement::TOX_OUTLINELEVEL);
|
|
break;
|
|
case WID_CREATE_FROM_CHAPTER:
|
|
{
|
|
const sal_Bool bRet = pTOXBase->IsFromChapter();
|
|
aRet <<= bRet;
|
|
}
|
|
break;
|
|
case WID_CREATE_FROM_LABELS:
|
|
{
|
|
const sal_Bool bRet = ! pTOXBase->IsFromObjectNames();
|
|
aRet <<= bRet;
|
|
}
|
|
break;
|
|
case WID_PROTECTED:
|
|
{
|
|
const sal_Bool bRet = pTOXBase->IsProtected();
|
|
aRet <<= bRet;
|
|
}
|
|
break;
|
|
case WID_USE_ALPHABETICAL_SEPARATORS:
|
|
lcl_BitMaskToAny(aRet, nTOIOptions,
|
|
nsSwTOIOptions::TOI_ALPHA_DELIMITTER);
|
|
break;
|
|
case WID_USE_KEY_AS_ENTRY:
|
|
lcl_BitMaskToAny(aRet, nTOIOptions,
|
|
nsSwTOIOptions::TOI_KEY_AS_ENTRY);
|
|
break;
|
|
case WID_USE_COMBINED_ENTRIES:
|
|
lcl_BitMaskToAny(aRet, nTOIOptions,
|
|
nsSwTOIOptions::TOI_SAME_ENTRY);
|
|
break;
|
|
case WID_IS_CASE_SENSITIVE:
|
|
lcl_BitMaskToAny(aRet, nTOIOptions,
|
|
nsSwTOIOptions::TOI_CASE_SENSITIVE);
|
|
break;
|
|
case WID_USE_P_P:
|
|
lcl_BitMaskToAny(aRet, nTOIOptions, nsSwTOIOptions::TOI_FF);
|
|
break;
|
|
case WID_USE_DASH:
|
|
lcl_BitMaskToAny(aRet, nTOIOptions, nsSwTOIOptions::TOI_DASH);
|
|
break;
|
|
case WID_USE_UPPER_CASE:
|
|
lcl_BitMaskToAny(aRet, nTOIOptions,
|
|
nsSwTOIOptions::TOI_INITIAL_CAPS);
|
|
break;
|
|
case WID_IS_COMMA_SEPARATED:
|
|
{
|
|
const sal_Bool bRet = rForm.IsCommaSeparated();
|
|
aRet <<= bRet;
|
|
}
|
|
break;
|
|
case WID_LABEL_CATEGORY:
|
|
{
|
|
// convert internal UI name to
|
|
// file-format/API/external programmatic english name
|
|
// before usage
|
|
String aName( SwStyleNameMapper::GetSpecialExtraProgName(
|
|
pTOXBase->GetSequenceName() ) );
|
|
aRet <<= OUString( aName );
|
|
}
|
|
break;
|
|
case WID_LABEL_DISPLAY_TYPE:
|
|
{
|
|
sal_Int16 nSet = text::ReferenceFieldPart::TEXT;
|
|
switch (pTOXBase->GetCaptionDisplay())
|
|
{
|
|
case CAPTION_COMPLETE:
|
|
nSet = text::ReferenceFieldPart::TEXT;
|
|
break;
|
|
case CAPTION_NUMBER:
|
|
nSet = text::ReferenceFieldPart::CATEGORY_AND_NUMBER;
|
|
break;
|
|
case CAPTION_TEXT:
|
|
nSet = text::ReferenceFieldPart::ONLY_CAPTION;
|
|
break;
|
|
}
|
|
aRet <<= nSet;
|
|
}
|
|
break;
|
|
case WID_USE_LEVEL_FROM_SOURCE:
|
|
{
|
|
const sal_Bool bRet = pTOXBase->IsLevelFromChapter();
|
|
aRet <<= bRet;
|
|
}
|
|
break;
|
|
case WID_LEVEL_FORMAT:
|
|
{
|
|
uno::Reference< container::XIndexReplace > xTokenAccess(
|
|
m_pImpl->m_wTokenAccess);
|
|
if (!xTokenAccess.is())
|
|
{
|
|
xTokenAccess = new TokenAccess_Impl(*this);
|
|
m_pImpl->m_wTokenAccess = xTokenAccess;
|
|
}
|
|
aRet <<= xTokenAccess;
|
|
}
|
|
break;
|
|
case WID_LEVEL_PARAGRAPH_STYLES:
|
|
{
|
|
uno::Reference< container::XIndexReplace > xStyleAccess(
|
|
m_pImpl->m_wStyleAccess);
|
|
if (!xStyleAccess.is())
|
|
{
|
|
xStyleAccess = new StyleAccess_Impl(*this);
|
|
m_pImpl->m_wStyleAccess = xStyleAccess;
|
|
}
|
|
aRet <<= xStyleAccess;
|
|
}
|
|
break;
|
|
case WID_MAIN_ENTRY_CHARACTER_STYLE_NAME:
|
|
{
|
|
String aString;
|
|
SwStyleNameMapper::FillProgName(
|
|
pTOXBase->GetMainEntryCharStyle(),
|
|
aString,
|
|
nsSwGetPoolIdFromName::GET_POOLID_CHRFMT,
|
|
sal_True);
|
|
aRet <<= OUString( aString );
|
|
}
|
|
break;
|
|
case WID_CREATE_FROM_TABLES:
|
|
lcl_BitMaskToAny(aRet, nCreate, nsSwTOXElement::TOX_TABLE);
|
|
break;
|
|
case WID_CREATE_FROM_TEXT_FRAMES:
|
|
lcl_BitMaskToAny(aRet, nCreate, nsSwTOXElement::TOX_FRAME);
|
|
break;
|
|
case WID_CREATE_FROM_GRAPHIC_OBJECTS:
|
|
lcl_BitMaskToAny(aRet, nCreate, nsSwTOXElement::TOX_GRAPHIC);
|
|
break;
|
|
case WID_CREATE_FROM_EMBEDDED_OBJECTS:
|
|
lcl_BitMaskToAny(aRet, nCreate, nsSwTOXElement::TOX_OLE);
|
|
break;
|
|
case WID_CREATE_FROM_STAR_MATH:
|
|
lcl_BitMaskToAny(aRet, nOLEOptions, nsSwTOOElements::TOO_MATH);
|
|
break;
|
|
case WID_CREATE_FROM_STAR_CHART:
|
|
lcl_BitMaskToAny(aRet, nOLEOptions, nsSwTOOElements::TOO_CHART);
|
|
break;
|
|
case WID_CREATE_FROM_STAR_CALC:
|
|
lcl_BitMaskToAny(aRet, nOLEOptions, nsSwTOOElements::TOO_CALC);
|
|
break;
|
|
case WID_CREATE_FROM_STAR_DRAW:
|
|
lcl_BitMaskToAny(aRet, nOLEOptions,
|
|
nsSwTOOElements::TOO_DRAW_IMPRESS);
|
|
break;
|
|
case WID_CREATE_FROM_OTHER_EMBEDDED_OBJECTS:
|
|
lcl_BitMaskToAny(aRet, nOLEOptions, nsSwTOOElements::TOO_OTHER);
|
|
break;
|
|
case WID_CREATE_FROM_PARAGRAPH_STYLES:
|
|
lcl_BitMaskToAny(aRet, nCreate, nsSwTOXElement::TOX_TEMPLATE);
|
|
break;
|
|
case WID_PARA_HEAD:
|
|
{
|
|
//Header steht an Pos 0
|
|
String aString;
|
|
SwStyleNameMapper::FillProgName(rForm.GetTemplate( 0 ), aString,
|
|
nsSwGetPoolIdFromName::GET_POOLID_TXTCOLL, sal_True );
|
|
aRet <<= OUString( aString );
|
|
}
|
|
break;
|
|
case WID_PARA_SEP:
|
|
{
|
|
String aString;
|
|
SwStyleNameMapper::FillProgName(
|
|
rForm.GetTemplate( 1 ),
|
|
aString,
|
|
nsSwGetPoolIdFromName::GET_POOLID_TXTCOLL,
|
|
sal_True);
|
|
aRet <<= OUString( aString );
|
|
}
|
|
break;
|
|
case WID_PARA_LEV1:
|
|
case WID_PARA_LEV2:
|
|
case WID_PARA_LEV3:
|
|
case WID_PARA_LEV4:
|
|
case WID_PARA_LEV5:
|
|
case WID_PARA_LEV6:
|
|
case WID_PARA_LEV7:
|
|
case WID_PARA_LEV8:
|
|
case WID_PARA_LEV9:
|
|
case WID_PARA_LEV10:
|
|
{
|
|
// in sdbcx::Index Label 1 begins at Pos 2 otherwise at Pos 1
|
|
sal_uInt16 nLPos = pTOXBase->GetType() == TOX_INDEX ? 2 : 1;
|
|
String aString;
|
|
SwStyleNameMapper::FillProgName(
|
|
rForm.GetTemplate(nLPos + pEntry->nWID - WID_PARA_LEV1),
|
|
aString,
|
|
nsSwGetPoolIdFromName::GET_POOLID_TXTCOLL,
|
|
sal_True);
|
|
aRet <<= OUString( aString );
|
|
}
|
|
break;
|
|
case WID_IS_RELATIVE_TABSTOPS:
|
|
{
|
|
const sal_Bool bRet = rForm.IsRelTabPos();
|
|
aRet <<= bRet;
|
|
}
|
|
break;
|
|
case WID_INDEX_MARKS:
|
|
{
|
|
SwTOXMarks aMarks;
|
|
const SwTOXType* pType = pTOXBase->GetTOXType();
|
|
SwTOXMark::InsertTOXMarks( aMarks, *pType );
|
|
uno::Sequence< uno::Reference<text::XDocumentIndexMark> > aXMarks(aMarks.Count());
|
|
uno::Reference<text::XDocumentIndexMark>* pxMarks = aXMarks.getArray();
|
|
for(sal_uInt16 i = 0; i < aMarks.Count(); i++)
|
|
{
|
|
SwTOXMark* pMark = aMarks.GetObject(i);
|
|
pxMarks[i] = SwXDocumentIndexMark::CreateXDocumentIndexMark(
|
|
*m_pImpl->m_pDoc,
|
|
*const_cast<SwTOXType*>(pType), *pMark);
|
|
}
|
|
aRet <<= aXMarks;
|
|
}
|
|
break;
|
|
default:
|
|
//this is for items only
|
|
if(WID_PRIMARY_KEY > pEntry->nWID)
|
|
{
|
|
const SwAttrSet& rSet =
|
|
m_pImpl->m_pDoc->GetTOXBaseAttrSet(*pTOXBase);
|
|
aRet = m_pImpl->m_rPropSet.getPropertyValue(
|
|
rPropertyName, rSet);
|
|
}
|
|
}
|
|
}
|
|
return aRet;
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndex::addPropertyChangeListener(
|
|
const ::rtl::OUString& /*rPropertyName*/,
|
|
const uno::Reference< beans::XPropertyChangeListener >& /*xListener*/)
|
|
throw (beans::UnknownPropertyException, lang::WrappedTargetException,
|
|
uno::RuntimeException)
|
|
{
|
|
OSL_FAIL("SwXDocumentIndex::addPropertyChangeListener(): not implemented");
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndex::removePropertyChangeListener(
|
|
const ::rtl::OUString& /*rPropertyName*/,
|
|
const uno::Reference< beans::XPropertyChangeListener >& /*xListener*/)
|
|
throw (beans::UnknownPropertyException, lang::WrappedTargetException,
|
|
uno::RuntimeException)
|
|
{
|
|
OSL_FAIL("SwXDocumentIndex::removePropertyChangeListener(): not implemented");
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndex::addVetoableChangeListener(
|
|
const ::rtl::OUString& /*rPropertyName*/,
|
|
const uno::Reference< beans::XVetoableChangeListener >& /*xListener*/)
|
|
throw (beans::UnknownPropertyException, lang::WrappedTargetException,
|
|
uno::RuntimeException)
|
|
{
|
|
OSL_FAIL("SwXDocumentIndex::addVetoableChangeListener(): not implemented");
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndex::removeVetoableChangeListener(
|
|
const ::rtl::OUString& /*rPropertyName*/,
|
|
const uno::Reference< beans::XVetoableChangeListener >& /*xListener*/)
|
|
throw (beans::UnknownPropertyException, lang::WrappedTargetException,
|
|
uno::RuntimeException)
|
|
{
|
|
OSL_FAIL("SwXDocumentIndex::removeVetoableChangeListener(): not implemented");
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndex::attach(const uno::Reference< text::XTextRange > & xTextRange)
|
|
throw (lang::IllegalArgumentException, uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
if (!m_pImpl->m_bIsDescriptor)
|
|
{
|
|
throw uno::RuntimeException();
|
|
}
|
|
const uno::Reference<XUnoTunnel> xRangeTunnel( xTextRange, uno::UNO_QUERY);
|
|
SwXTextRange *const pRange =
|
|
::sw::UnoTunnelGetImplementation<SwXTextRange>(xRangeTunnel);
|
|
OTextCursorHelper *const pCursor =
|
|
::sw::UnoTunnelGetImplementation<OTextCursorHelper>(xRangeTunnel);
|
|
|
|
SwDoc *const pDoc =
|
|
(pRange) ? pRange->GetDoc() : ((pCursor) ? pCursor->GetDoc() : 0);
|
|
if (!pDoc)
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
|
|
SwUnoInternalPaM aPam(*pDoc);
|
|
//das muss jetzt sal_True liefern
|
|
::sw::XTextRangeToSwPaM(aPam, xTextRange);
|
|
|
|
const SwTOXBase* pOld = pDoc->GetCurTOX( *aPam.Start() );
|
|
if (pOld)
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
|
|
UnoActionContext aAction(pDoc);
|
|
if (aPam.HasMark())
|
|
{
|
|
pDoc->DeleteAndJoin(aPam);
|
|
}
|
|
|
|
SwTOXBase & rTOXBase = m_pImpl->m_pProps->GetTOXBase();
|
|
SwTOXType const*const pTOXType = rTOXBase.GetTOXType();
|
|
if ((TOX_USER == pTOXType->GetType()) &&
|
|
!m_pImpl->m_pProps->GetTypeName().equals(pTOXType->GetTypeName()))
|
|
{
|
|
lcl_ReAssignTOXType(pDoc, rTOXBase, m_pImpl->m_pProps->GetTypeName());
|
|
}
|
|
//TODO: apply Section attributes (columns and background)
|
|
SwTOXBaseSection const*const pTOX =
|
|
pDoc->InsertTableOf( *aPam.GetPoint(), rTOXBase, 0, sal_False );
|
|
|
|
pDoc->SetTOXBaseName(*pTOX, m_pImpl->m_pProps->GetTOXBase().GetTOXName());
|
|
|
|
// update page numbers
|
|
pTOX->GetFmt()->Add(m_pImpl.get());
|
|
pTOX->GetFmt()->SetXObject(static_cast< ::cppu::OWeakObject*>(this));
|
|
const_cast<SwTOXBaseSection*>(pTOX)->UpdatePageNum();
|
|
|
|
m_pImpl->m_pProps.reset();
|
|
m_pImpl->m_pDoc = pDoc;
|
|
m_pImpl->m_bIsDescriptor = sal_False;
|
|
}
|
|
|
|
uno::Reference< text::XTextRange > SAL_CALL
|
|
SwXDocumentIndex::getAnchor() throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
SwSectionFmt *const pSectionFmt( m_pImpl->GetSectionFmt() );
|
|
if (!pSectionFmt)
|
|
{
|
|
throw uno::RuntimeException();
|
|
}
|
|
|
|
uno::Reference< text::XTextRange > xRet;
|
|
SwNodeIndex const*const pIdx( pSectionFmt->GetCntnt().GetCntntIdx() );
|
|
if (pIdx && pIdx->GetNode().GetNodes().IsDocNodes())
|
|
{
|
|
SwPaM aPaM(*pIdx);
|
|
aPaM.Move( fnMoveForward, fnGoCntnt );
|
|
aPaM.SetMark();
|
|
aPaM.GetPoint()->nNode = *pIdx->GetNode().EndOfSectionNode();
|
|
aPaM.Move( fnMoveBackward, fnGoCntnt );
|
|
xRet = SwXTextRange::CreateXTextRange(*pSectionFmt->GetDoc(),
|
|
*aPaM.GetMark(), aPaM.GetPoint());
|
|
}
|
|
return xRet;
|
|
}
|
|
|
|
void lcl_RemoveChildSections(SwSectionFmt& rParentFmt)
|
|
{
|
|
SwSections aTmpArr;
|
|
SwDoc *const pDoc = rParentFmt.GetDoc();
|
|
const sal_uInt16 nCnt = rParentFmt.GetChildSections(aTmpArr, SORTSECT_POS);
|
|
if( nCnt )
|
|
{
|
|
for( sal_uInt16 n = 0; n < nCnt; ++n )
|
|
{
|
|
if( aTmpArr[n]->GetFmt()->IsInNodesArr() )
|
|
{
|
|
SwSectionFmt* pFmt = aTmpArr[n]->GetFmt();
|
|
lcl_RemoveChildSections(*pFmt);
|
|
pDoc->DelSectionFmt( pFmt );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void SAL_CALL SwXDocumentIndex::dispose() throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
SwSectionFmt *const pSectionFmt( m_pImpl->GetSectionFmt() );
|
|
if (pSectionFmt)
|
|
{
|
|
pSectionFmt->GetDoc()->DeleteTOX(
|
|
*static_cast<SwTOXBaseSection*>(pSectionFmt->GetSection()),
|
|
sal_True);
|
|
}
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndex::addEventListener(
|
|
const uno::Reference< lang::XEventListener > & xListener)
|
|
throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard g;
|
|
|
|
if (!m_pImpl->GetRegisteredIn())
|
|
{
|
|
throw uno::RuntimeException();
|
|
}
|
|
m_pImpl->m_ListenerContainer.AddListener(xListener);
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndex::removeEventListener(
|
|
const uno::Reference< lang::XEventListener > & xListener)
|
|
throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard g;
|
|
|
|
if (!m_pImpl->GetRegisteredIn() ||
|
|
!m_pImpl->m_ListenerContainer.RemoveListener(xListener))
|
|
{
|
|
throw uno::RuntimeException();
|
|
}
|
|
}
|
|
|
|
OUString SAL_CALL SwXDocumentIndex::getName() throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard g;
|
|
|
|
OUString uRet;
|
|
SwSectionFmt *const pSectionFmt( m_pImpl->GetSectionFmt() );
|
|
if (m_pImpl->m_bIsDescriptor)
|
|
{
|
|
uRet = OUString(m_pImpl->m_pProps->GetTOXBase().GetTOXName());
|
|
}
|
|
else if(pSectionFmt)
|
|
{
|
|
uRet = OUString(pSectionFmt->GetSection()->GetSectionName());
|
|
}
|
|
else
|
|
{
|
|
throw uno::RuntimeException();
|
|
}
|
|
return uRet;
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndex::setName(const OUString& rName) throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard g;
|
|
|
|
if (!rName.getLength())
|
|
{
|
|
throw uno::RuntimeException();
|
|
}
|
|
|
|
SwSectionFmt *const pSectionFmt( m_pImpl->GetSectionFmt() );
|
|
if (m_pImpl->m_bIsDescriptor)
|
|
{
|
|
m_pImpl->m_pProps->GetTOXBase().SetTOXName(rName);
|
|
}
|
|
else if (pSectionFmt)
|
|
{
|
|
const bool bSuccess = pSectionFmt->GetDoc()->SetTOXBaseName(
|
|
*static_cast<SwTOXBaseSection*>(pSectionFmt->GetSection()), rName);
|
|
if (!bSuccess)
|
|
{
|
|
throw uno::RuntimeException();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
throw uno::RuntimeException();
|
|
}
|
|
}
|
|
|
|
// MetadatableMixin
|
|
::sfx2::Metadatable* SwXDocumentIndex::GetCoreObject()
|
|
{
|
|
SwSectionFmt *const pSectionFmt( m_pImpl->GetSectionFmt() );
|
|
return pSectionFmt;
|
|
}
|
|
|
|
uno::Reference<frame::XModel> SwXDocumentIndex::GetModel()
|
|
{
|
|
SwSectionFmt *const pSectionFmt( m_pImpl->GetSectionFmt() );
|
|
if (pSectionFmt)
|
|
{
|
|
SwDocShell const*const pShell( pSectionFmt->GetDoc()->GetDocShell() );
|
|
return (pShell) ? pShell->GetModel() : 0;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|
|
/******************************************************************
|
|
* SwXDocumentIndexMark
|
|
******************************************************************/
|
|
static sal_uInt16
|
|
lcl_TypeToPropertyMap_Mark(const TOXTypes eType)
|
|
{
|
|
switch (eType)
|
|
{
|
|
case TOX_INDEX: return PROPERTY_MAP_INDEX_MARK;
|
|
case TOX_CONTENT: return PROPERTY_MAP_CNTIDX_MARK;
|
|
//case TOX_USER:
|
|
default:
|
|
return PROPERTY_MAP_USER_MARK;
|
|
}
|
|
}
|
|
|
|
class SwXDocumentIndexMark::Impl
|
|
: public SwClient
|
|
{
|
|
private:
|
|
bool m_bInReplaceMark;
|
|
|
|
public:
|
|
|
|
SfxItemPropertySet const& m_rPropSet;
|
|
const TOXTypes m_eTOXType;
|
|
SwEventListenerContainer m_ListenerContainer;
|
|
bool m_bIsDescriptor;
|
|
SwDepend m_TypeDepend;
|
|
const SwTOXMark * m_pTOXMark;
|
|
SwDoc * m_pDoc;
|
|
|
|
sal_Bool m_bMainEntry;
|
|
sal_uInt16 m_nLevel;
|
|
OUString m_sAltText;
|
|
OUString m_sPrimaryKey;
|
|
OUString m_sSecondaryKey;
|
|
OUString m_sTextReading;
|
|
OUString m_sPrimaryKeyReading;
|
|
OUString m_sSecondaryKeyReading;
|
|
OUString m_sUserIndexName;
|
|
|
|
Impl( SwXDocumentIndexMark & rThis,
|
|
SwDoc *const pDoc,
|
|
const enum TOXTypes eType,
|
|
SwTOXType *const pType, SwTOXMark const*const pMark)
|
|
: SwClient(const_cast<SwTOXMark*>(pMark))
|
|
, m_bInReplaceMark(false)
|
|
, m_rPropSet(
|
|
*aSwMapProvider.GetPropertySet(lcl_TypeToPropertyMap_Mark(eType)))
|
|
, m_eTOXType(eType)
|
|
, m_ListenerContainer(static_cast< ::cppu::OWeakObject* >(&rThis))
|
|
// #i112513#: unxsols4 (Sun C++ 5.9 SunOS_sparc) generates wrong code for this
|
|
// , m_bIsDescriptor(0 == pMark)
|
|
, m_bIsDescriptor((0 == pMark) ? true : false)
|
|
, m_TypeDepend(this, pType)
|
|
, m_pTOXMark(pMark)
|
|
, m_pDoc(pDoc)
|
|
, m_bMainEntry(sal_False)
|
|
, m_nLevel(0)
|
|
{
|
|
}
|
|
|
|
SwTOXType * GetTOXType() const {
|
|
return static_cast<SwTOXType*>(
|
|
const_cast<SwModify *>(m_TypeDepend.GetRegisteredIn()));
|
|
}
|
|
|
|
void DeleteTOXMark()
|
|
{
|
|
m_pDoc->DeleteTOXMark(m_pTOXMark); // calls Invalidate() via Modify!
|
|
m_pTOXMark = 0;
|
|
}
|
|
|
|
void InsertTOXMark(SwTOXType & rTOXType, SwTOXMark & rMark, SwPaM & rPam,
|
|
SwXTextCursor const*const pTextCursor);
|
|
|
|
void ReplaceTOXMark(SwTOXType & rTOXType, SwTOXMark & rMark, SwPaM & rPam)
|
|
{
|
|
m_bInReplaceMark = true;
|
|
DeleteTOXMark();
|
|
m_bInReplaceMark = false;
|
|
try {
|
|
InsertTOXMark(rTOXType, rMark, rPam, 0);
|
|
} catch (...) {
|
|
OSL_FAIL("ReplaceTOXMark() failed!");
|
|
m_ListenerContainer.Disposing();
|
|
throw;
|
|
}
|
|
}
|
|
|
|
void Invalidate();
|
|
protected:
|
|
// SwClient
|
|
virtual void Modify(const SfxPoolItem *pOld, const SfxPoolItem *pNew);
|
|
};
|
|
|
|
void SwXDocumentIndexMark::Impl::Invalidate()
|
|
{
|
|
if (GetRegisteredIn())
|
|
{
|
|
const_cast<SwModify*>(GetRegisteredIn())->Remove(this);
|
|
if (m_TypeDepend.GetRegisteredIn())
|
|
{
|
|
const_cast<SwModify*>(m_TypeDepend.GetRegisteredIn())->Remove(
|
|
&m_TypeDepend);
|
|
}
|
|
}
|
|
if (!m_bInReplaceMark) // #i109983# only dispose on delete, not on replace!
|
|
{
|
|
m_ListenerContainer.Disposing();
|
|
}
|
|
m_pDoc = 0;
|
|
m_pTOXMark = 0;
|
|
}
|
|
|
|
void SwXDocumentIndexMark::Impl::Modify(const SfxPoolItem *pOld, const SfxPoolItem *pNew)
|
|
{
|
|
ClientModify(this, pOld, pNew);
|
|
|
|
if (!GetRegisteredIn()) // removed => dispose
|
|
{
|
|
Invalidate();
|
|
}
|
|
}
|
|
|
|
SwXDocumentIndexMark::SwXDocumentIndexMark(const TOXTypes eToxType)
|
|
: m_pImpl( new SwXDocumentIndexMark::Impl(*this, 0, eToxType, 0, 0) )
|
|
{
|
|
}
|
|
|
|
SwXDocumentIndexMark::SwXDocumentIndexMark(SwDoc & rDoc,
|
|
SwTOXType & rType, SwTOXMark & rMark)
|
|
: m_pImpl( new SwXDocumentIndexMark::Impl(*this, &rDoc, rType.GetType(),
|
|
&rType, &rMark) )
|
|
{
|
|
}
|
|
|
|
SwXDocumentIndexMark::~SwXDocumentIndexMark()
|
|
{
|
|
}
|
|
|
|
uno::Reference<text::XDocumentIndexMark>
|
|
SwXDocumentIndexMark::CreateXDocumentIndexMark(
|
|
SwDoc & rDoc, SwTOXType & rType, SwTOXMark & rMark)
|
|
{
|
|
// re-use existing SwXDocumentIndexMark
|
|
// NB: xmloff depends on this caching to generate ID from the address!
|
|
// #i105557#: do not iterate over the registered clients: race condition
|
|
uno::Reference< text::XDocumentIndexMark > xTOXMark(rMark.GetXTOXMark());
|
|
if (!xTOXMark.is())
|
|
{
|
|
SwXDocumentIndexMark *const pNew =
|
|
new SwXDocumentIndexMark(rDoc, rType, rMark);
|
|
xTOXMark.set(pNew);
|
|
rMark.SetXTOXMark(xTOXMark);
|
|
}
|
|
return xTOXMark;
|
|
}
|
|
|
|
namespace
|
|
{
|
|
class theSwXDocumentIndexMarkUnoTunnelId : public rtl::Static< UnoTunnelIdInit, theSwXDocumentIndexMarkUnoTunnelId > {};
|
|
}
|
|
|
|
const uno::Sequence< sal_Int8 > & SwXDocumentIndexMark::getUnoTunnelId()
|
|
{
|
|
return theSwXDocumentIndexMarkUnoTunnelId::get().getSeq();
|
|
}
|
|
|
|
sal_Int64 SAL_CALL
|
|
SwXDocumentIndexMark::getSomething(const uno::Sequence< sal_Int8 >& rId)
|
|
throw (uno::RuntimeException)
|
|
{
|
|
return ::sw::UnoTunnelImpl<SwXDocumentIndexMark>(rId, this);
|
|
}
|
|
|
|
static const sal_Char cBaseMark[] = "com.sun.star.text.BaseIndexMark";
|
|
static const sal_Char cContentMark[] = "com.sun.star.text.ContentIndexMark";
|
|
static const sal_Char cIdxMark[] = "com.sun.star.text.DocumentIndexMark";
|
|
static const sal_Char cIdxMarkAsian[] = "com.sun.star.text.DocumentIndexMarkAsian";
|
|
static const sal_Char cUserMark[] = "com.sun.star.text.UserIndexMark";
|
|
static const sal_Char cTextContent[] = "com.sun.star.text.TextContent";
|
|
|
|
OUString SAL_CALL
|
|
SwXDocumentIndexMark::getImplementationName() throw (uno::RuntimeException)
|
|
{
|
|
return C2U("SwXDocumentIndexMark");
|
|
}
|
|
|
|
sal_Bool SAL_CALL
|
|
SwXDocumentIndexMark::supportsService(const OUString& rServiceName)
|
|
throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard g;
|
|
|
|
return rServiceName.equalsAscii(cBaseMark)
|
|
|| rServiceName.equalsAscii(cTextContent)
|
|
|| ((m_pImpl->m_eTOXType == TOX_USER)
|
|
&& rServiceName.equalsAscii(cUserMark))
|
|
|| ((m_pImpl->m_eTOXType == TOX_CONTENT)
|
|
&& rServiceName.equalsAscii(cContentMark))
|
|
|| ((m_pImpl->m_eTOXType == TOX_INDEX)
|
|
&& rServiceName.equalsAscii(cIdxMark))
|
|
|| ((m_pImpl->m_eTOXType == TOX_INDEX)
|
|
&& rServiceName.equalsAscii(cIdxMarkAsian));
|
|
}
|
|
|
|
uno::Sequence< OUString > SAL_CALL
|
|
SwXDocumentIndexMark::getSupportedServiceNames() throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard g;
|
|
|
|
const sal_Int32 nCnt = (m_pImpl->m_eTOXType == TOX_INDEX) ? 4 : 3;
|
|
uno::Sequence< OUString > aRet(nCnt);
|
|
OUString* pArray = aRet.getArray();
|
|
pArray[0] = C2U(cBaseMark);
|
|
pArray[1] = C2U(cTextContent);
|
|
switch (m_pImpl->m_eTOXType)
|
|
{
|
|
case TOX_USER:
|
|
pArray[2] = C2U(cUserMark);
|
|
break;
|
|
case TOX_CONTENT:
|
|
pArray[2] = C2U(cContentMark);
|
|
break;
|
|
case TOX_INDEX:
|
|
pArray[2] = C2U(cIdxMark);
|
|
pArray[3] = C2U(cIdxMarkAsian);
|
|
break;
|
|
|
|
default:
|
|
;
|
|
}
|
|
return aRet;
|
|
}
|
|
|
|
OUString SAL_CALL
|
|
SwXDocumentIndexMark::getMarkEntry() throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
OUString sRet;
|
|
SwTOXType *const pType = m_pImpl->GetTOXType();
|
|
if (pType && m_pImpl->m_pTOXMark)
|
|
{
|
|
sRet = OUString(m_pImpl->m_pTOXMark->GetAlternativeText());
|
|
}
|
|
else if (m_pImpl->m_bIsDescriptor)
|
|
{
|
|
sRet = m_pImpl->m_sAltText;
|
|
}
|
|
else
|
|
{
|
|
throw uno::RuntimeException();
|
|
}
|
|
return sRet;
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndexMark::setMarkEntry(const OUString& rIndexEntry)
|
|
throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
SwTOXType *const pType = m_pImpl->GetTOXType();
|
|
if (pType && m_pImpl->m_pTOXMark)
|
|
{
|
|
SwTOXMark aMark(*m_pImpl->m_pTOXMark);
|
|
aMark.SetAlternativeText(rIndexEntry);
|
|
SwTxtTOXMark const*const pTxtMark =
|
|
m_pImpl->m_pTOXMark->GetTxtTOXMark();
|
|
SwPaM aPam(pTxtMark->GetTxtNode(), *pTxtMark->GetStart());
|
|
aPam.SetMark();
|
|
if(pTxtMark->GetEnd())
|
|
{
|
|
aPam.GetPoint()->nContent = *pTxtMark->GetEnd();
|
|
}
|
|
else
|
|
aPam.GetPoint()->nContent++;
|
|
|
|
m_pImpl->ReplaceTOXMark(*pType, aMark, aPam);
|
|
}
|
|
else if (m_pImpl->m_bIsDescriptor)
|
|
{
|
|
m_pImpl->m_sAltText = rIndexEntry;
|
|
}
|
|
else
|
|
{
|
|
throw uno::RuntimeException();
|
|
}
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndexMark::attach(
|
|
const uno::Reference< text::XTextRange > & xTextRange)
|
|
throw (lang::IllegalArgumentException, uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
if (!m_pImpl->m_bIsDescriptor)
|
|
{
|
|
throw uno::RuntimeException();
|
|
}
|
|
|
|
const uno::Reference<XUnoTunnel> xRangeTunnel(xTextRange, uno::UNO_QUERY);
|
|
SwXTextRange *const pRange =
|
|
::sw::UnoTunnelGetImplementation<SwXTextRange>(xRangeTunnel);
|
|
OTextCursorHelper *const pCursor =
|
|
::sw::UnoTunnelGetImplementation<OTextCursorHelper>(xRangeTunnel);
|
|
SwDoc *const pDoc =
|
|
(pRange) ? pRange->GetDoc() : ((pCursor) ? pCursor->GetDoc() : 0);
|
|
if (!pDoc)
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
|
|
const SwTOXType* pTOXType = 0;
|
|
switch (m_pImpl->m_eTOXType)
|
|
{
|
|
case TOX_INDEX:
|
|
case TOX_CONTENT:
|
|
pTOXType = pDoc->GetTOXType( m_pImpl->m_eTOXType, 0 );
|
|
break;
|
|
case TOX_USER:
|
|
{
|
|
if (!m_pImpl->m_sUserIndexName.getLength())
|
|
{
|
|
pTOXType = pDoc->GetTOXType( m_pImpl->m_eTOXType, 0 );
|
|
}
|
|
else
|
|
{
|
|
const sal_uInt16 nCount =
|
|
pDoc->GetTOXTypeCount(m_pImpl->m_eTOXType);
|
|
for (sal_uInt16 i = 0; i < nCount; i++)
|
|
{
|
|
SwTOXType const*const pTemp =
|
|
pDoc->GetTOXType( m_pImpl->m_eTOXType, i );
|
|
if (m_pImpl->m_sUserIndexName ==
|
|
OUString(pTemp->GetTypeName()))
|
|
{
|
|
pTOXType = pTemp;
|
|
break;
|
|
}
|
|
}
|
|
if (!pTOXType)
|
|
{
|
|
SwTOXType aUserType(TOX_USER, m_pImpl->m_sUserIndexName);
|
|
pTOXType = pDoc->InsertTOXType(aUserType);
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
if (!pTOXType)
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
|
|
SwUnoInternalPaM aPam(*pDoc);
|
|
//which must now return sal_True
|
|
::sw::XTextRangeToSwPaM(aPam, xTextRange);
|
|
SwTOXMark aMark (pTOXType);
|
|
if (m_pImpl->m_sAltText.getLength())
|
|
{
|
|
aMark.SetAlternativeText(m_pImpl->m_sAltText);
|
|
}
|
|
switch (m_pImpl->m_eTOXType)
|
|
{
|
|
case TOX_INDEX:
|
|
if (m_pImpl->m_sPrimaryKey.getLength())
|
|
{
|
|
aMark.SetPrimaryKey(m_pImpl->m_sPrimaryKey);
|
|
}
|
|
if (m_pImpl->m_sSecondaryKey.getLength())
|
|
{
|
|
aMark.SetSecondaryKey(m_pImpl->m_sSecondaryKey);
|
|
}
|
|
if (m_pImpl->m_sTextReading.getLength())
|
|
{
|
|
aMark.SetTextReading(m_pImpl->m_sTextReading);
|
|
}
|
|
if (m_pImpl->m_sPrimaryKeyReading.getLength())
|
|
{
|
|
aMark.SetPrimaryKeyReading(m_pImpl->m_sPrimaryKeyReading);
|
|
}
|
|
if (m_pImpl->m_sSecondaryKeyReading.getLength())
|
|
{
|
|
aMark.SetSecondaryKeyReading(m_pImpl->m_sSecondaryKeyReading);
|
|
}
|
|
aMark.SetMainEntry(m_pImpl->m_bMainEntry);
|
|
break;
|
|
case TOX_USER:
|
|
case TOX_CONTENT:
|
|
if (USHRT_MAX != m_pImpl->m_nLevel)
|
|
{
|
|
aMark.SetLevel(m_pImpl->m_nLevel+1);
|
|
}
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
m_pImpl->InsertTOXMark(*const_cast<SwTOXType *>(pTOXType), aMark, aPam,
|
|
dynamic_cast<SwXTextCursor const*>(pCursor));
|
|
|
|
m_pImpl->m_bIsDescriptor = sal_False;
|
|
}
|
|
|
|
template<typename T> struct NotContainedIn
|
|
{
|
|
::std::vector<T> const& m_rVector;
|
|
explicit NotContainedIn(::std::vector<T> const& rVector)
|
|
: m_rVector(rVector) { }
|
|
bool operator() (T const& rT) {
|
|
return ::std::find(m_rVector.begin(), m_rVector.end(), rT)
|
|
== m_rVector.end();
|
|
}
|
|
};
|
|
|
|
void SwXDocumentIndexMark::Impl::InsertTOXMark(
|
|
SwTOXType & rTOXType, SwTOXMark & rMark, SwPaM & rPam,
|
|
SwXTextCursor const*const pTextCursor)
|
|
{
|
|
SwDoc *const pDoc( rPam.GetDoc() );
|
|
UnoActionContext aAction(pDoc);
|
|
bool bMark = *rPam.GetPoint() != *rPam.GetMark();
|
|
// n.b.: toxmarks must have either alternative text or an extent
|
|
if (bMark && rMark.GetAlternativeText().Len())
|
|
{
|
|
rPam.Normalize(sal_True);
|
|
rPam.DeleteMark();
|
|
bMark = false;
|
|
}
|
|
// Marks ohne Alternativtext ohne selektierten Text koennen nicht eingefuegt werden,
|
|
// deshalb hier ein Leerzeichen - ob das die ideale Loesung ist?
|
|
if (!bMark && !rMark.GetAlternativeText().Len())
|
|
{
|
|
rMark.SetAlternativeText( String(' ') );
|
|
}
|
|
|
|
const bool bForceExpandHints( (!bMark && pTextCursor)
|
|
? pTextCursor->IsAtEndOfMeta() : false );
|
|
const SetAttrMode nInsertFlags = (bForceExpandHints)
|
|
? ( nsSetAttrMode::SETATTR_FORCEHINTEXPAND
|
|
| nsSetAttrMode::SETATTR_DONTEXPAND)
|
|
: nsSetAttrMode::SETATTR_DONTEXPAND;
|
|
|
|
::std::vector<SwTxtAttr *> oldMarks;
|
|
if (bMark)
|
|
{
|
|
oldMarks = rPam.GetNode()->GetTxtNode()->GetTxtAttrsAt(
|
|
rPam.GetPoint()->nContent.GetIndex(), RES_TXTATR_TOXMARK);
|
|
}
|
|
|
|
pDoc->InsertPoolItem(rPam, rMark, nInsertFlags);
|
|
if (bMark && *rPam.GetPoint() > *rPam.GetMark())
|
|
{
|
|
rPam.Exchange();
|
|
}
|
|
|
|
// rMark was copied into the document pool; now retrieve real format...
|
|
SwTxtAttr * pTxtAttr(0);
|
|
if (bMark)
|
|
{
|
|
// #i107672#
|
|
// ensure that we do not retrieve a different mark at the same position
|
|
::std::vector<SwTxtAttr *> const newMarks(
|
|
rPam.GetNode()->GetTxtNode()->GetTxtAttrsAt(
|
|
rPam.GetPoint()->nContent.GetIndex(), RES_TXTATR_TOXMARK));
|
|
::std::vector<SwTxtAttr *>::const_iterator const iter(
|
|
::std::find_if(newMarks.begin(), newMarks.end(),
|
|
NotContainedIn<SwTxtAttr *>(oldMarks)));
|
|
OSL_ASSERT(newMarks.end() != iter);
|
|
if (newMarks.end() != iter)
|
|
{
|
|
pTxtAttr = *iter;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
pTxtAttr = rPam.GetNode()->GetTxtNode()->GetTxtAttrForCharAt(
|
|
rPam.GetPoint()->nContent.GetIndex()-1, RES_TXTATR_TOXMARK );
|
|
}
|
|
|
|
if (!pTxtAttr)
|
|
{
|
|
throw uno::RuntimeException(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
|
|
"SwXDocumentIndexMark::InsertTOXMark(): cannot insert attribute")),
|
|
0);
|
|
}
|
|
|
|
m_pDoc = pDoc;
|
|
m_pTOXMark = & pTxtAttr->GetTOXMark();
|
|
const_cast<SwTOXMark*>(m_pTOXMark)->Add(this);
|
|
const_cast<SwTOXType &>(rTOXType).Add(& m_TypeDepend);
|
|
}
|
|
|
|
uno::Reference< text::XTextRange > SAL_CALL
|
|
SwXDocumentIndexMark::getAnchor() throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
SwTOXType *const pType = m_pImpl->GetTOXType();
|
|
if (!pType || !m_pImpl->m_pTOXMark)
|
|
{
|
|
throw uno::RuntimeException();
|
|
}
|
|
if (!m_pImpl->m_pTOXMark->GetTxtTOXMark())
|
|
{
|
|
throw uno::RuntimeException();
|
|
}
|
|
const SwTxtTOXMark* pTxtMark = m_pImpl->m_pTOXMark->GetTxtTOXMark();
|
|
SwPaM aPam(pTxtMark->GetTxtNode(), *pTxtMark->GetStart());
|
|
aPam.SetMark();
|
|
if(pTxtMark->GetEnd())
|
|
{
|
|
aPam.GetPoint()->nContent = *pTxtMark->GetEnd();
|
|
}
|
|
else
|
|
{
|
|
aPam.GetPoint()->nContent++;
|
|
}
|
|
const uno::Reference< frame::XModel > xModel =
|
|
m_pImpl->m_pDoc->GetDocShell()->GetBaseModel();
|
|
const uno::Reference< text::XTextDocument > xTDoc(xModel, uno::UNO_QUERY);
|
|
const uno::Reference< text::XTextRange > xRet =
|
|
new SwXTextRange(aPam, xTDoc->getText());
|
|
|
|
return xRet;
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndexMark::dispose() throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
SwTOXType *const pType = m_pImpl->GetTOXType();
|
|
if (pType && m_pImpl->m_pTOXMark)
|
|
{
|
|
m_pImpl->DeleteTOXMark(); // call Invalidate() via modify!
|
|
}
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndexMark::addEventListener(
|
|
const uno::Reference< lang::XEventListener > & xListener)
|
|
throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard g;
|
|
|
|
if (!m_pImpl->GetRegisteredIn())
|
|
{
|
|
throw uno::RuntimeException();
|
|
}
|
|
m_pImpl->m_ListenerContainer.AddListener(xListener);
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndexMark::removeEventListener(
|
|
const uno::Reference< lang::XEventListener > & xListener)
|
|
throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard g;
|
|
|
|
if (!m_pImpl->GetRegisteredIn() ||
|
|
!m_pImpl->m_ListenerContainer.RemoveListener(xListener))
|
|
{
|
|
throw uno::RuntimeException();
|
|
}
|
|
}
|
|
|
|
uno::Reference< beans::XPropertySetInfo > SAL_CALL
|
|
SwXDocumentIndexMark::getPropertySetInfo() throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard g;
|
|
|
|
static uno::Reference< beans::XPropertySetInfo > xInfos[3];
|
|
int nPos = 0;
|
|
switch (m_pImpl->m_eTOXType)
|
|
{
|
|
case TOX_INDEX: nPos = 0; break;
|
|
case TOX_CONTENT: nPos = 1; break;
|
|
case TOX_USER: nPos = 2; break;
|
|
default:
|
|
;
|
|
}
|
|
if(!xInfos[nPos].is())
|
|
{
|
|
const uno::Reference< beans::XPropertySetInfo > xInfo =
|
|
m_pImpl->m_rPropSet.getPropertySetInfo();
|
|
// extend PropertySetInfo!
|
|
const uno::Sequence<beans::Property> aPropSeq = xInfo->getProperties();
|
|
xInfos[nPos] = new SfxExtItemPropertySetInfo(
|
|
aSwMapProvider.GetPropertyMapEntries(
|
|
PROPERTY_MAP_PARAGRAPH_EXTENSIONS),
|
|
aPropSeq );
|
|
}
|
|
return xInfos[nPos];
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndexMark::setPropertyValue(
|
|
const OUString& rPropertyName, const uno::Any& rValue)
|
|
throw (beans::UnknownPropertyException, beans::PropertyVetoException,
|
|
lang::IllegalArgumentException, lang::WrappedTargetException,
|
|
uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
SfxItemPropertySimpleEntry const*const pEntry =
|
|
m_pImpl->m_rPropSet.getPropertyMap()->getByName(rPropertyName);
|
|
if (!pEntry)
|
|
{
|
|
throw beans::UnknownPropertyException(
|
|
OUString(RTL_CONSTASCII_USTRINGPARAM("Unknown property: "))
|
|
+ rPropertyName,
|
|
static_cast<cppu::OWeakObject *>(this));
|
|
}
|
|
if (pEntry->nFlags & beans::PropertyAttribute::READONLY)
|
|
{
|
|
throw beans::PropertyVetoException(
|
|
OUString(RTL_CONSTASCII_USTRINGPARAM("Property is read-only: "))
|
|
+ rPropertyName,
|
|
static_cast<cppu::OWeakObject *>(this));
|
|
}
|
|
|
|
SwTOXType *const pType = m_pImpl->GetTOXType();
|
|
if (pType && m_pImpl->m_pTOXMark)
|
|
{
|
|
SwTOXMark aMark(*m_pImpl->m_pTOXMark);
|
|
switch(pEntry->nWID)
|
|
{
|
|
case WID_ALT_TEXT:
|
|
aMark.SetAlternativeText(lcl_AnyToString(rValue));
|
|
break;
|
|
case WID_LEVEL:
|
|
aMark.SetLevel(Min( static_cast<sal_Int8>( MAXLEVEL ),
|
|
static_cast<sal_Int8>(lcl_AnyToInt16(rValue)+1)));
|
|
break;
|
|
case WID_PRIMARY_KEY :
|
|
aMark.SetPrimaryKey(lcl_AnyToString(rValue));
|
|
break;
|
|
case WID_SECONDARY_KEY:
|
|
aMark.SetSecondaryKey(lcl_AnyToString(rValue));
|
|
break;
|
|
case WID_MAIN_ENTRY:
|
|
aMark.SetMainEntry(lcl_AnyToBool(rValue));
|
|
break;
|
|
case WID_TEXT_READING:
|
|
aMark.SetTextReading(lcl_AnyToString(rValue));
|
|
break;
|
|
case WID_PRIMARY_KEY_READING:
|
|
aMark.SetPrimaryKeyReading(lcl_AnyToString(rValue));
|
|
break;
|
|
case WID_SECONDARY_KEY_READING:
|
|
aMark.SetSecondaryKeyReading(lcl_AnyToString(rValue));
|
|
break;
|
|
}
|
|
SwTxtTOXMark const*const pTxtMark =
|
|
m_pImpl->m_pTOXMark->GetTxtTOXMark();
|
|
SwPaM aPam(pTxtMark->GetTxtNode(), *pTxtMark->GetStart());
|
|
aPam.SetMark();
|
|
if(pTxtMark->GetEnd())
|
|
{
|
|
aPam.GetPoint()->nContent = *pTxtMark->GetEnd();
|
|
}
|
|
else
|
|
{
|
|
aPam.GetPoint()->nContent++;
|
|
}
|
|
|
|
m_pImpl->ReplaceTOXMark(*pType, aMark, aPam);
|
|
}
|
|
else if (m_pImpl->m_bIsDescriptor)
|
|
{
|
|
switch(pEntry->nWID)
|
|
{
|
|
case WID_ALT_TEXT:
|
|
m_pImpl->m_sAltText = lcl_AnyToString(rValue);
|
|
break;
|
|
case WID_LEVEL:
|
|
{
|
|
const sal_Int16 nVal = lcl_AnyToInt16(rValue);
|
|
if(nVal >= 0 && nVal < MAXLEVEL)
|
|
{
|
|
m_pImpl->m_nLevel = nVal;
|
|
}
|
|
else
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
}
|
|
break;
|
|
case WID_PRIMARY_KEY:
|
|
m_pImpl->m_sPrimaryKey = lcl_AnyToString(rValue);
|
|
break;
|
|
case WID_SECONDARY_KEY:
|
|
m_pImpl->m_sSecondaryKey = lcl_AnyToString(rValue);
|
|
break;
|
|
case WID_TEXT_READING:
|
|
m_pImpl->m_sTextReading = lcl_AnyToString(rValue);
|
|
break;
|
|
case WID_PRIMARY_KEY_READING:
|
|
m_pImpl->m_sPrimaryKeyReading = lcl_AnyToString(rValue);
|
|
break;
|
|
case WID_SECONDARY_KEY_READING:
|
|
m_pImpl->m_sSecondaryKeyReading = lcl_AnyToString(rValue);
|
|
break;
|
|
case WID_USER_IDX_NAME:
|
|
{
|
|
OUString sTmp(lcl_AnyToString(rValue));
|
|
lcl_ConvertTOUNameToUserName(sTmp);
|
|
m_pImpl->m_sUserIndexName = sTmp;
|
|
}
|
|
break;
|
|
case WID_MAIN_ENTRY:
|
|
m_pImpl->m_bMainEntry = lcl_AnyToBool(rValue);
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
throw uno::RuntimeException();
|
|
}
|
|
}
|
|
|
|
uno::Any SAL_CALL
|
|
SwXDocumentIndexMark::getPropertyValue(const OUString& rPropertyName)
|
|
throw (beans::UnknownPropertyException, lang::WrappedTargetException,
|
|
uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
uno::Any aRet;
|
|
SfxItemPropertySimpleEntry const*const pEntry =
|
|
m_pImpl->m_rPropSet.getPropertyMap()->getByName(rPropertyName);
|
|
if (!pEntry)
|
|
{
|
|
throw beans::UnknownPropertyException(
|
|
OUString(RTL_CONSTASCII_USTRINGPARAM("Unknown property: "))
|
|
+ rPropertyName,
|
|
static_cast<cppu::OWeakObject *>(this));
|
|
}
|
|
if (::sw::GetDefaultTextContentValue(aRet, rPropertyName, pEntry->nWID))
|
|
{
|
|
return aRet;
|
|
}
|
|
|
|
SwTOXType *const pType = m_pImpl->GetTOXType();
|
|
if (pType && m_pImpl->m_pTOXMark)
|
|
{
|
|
switch(pEntry->nWID)
|
|
{
|
|
case WID_ALT_TEXT:
|
|
aRet <<= OUString(m_pImpl->m_pTOXMark->GetAlternativeText());
|
|
break;
|
|
case WID_LEVEL:
|
|
aRet <<= static_cast<sal_Int16>(
|
|
m_pImpl->m_pTOXMark->GetLevel() - 1);
|
|
break;
|
|
case WID_PRIMARY_KEY :
|
|
aRet <<= OUString(m_pImpl->m_pTOXMark->GetPrimaryKey());
|
|
break;
|
|
case WID_SECONDARY_KEY:
|
|
aRet <<= OUString(m_pImpl->m_pTOXMark->GetSecondaryKey());
|
|
break;
|
|
case WID_TEXT_READING:
|
|
aRet <<= OUString(m_pImpl->m_pTOXMark->GetTextReading());
|
|
break;
|
|
case WID_PRIMARY_KEY_READING:
|
|
aRet <<= OUString(m_pImpl->m_pTOXMark->GetPrimaryKeyReading());
|
|
break;
|
|
case WID_SECONDARY_KEY_READING:
|
|
aRet <<= OUString(
|
|
m_pImpl->m_pTOXMark->GetSecondaryKeyReading());
|
|
break;
|
|
case WID_USER_IDX_NAME :
|
|
{
|
|
OUString sTmp(pType->GetTypeName());
|
|
lcl_ConvertTOUNameToProgrammaticName(sTmp);
|
|
aRet <<= sTmp;
|
|
}
|
|
break;
|
|
case WID_MAIN_ENTRY:
|
|
{
|
|
const sal_Bool bTemp = m_pImpl->m_pTOXMark->IsMainEntry();
|
|
aRet <<= bTemp;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
else if (m_pImpl->m_bIsDescriptor)
|
|
{
|
|
switch(pEntry->nWID)
|
|
{
|
|
case WID_ALT_TEXT:
|
|
aRet <<= m_pImpl->m_sAltText;
|
|
break;
|
|
case WID_LEVEL:
|
|
aRet <<= static_cast<sal_Int16>(m_pImpl->m_nLevel);
|
|
break;
|
|
case WID_PRIMARY_KEY:
|
|
aRet <<= m_pImpl->m_sPrimaryKey;
|
|
break;
|
|
case WID_SECONDARY_KEY:
|
|
aRet <<= m_pImpl->m_sSecondaryKey;
|
|
break;
|
|
case WID_TEXT_READING:
|
|
aRet <<= m_pImpl->m_sTextReading;
|
|
break;
|
|
case WID_PRIMARY_KEY_READING:
|
|
aRet <<= m_pImpl->m_sPrimaryKeyReading;
|
|
break;
|
|
case WID_SECONDARY_KEY_READING:
|
|
aRet <<= m_pImpl->m_sSecondaryKeyReading;
|
|
break;
|
|
case WID_USER_IDX_NAME :
|
|
aRet <<= m_pImpl->m_sUserIndexName;
|
|
break;
|
|
case WID_MAIN_ENTRY:
|
|
{
|
|
aRet <<= static_cast<sal_Bool>(m_pImpl->m_bMainEntry);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
throw uno::RuntimeException();
|
|
}
|
|
return aRet;
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndexMark::addPropertyChangeListener(
|
|
const ::rtl::OUString& /*rPropertyName*/,
|
|
const uno::Reference< beans::XPropertyChangeListener >& /*xListener*/)
|
|
throw (beans::UnknownPropertyException, lang::WrappedTargetException,
|
|
uno::RuntimeException)
|
|
{
|
|
OSL_FAIL("SwXDocumentIndexMark::addPropertyChangeListener(): not implemented");
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndexMark::removePropertyChangeListener(
|
|
const ::rtl::OUString& /*rPropertyName*/,
|
|
const uno::Reference< beans::XPropertyChangeListener >& /*xListener*/)
|
|
throw (beans::UnknownPropertyException, lang::WrappedTargetException,
|
|
uno::RuntimeException)
|
|
{
|
|
OSL_FAIL("SwXDocumentIndexMark::removePropertyChangeListener(): not implemented");
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndexMark::addVetoableChangeListener(
|
|
const ::rtl::OUString& /*rPropertyName*/,
|
|
const uno::Reference< beans::XVetoableChangeListener >& /*xListener*/)
|
|
throw (beans::UnknownPropertyException, lang::WrappedTargetException,
|
|
uno::RuntimeException)
|
|
{
|
|
OSL_FAIL("SwXDocumentIndexMark::addVetoableChangeListener(): not implemented");
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndexMark::removeVetoableChangeListener(
|
|
const ::rtl::OUString& /*rPropertyName*/,
|
|
const uno::Reference< beans::XVetoableChangeListener >& /*xListener*/)
|
|
throw (beans::UnknownPropertyException, lang::WrappedTargetException,
|
|
uno::RuntimeException)
|
|
{
|
|
OSL_FAIL("SwXDocumentIndexMark::removeVetoableChangeListener(): not implemented");
|
|
}
|
|
|
|
/******************************************************************
|
|
* SwXDocumentIndexes
|
|
******************************************************************/
|
|
SwXDocumentIndexes::SwXDocumentIndexes(SwDoc *const _pDoc)
|
|
: SwUnoCollection(_pDoc)
|
|
{
|
|
}
|
|
|
|
SwXDocumentIndexes::~SwXDocumentIndexes()
|
|
{
|
|
}
|
|
|
|
OUString SAL_CALL
|
|
SwXDocumentIndexes::getImplementationName() throw (uno::RuntimeException)
|
|
{
|
|
return C2U("SwXDocumentIndexes");
|
|
}
|
|
|
|
static char const*const g_ServicesDocumentIndexes[] =
|
|
{
|
|
"com.sun.star.text.DocumentIndexes",
|
|
};
|
|
|
|
static const size_t g_nServicesDocumentIndexes(
|
|
SAL_N_ELEMENTS(g_ServicesDocumentIndexes));
|
|
|
|
sal_Bool SAL_CALL
|
|
SwXDocumentIndexes::supportsService(const OUString& rServiceName)
|
|
throw (uno::RuntimeException)
|
|
{
|
|
return ::sw::SupportsServiceImpl(
|
|
g_nServicesDocumentIndexes, g_ServicesDocumentIndexes, rServiceName);
|
|
}
|
|
|
|
uno::Sequence< OUString > SAL_CALL
|
|
SwXDocumentIndexes::getSupportedServiceNames() throw (uno::RuntimeException)
|
|
{
|
|
return ::sw::GetSupportedServiceNamesImpl(
|
|
g_nServicesDocumentIndexes, g_ServicesDocumentIndexes);
|
|
}
|
|
|
|
sal_Int32 SAL_CALL
|
|
SwXDocumentIndexes::getCount() throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
if(!IsValid())
|
|
throw uno::RuntimeException();
|
|
|
|
sal_uInt32 nRet = 0;
|
|
const SwSectionFmts& rFmts = GetDoc()->GetSections();
|
|
for( sal_uInt16 n = 0; n < rFmts.Count(); ++n )
|
|
{
|
|
const SwSection* pSect = rFmts[ n ]->GetSection();
|
|
if( TOX_CONTENT_SECTION == pSect->GetType() &&
|
|
pSect->GetFmt()->GetSectionNode() )
|
|
{
|
|
++nRet;
|
|
}
|
|
}
|
|
return nRet;
|
|
}
|
|
|
|
uno::Any SAL_CALL
|
|
SwXDocumentIndexes::getByIndex(sal_Int32 nIndex)
|
|
throw (lang::IndexOutOfBoundsException, lang::WrappedTargetException,
|
|
uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
if(!IsValid())
|
|
throw uno::RuntimeException();
|
|
|
|
sal_Int32 nIdx = 0;
|
|
|
|
const SwSectionFmts& rFmts = GetDoc()->GetSections();
|
|
for( sal_uInt16 n = 0; n < rFmts.Count(); ++n )
|
|
{
|
|
const SwSection* pSect = rFmts[ n ]->GetSection();
|
|
if( TOX_CONTENT_SECTION == pSect->GetType() &&
|
|
pSect->GetFmt()->GetSectionNode() &&
|
|
nIdx++ == nIndex )
|
|
{
|
|
const uno::Reference< text::XDocumentIndex > xTmp =
|
|
SwXDocumentIndex::CreateXDocumentIndex(
|
|
*GetDoc(), static_cast<SwTOXBaseSection const&>(*pSect));
|
|
uno::Any aRet;
|
|
aRet <<= xTmp;
|
|
return aRet;
|
|
}
|
|
}
|
|
|
|
throw lang::IndexOutOfBoundsException();
|
|
}
|
|
|
|
uno::Any SAL_CALL
|
|
SwXDocumentIndexes::getByName(const OUString& rName)
|
|
throw (container::NoSuchElementException, lang::WrappedTargetException,
|
|
uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
if(!IsValid())
|
|
throw uno::RuntimeException();
|
|
|
|
String sToFind(rName);
|
|
const SwSectionFmts& rFmts = GetDoc()->GetSections();
|
|
for( sal_uInt16 n = 0; n < rFmts.Count(); ++n )
|
|
{
|
|
const SwSection* pSect = rFmts[ n ]->GetSection();
|
|
if( TOX_CONTENT_SECTION == pSect->GetType() &&
|
|
pSect->GetFmt()->GetSectionNode() &&
|
|
(static_cast<SwTOXBaseSection const*>(pSect)->GetTOXName()
|
|
== sToFind))
|
|
{
|
|
const uno::Reference< text::XDocumentIndex > xTmp =
|
|
SwXDocumentIndex::CreateXDocumentIndex(
|
|
*GetDoc(), static_cast<SwTOXBaseSection const&>(*pSect));
|
|
uno::Any aRet;
|
|
aRet <<= xTmp;
|
|
return aRet;
|
|
}
|
|
}
|
|
throw container::NoSuchElementException();
|
|
}
|
|
|
|
uno::Sequence< OUString > SAL_CALL
|
|
SwXDocumentIndexes::getElementNames() throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
if(!IsValid())
|
|
throw uno::RuntimeException();
|
|
|
|
const SwSectionFmts& rFmts = GetDoc()->GetSections();
|
|
sal_Int32 nCount = 0;
|
|
sal_uInt16 n;
|
|
for( n = 0; n < rFmts.Count(); ++n )
|
|
{
|
|
SwSection const*const pSect = rFmts[ n ]->GetSection();
|
|
if( TOX_CONTENT_SECTION == pSect->GetType() &&
|
|
pSect->GetFmt()->GetSectionNode() )
|
|
{
|
|
++nCount;
|
|
}
|
|
}
|
|
|
|
uno::Sequence< OUString > aRet(nCount);
|
|
OUString* pArray = aRet.getArray();
|
|
sal_uInt16 nCnt;
|
|
for( n = 0, nCnt = 0; n < rFmts.Count(); ++n )
|
|
{
|
|
SwSection const*const pSect = rFmts[ n ]->GetSection();
|
|
if( TOX_CONTENT_SECTION == pSect->GetType() &&
|
|
pSect->GetFmt()->GetSectionNode())
|
|
{
|
|
pArray[nCnt++] = OUString(
|
|
static_cast<SwTOXBaseSection const*>(pSect)->GetTOXName());
|
|
}
|
|
}
|
|
return aRet;
|
|
}
|
|
|
|
sal_Bool SAL_CALL
|
|
SwXDocumentIndexes::hasByName(const OUString& rName)
|
|
throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
if(!IsValid())
|
|
throw uno::RuntimeException();
|
|
|
|
String sToFind(rName);
|
|
const SwSectionFmts& rFmts = GetDoc()->GetSections();
|
|
for( sal_uInt16 n = 0; n < rFmts.Count(); ++n )
|
|
{
|
|
SwSection const*const pSect = rFmts[ n ]->GetSection();
|
|
if( TOX_CONTENT_SECTION == pSect->GetType() &&
|
|
pSect->GetFmt()->GetSectionNode())
|
|
{
|
|
if (static_cast<SwTOXBaseSection const*>(pSect)->GetTOXName()
|
|
== sToFind)
|
|
{
|
|
return sal_True;
|
|
}
|
|
}
|
|
}
|
|
return sal_False;
|
|
}
|
|
|
|
uno::Type SAL_CALL
|
|
SwXDocumentIndexes::getElementType() throw (uno::RuntimeException)
|
|
{
|
|
return text::XDocumentIndex::static_type();
|
|
}
|
|
|
|
sal_Bool SAL_CALL
|
|
SwXDocumentIndexes::hasElements() throw (uno::RuntimeException)
|
|
{
|
|
return 0 != getCount();
|
|
}
|
|
|
|
/******************************************************************
|
|
* SwXDocumentIndex::StyleAccess_Impl
|
|
******************************************************************/
|
|
SwXDocumentIndex::StyleAccess_Impl::StyleAccess_Impl(
|
|
SwXDocumentIndex& rParentIdx)
|
|
: m_xParent(&rParentIdx)
|
|
{
|
|
}
|
|
|
|
SwXDocumentIndex::StyleAccess_Impl::~StyleAccess_Impl()
|
|
{
|
|
}
|
|
|
|
OUString SAL_CALL
|
|
SwXDocumentIndex::StyleAccess_Impl::getImplementationName()
|
|
throw (uno::RuntimeException)
|
|
{
|
|
return C2U("SwXDocumentIndex::StyleAccess_Impl");
|
|
}
|
|
|
|
static char const*const g_ServicesIndexStyleAccess[] =
|
|
{
|
|
"com.sun.star.text.DocumentIndexParagraphStyles",
|
|
};
|
|
|
|
static const size_t g_nServicesIndexStyleAccess(
|
|
SAL_N_ELEMENTS(g_ServicesIndexStyleAccess));
|
|
|
|
sal_Bool SAL_CALL
|
|
SwXDocumentIndex::StyleAccess_Impl::supportsService(
|
|
const OUString& rServiceName)
|
|
throw (uno::RuntimeException)
|
|
{
|
|
return ::sw::SupportsServiceImpl(
|
|
g_nServicesIndexStyleAccess, g_ServicesIndexStyleAccess, rServiceName);
|
|
}
|
|
|
|
uno::Sequence< OUString > SAL_CALL
|
|
SwXDocumentIndex::StyleAccess_Impl::getSupportedServiceNames()
|
|
throw (uno::RuntimeException)
|
|
{
|
|
return ::sw::GetSupportedServiceNamesImpl(
|
|
g_nServicesIndexStyleAccess, g_ServicesIndexStyleAccess);
|
|
}
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndex::StyleAccess_Impl::replaceByIndex(
|
|
sal_Int32 nIndex, const uno::Any& rElement)
|
|
throw (lang::IllegalArgumentException, lang::IndexOutOfBoundsException,
|
|
lang::WrappedTargetException, uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
if(nIndex < 0 || nIndex > MAXLEVEL)
|
|
{
|
|
throw lang::IndexOutOfBoundsException();
|
|
}
|
|
|
|
SwTOXBase & rTOXBase( m_xParent->m_pImpl->GetTOXSectionOrThrow() );
|
|
|
|
uno::Sequence<OUString> aSeq;
|
|
if(!(rElement >>= aSeq))
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
|
|
const sal_Int32 nStyles = aSeq.getLength();
|
|
const OUString* pStyles = aSeq.getConstArray();
|
|
String sSetStyles;
|
|
String aString;
|
|
for(sal_Int32 i = 0; i < nStyles; i++)
|
|
{
|
|
if(i)
|
|
{
|
|
sSetStyles += TOX_STYLE_DELIMITER;
|
|
}
|
|
SwStyleNameMapper::FillUIName(pStyles[i], aString,
|
|
nsSwGetPoolIdFromName::GET_POOLID_TXTCOLL, sal_True);
|
|
sSetStyles += aString;
|
|
}
|
|
rTOXBase.SetStyleNames(sSetStyles, static_cast<sal_uInt16>(nIndex));
|
|
}
|
|
|
|
sal_Int32 SAL_CALL
|
|
SwXDocumentIndex::StyleAccess_Impl::getCount() throw (uno::RuntimeException)
|
|
{
|
|
return MAXLEVEL;
|
|
}
|
|
|
|
uno::Any SAL_CALL
|
|
SwXDocumentIndex::StyleAccess_Impl::getByIndex(sal_Int32 nIndex)
|
|
throw (lang::IndexOutOfBoundsException, lang::WrappedTargetException,
|
|
uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
if(nIndex < 0 || nIndex > MAXLEVEL)
|
|
{
|
|
throw lang::IndexOutOfBoundsException();
|
|
}
|
|
|
|
SwTOXBase & rTOXBase( m_xParent->m_pImpl->GetTOXSectionOrThrow() );
|
|
|
|
const String& rStyles =
|
|
rTOXBase.GetStyleNames(static_cast<sal_uInt16>(nIndex));
|
|
const sal_uInt16 nStyles = rStyles.GetTokenCount(TOX_STYLE_DELIMITER);
|
|
uno::Sequence<OUString> aStyles(nStyles);
|
|
OUString* pStyles = aStyles.getArray();
|
|
String aString;
|
|
for(sal_uInt16 i = 0; i < nStyles; i++)
|
|
{
|
|
SwStyleNameMapper::FillProgName(
|
|
rStyles.GetToken(i, TOX_STYLE_DELIMITER),
|
|
aString,
|
|
nsSwGetPoolIdFromName::GET_POOLID_TXTCOLL,
|
|
sal_True);
|
|
pStyles[i] = OUString( aString );
|
|
}
|
|
uno::Any aRet(&aStyles, ::getCppuType((uno::Sequence<OUString>*)0));
|
|
return aRet;
|
|
}
|
|
|
|
uno::Type SAL_CALL
|
|
SwXDocumentIndex::StyleAccess_Impl::getElementType()
|
|
throw (uno::RuntimeException)
|
|
{
|
|
return ::getCppuType((uno::Sequence<OUString>*)0);
|
|
}
|
|
|
|
sal_Bool SAL_CALL
|
|
SwXDocumentIndex::StyleAccess_Impl::hasElements() throw (uno::RuntimeException)
|
|
{
|
|
return sal_True;
|
|
}
|
|
|
|
/******************************************************************
|
|
* SwXDocumentIndex::TokenAccess_Impl
|
|
******************************************************************/
|
|
SwXDocumentIndex::TokenAccess_Impl::TokenAccess_Impl(
|
|
SwXDocumentIndex& rParentIdx)
|
|
: m_xParent(&rParentIdx)
|
|
{
|
|
}
|
|
|
|
SwXDocumentIndex::TokenAccess_Impl::~TokenAccess_Impl()
|
|
{
|
|
}
|
|
|
|
OUString SAL_CALL
|
|
SwXDocumentIndex::TokenAccess_Impl::getImplementationName()
|
|
throw (uno::RuntimeException)
|
|
{
|
|
return C2U("SwXDocumentIndex::TokenAccess_Impl");
|
|
}
|
|
|
|
static char const*const g_ServicesIndexTokenAccess[] =
|
|
{
|
|
"com.sun.star.text.DocumentIndexLevelFormat",
|
|
};
|
|
|
|
static const size_t g_nServicesIndexTokenAccess(
|
|
SAL_N_ELEMENTS(g_ServicesIndexTokenAccess));
|
|
|
|
sal_Bool SAL_CALL
|
|
SwXDocumentIndex::TokenAccess_Impl::supportsService(
|
|
const OUString& rServiceName)
|
|
throw (uno::RuntimeException)
|
|
{
|
|
return ::sw::SupportsServiceImpl(
|
|
g_nServicesIndexTokenAccess, g_ServicesIndexTokenAccess, rServiceName);
|
|
}
|
|
|
|
uno::Sequence< OUString > SAL_CALL
|
|
SwXDocumentIndex::TokenAccess_Impl::getSupportedServiceNames()
|
|
throw (uno::RuntimeException)
|
|
{
|
|
return ::sw::GetSupportedServiceNamesImpl(
|
|
g_nServicesIndexTokenAccess, g_ServicesIndexTokenAccess);
|
|
}
|
|
|
|
struct TokenType {
|
|
const char *pName;
|
|
enum FormTokenType eTokenType;
|
|
};
|
|
|
|
static const struct TokenType g_TokenTypes[] =
|
|
{
|
|
{ "TokenEntryNumber", TOKEN_ENTRY_NO },
|
|
{ "TokenEntryText", TOKEN_ENTRY_TEXT },
|
|
{ "TokenTabStop", TOKEN_TAB_STOP },
|
|
{ "TokenText", TOKEN_TEXT },
|
|
{ "TokenPageNumber", TOKEN_PAGE_NUMS },
|
|
{ "TokenChapterInfo", TOKEN_CHAPTER_INFO },
|
|
{ "TokenHyperlinkStart", TOKEN_LINK_START },
|
|
{ "TokenHyperlinkEnd", TOKEN_LINK_END },
|
|
{ "TokenBibliographyDataField", TOKEN_AUTHORITY },
|
|
{ 0, static_cast<enum FormTokenType>(0) }
|
|
};
|
|
|
|
void SAL_CALL
|
|
SwXDocumentIndex::TokenAccess_Impl::replaceByIndex(
|
|
sal_Int32 nIndex, const uno::Any& rElement)
|
|
throw (lang::IllegalArgumentException, lang::IndexOutOfBoundsException,
|
|
lang::WrappedTargetException, uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
SwTOXBase & rTOXBase( m_xParent->m_pImpl->GetTOXSectionOrThrow() );
|
|
|
|
if ((nIndex < 0) || (nIndex > rTOXBase.GetTOXForm().GetFormMax()))
|
|
{
|
|
throw lang::IndexOutOfBoundsException();
|
|
}
|
|
|
|
uno::Sequence<beans::PropertyValues> aSeq;
|
|
if(!(rElement >>= aSeq))
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
|
|
String sPattern;
|
|
const sal_Int32 nTokens = aSeq.getLength();
|
|
const beans::PropertyValues* pTokens = aSeq.getConstArray();
|
|
for(sal_Int32 i = 0; i < nTokens; i++)
|
|
{
|
|
const beans::PropertyValue* pProperties = pTokens[i].getConstArray();
|
|
const sal_Int32 nProperties = pTokens[i].getLength();
|
|
//create an invalid token
|
|
SwFormToken aToken(TOKEN_END);
|
|
for(sal_Int32 j = 0; j < nProperties; j++)
|
|
{
|
|
if (pProperties[j].Name.equalsAsciiL(
|
|
RTL_CONSTASCII_STRINGPARAM("TokenType")))
|
|
{
|
|
const OUString sTokenType =
|
|
lcl_AnyToString(pProperties[j].Value);
|
|
for (TokenType const* pTokenType = g_TokenTypes;
|
|
pTokenType->pName; ++pTokenType)
|
|
{
|
|
if (sTokenType.equalsAscii(pTokenType->pName))
|
|
{
|
|
aToken.eTokenType = pTokenType->eTokenType;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
else if (pProperties[j].Name.equalsAsciiL(
|
|
RTL_CONSTASCII_STRINGPARAM("CharacterStyleName")))
|
|
{
|
|
String sCharStyleName;
|
|
SwStyleNameMapper::FillUIName(
|
|
lcl_AnyToString(pProperties[j].Value),
|
|
sCharStyleName,
|
|
nsSwGetPoolIdFromName::GET_POOLID_CHRFMT,
|
|
sal_True);
|
|
aToken.sCharStyleName = sCharStyleName;
|
|
aToken.nPoolId = SwStyleNameMapper::GetPoolIdFromUIName (
|
|
sCharStyleName, nsSwGetPoolIdFromName::GET_POOLID_CHRFMT );
|
|
}
|
|
else if (pProperties[j].Name.equalsAsciiL(
|
|
RTL_CONSTASCII_STRINGPARAM("TabStopRightAligned")))
|
|
{
|
|
const sal_Bool bRight = lcl_AnyToBool(pProperties[j].Value);
|
|
aToken.eTabAlign = bRight ?
|
|
SVX_TAB_ADJUST_END : SVX_TAB_ADJUST_LEFT;
|
|
}
|
|
else if (pProperties[j].Name.equalsAsciiL(
|
|
RTL_CONSTASCII_STRINGPARAM("TabStopPosition")))
|
|
{
|
|
sal_Int32 nPosition = 0;
|
|
if (!(pProperties[j].Value >>= nPosition))
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
nPosition = MM100_TO_TWIP(nPosition);
|
|
if(nPosition < 0)
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
aToken.nTabStopPosition = nPosition;
|
|
}
|
|
else if (pProperties[j].Name.equalsAsciiL(
|
|
RTL_CONSTASCII_STRINGPARAM("TabStopFillCharacter")))
|
|
{
|
|
const OUString sFillChar =
|
|
lcl_AnyToString(pProperties[j].Value);
|
|
if (sFillChar.getLength() > 1)
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
aToken.cTabFillChar =
|
|
(sFillChar.getLength()) ? sFillChar[0] : ' ';
|
|
}
|
|
else if (pProperties[j].Name.equalsAsciiL(
|
|
RTL_CONSTASCII_STRINGPARAM("Text")))
|
|
{
|
|
const OUString sText = lcl_AnyToString(pProperties[j].Value);
|
|
aToken.sText = sText;
|
|
}
|
|
else if (pProperties[j].Name.equalsAsciiL(
|
|
RTL_CONSTASCII_STRINGPARAM("ChapterFormat")))
|
|
{
|
|
sal_Int16 nFormat = lcl_AnyToInt16(pProperties[j].Value);
|
|
switch(nFormat)
|
|
{
|
|
case text::ChapterFormat::NUMBER:
|
|
nFormat = CF_NUMBER;
|
|
break;
|
|
case text::ChapterFormat::NAME:
|
|
nFormat = CF_TITLE;
|
|
break;
|
|
case text::ChapterFormat::NAME_NUMBER:
|
|
nFormat = CF_NUM_TITLE;
|
|
break;
|
|
case text::ChapterFormat::NO_PREFIX_SUFFIX:
|
|
nFormat = CF_NUMBER_NOPREPST;
|
|
break;
|
|
case text::ChapterFormat::DIGIT:
|
|
nFormat = CF_NUM_NOPREPST_TITLE;
|
|
break;
|
|
default:
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
aToken.nChapterFormat = nFormat;
|
|
}
|
|
// #i53420#
|
|
else if (pProperties[j].Name.equalsAsciiL(
|
|
RTL_CONSTASCII_STRINGPARAM("ChapterLevel")))
|
|
{
|
|
const sal_Int16 nLevel = lcl_AnyToInt16(pProperties[j].Value);
|
|
if( nLevel < 1 || nLevel > MAXLEVEL )
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
aToken.nOutlineLevel = nLevel;
|
|
}
|
|
else if (pProperties[j].Name.equalsAsciiL(
|
|
RTL_CONSTASCII_STRINGPARAM("BibliographyDataField")))
|
|
{
|
|
sal_Int16 nType = 0;
|
|
pProperties[j].Value >>= nType;
|
|
if(nType < 0 || nType > text::BibliographyDataField::ISBN)
|
|
{
|
|
lang::IllegalArgumentException aExcept;
|
|
aExcept.Message = C2U("BibliographyDataField - wrong value");
|
|
aExcept.ArgumentPosition = static_cast< sal_Int16 >(j);
|
|
throw aExcept;
|
|
}
|
|
aToken.nAuthorityField = nType;
|
|
}
|
|
// #i21237#
|
|
else if (pProperties[j].Name.equalsAsciiL(
|
|
RTL_CONSTASCII_STRINGPARAM("WithTab")))
|
|
{
|
|
aToken.bWithTab = lcl_AnyToBool(pProperties[j].Value);
|
|
}
|
|
|
|
}
|
|
//exception if wrong TokenType
|
|
if(TOKEN_END <= aToken.eTokenType )
|
|
{
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
// set TokenType from TOKEN_ENTRY_TEXT to TOKEN_ENTRY if it is
|
|
// not a content index
|
|
if(TOKEN_ENTRY_TEXT == aToken.eTokenType &&
|
|
(TOX_CONTENT != rTOXBase.GetType()))
|
|
{
|
|
aToken.eTokenType = TOKEN_ENTRY;
|
|
}
|
|
// #i53420#
|
|
// check for chapter format allowed values if it was TOKEN_ENTRY_NO type
|
|
// only allowed value are CF_NUMBER and CF_NUM_NOPREPST_TITLE
|
|
// reading from file
|
|
if( TOKEN_ENTRY_NO == aToken.eTokenType )
|
|
{
|
|
switch(aToken.nChapterFormat)
|
|
{
|
|
case CF_NUMBER:
|
|
case CF_NUM_NOPREPST_TITLE:
|
|
break;
|
|
default:
|
|
throw lang::IllegalArgumentException();
|
|
}
|
|
}
|
|
sPattern += aToken.GetString();
|
|
}
|
|
SwForm aForm(rTOXBase.GetTOXForm());
|
|
aForm.SetPattern(static_cast<sal_uInt16>(nIndex), sPattern);
|
|
rTOXBase.SetTOXForm(aForm);
|
|
}
|
|
|
|
sal_Int32 SAL_CALL
|
|
SwXDocumentIndex::TokenAccess_Impl::getCount() throw (uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
const sal_Int32 nRet = m_xParent->m_pImpl->GetFormMax();
|
|
return nRet;
|
|
}
|
|
|
|
uno::Any SAL_CALL
|
|
SwXDocumentIndex::TokenAccess_Impl::getByIndex(sal_Int32 nIndex)
|
|
throw (lang::IndexOutOfBoundsException, lang::WrappedTargetException,
|
|
uno::RuntimeException)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
SwTOXBase & rTOXBase( m_xParent->m_pImpl->GetTOXSectionOrThrow() );
|
|
|
|
if ((nIndex < 0) || (nIndex > rTOXBase.GetTOXForm().GetFormMax()))
|
|
{
|
|
throw lang::IndexOutOfBoundsException();
|
|
}
|
|
|
|
// #i21237#
|
|
SwFormTokens aPattern = rTOXBase.GetTOXForm().
|
|
GetPattern(static_cast<sal_uInt16>(nIndex));
|
|
SwFormTokens::iterator aIt = aPattern.begin();
|
|
|
|
sal_uInt16 nTokenCount = 0;
|
|
uno::Sequence< beans::PropertyValues > aRetSeq;
|
|
String aString;
|
|
while(aIt != aPattern.end()) // #i21237#
|
|
{
|
|
nTokenCount++;
|
|
aRetSeq.realloc(nTokenCount);
|
|
beans::PropertyValues* pTokenProps = aRetSeq.getArray();
|
|
SwFormToken aToken = *aIt; // #i21237#
|
|
|
|
uno::Sequence< beans::PropertyValue >& rCurTokenSeq =
|
|
pTokenProps[nTokenCount-1];
|
|
SwStyleNameMapper::FillProgName(
|
|
aToken.sCharStyleName,
|
|
aString,
|
|
nsSwGetPoolIdFromName::GET_POOLID_CHRFMT,
|
|
sal_True );
|
|
const OUString aProgCharStyle( aString );
|
|
switch(aToken.eTokenType)
|
|
{
|
|
case TOKEN_ENTRY_NO:
|
|
{
|
|
// #i53420#
|
|
// writing to file (from doc to properties)
|
|
sal_Int32 nElements = 2;
|
|
sal_Int32 nCurrentElement = 0;
|
|
|
|
// check for default value
|
|
if (aToken.nChapterFormat != CF_NUMBER)
|
|
{
|
|
nElements++;//we need the element
|
|
}
|
|
if( aToken.nOutlineLevel != MAXLEVEL )
|
|
{
|
|
nElements++;
|
|
}
|
|
|
|
rCurTokenSeq.realloc( nElements );
|
|
|
|
beans::PropertyValue* pArr = rCurTokenSeq.getArray();
|
|
|
|
pArr[nCurrentElement].Name = C2U("TokenType");
|
|
pArr[nCurrentElement++].Value <<=
|
|
OUString(RTL_CONSTASCII_USTRINGPARAM("TokenEntryNumber"));
|
|
|
|
pArr[nCurrentElement].Name = C2U("CharacterStyleName");
|
|
pArr[nCurrentElement++].Value <<= aProgCharStyle;
|
|
if( aToken.nChapterFormat != CF_NUMBER )
|
|
{
|
|
pArr[nCurrentElement].Name = C2U("ChapterFormat");
|
|
sal_Int16 nVal;
|
|
// the allowed values for chapter format, when used as entry number,
|
|
// are CF_NUMBER and CF_NUM_NOPREPST_TITLE only, all else forced to
|
|
//CF_NUMBER
|
|
switch(aToken.nChapterFormat)
|
|
{
|
|
default:
|
|
case CF_NUMBER:
|
|
nVal = text::ChapterFormat::NUMBER;
|
|
break;
|
|
case CF_NUM_NOPREPST_TITLE:
|
|
nVal = text::ChapterFormat::DIGIT;
|
|
break;
|
|
}
|
|
pArr[nCurrentElement++].Value <<= nVal;
|
|
}
|
|
|
|
// only a ChapterLevel != MAXLEVEL is registered
|
|
if (aToken.nOutlineLevel != MAXLEVEL)
|
|
{
|
|
pArr[nCurrentElement].Name = C2U("ChapterLevel");
|
|
pArr[nCurrentElement].Value <<= aToken.nOutlineLevel;
|
|
}
|
|
}
|
|
break;
|
|
case TOKEN_ENTRY: // no difference between Entry and Entry Text
|
|
case TOKEN_ENTRY_TEXT:
|
|
{
|
|
rCurTokenSeq.realloc( 2 );
|
|
beans::PropertyValue* pArr = rCurTokenSeq.getArray();
|
|
|
|
pArr[0].Name = C2U("TokenType");
|
|
pArr[0].Value <<= OUString(RTL_CONSTASCII_USTRINGPARAM("TokenEntryText"));
|
|
|
|
pArr[1].Name = C2U("CharacterStyleName");
|
|
pArr[1].Value <<= aProgCharStyle;
|
|
}
|
|
break;
|
|
case TOKEN_TAB_STOP:
|
|
{
|
|
rCurTokenSeq.realloc(5); // #i21237#
|
|
beans::PropertyValue* pArr = rCurTokenSeq.getArray();
|
|
|
|
pArr[0].Name = C2U("TokenType");
|
|
pArr[0].Value <<= OUString(RTL_CONSTASCII_USTRINGPARAM("TokenTabStop"));
|
|
|
|
if(SVX_TAB_ADJUST_END == aToken.eTabAlign)
|
|
{
|
|
pArr[1].Name = C2U("TabStopRightAligned");
|
|
sal_Bool bTemp = sal_True;
|
|
pArr[1].Value.setValue(&bTemp, ::getCppuBooleanType());
|
|
}
|
|
else
|
|
{
|
|
pArr[1].Name = C2U("TabStopPosition");
|
|
sal_Int32 nPos = (TWIP_TO_MM100(aToken.nTabStopPosition));
|
|
if(nPos < 0)
|
|
nPos = 0;
|
|
pArr[1].Value <<= (sal_Int32)nPos;
|
|
}
|
|
pArr[2].Name = C2U("TabStopFillCharacter");
|
|
pArr[2].Value <<= OUString(aToken.cTabFillChar);
|
|
pArr[3].Name = C2U("CharacterStyleName");
|
|
pArr[3].Value <<= aProgCharStyle;
|
|
// #i21237#
|
|
pArr[4].Name = C2U("WithTab");
|
|
pArr[4].Value <<= static_cast<sal_Bool>(aToken.bWithTab);
|
|
}
|
|
break;
|
|
case TOKEN_TEXT:
|
|
{
|
|
rCurTokenSeq.realloc( 3 );
|
|
beans::PropertyValue* pArr = rCurTokenSeq.getArray();
|
|
|
|
pArr[0].Name = C2U("TokenType");
|
|
pArr[0].Value <<= OUString(RTL_CONSTASCII_USTRINGPARAM("TokenText"));
|
|
|
|
pArr[1].Name = C2U("CharacterStyleName");
|
|
pArr[1].Value <<= aProgCharStyle;
|
|
|
|
pArr[2].Name = C2U("Text");
|
|
pArr[2].Value <<= OUString(aToken.sText);
|
|
}
|
|
break;
|
|
case TOKEN_PAGE_NUMS:
|
|
{
|
|
rCurTokenSeq.realloc( 2 );
|
|
beans::PropertyValue* pArr = rCurTokenSeq.getArray();
|
|
|
|
pArr[0].Name = C2U("TokenType");
|
|
pArr[0].Value <<= OUString(RTL_CONSTASCII_USTRINGPARAM("TokenPageNumber"));
|
|
|
|
pArr[1].Name = C2U("CharacterStyleName");
|
|
pArr[1].Value <<= aProgCharStyle;
|
|
}
|
|
break;
|
|
case TOKEN_CHAPTER_INFO:
|
|
{
|
|
rCurTokenSeq.realloc( 4 );
|
|
beans::PropertyValue* pArr = rCurTokenSeq.getArray();
|
|
|
|
pArr[0].Name = C2U("TokenType");
|
|
pArr[0].Value <<= OUString(RTL_CONSTASCII_USTRINGPARAM("TokenChapterInfo"));
|
|
|
|
pArr[1].Name = C2U("CharacterStyleName");
|
|
pArr[1].Value <<= aProgCharStyle;
|
|
|
|
pArr[2].Name = C2U("ChapterFormat");
|
|
sal_Int16 nVal = text::ChapterFormat::NUMBER;
|
|
switch(aToken.nChapterFormat)
|
|
{
|
|
case CF_NUMBER:
|
|
nVal = text::ChapterFormat::NUMBER;
|
|
break;
|
|
case CF_TITLE:
|
|
nVal = text::ChapterFormat::NAME;
|
|
break;
|
|
case CF_NUM_TITLE:
|
|
nVal = text::ChapterFormat::NAME_NUMBER;
|
|
break;
|
|
case CF_NUMBER_NOPREPST:
|
|
nVal = text::ChapterFormat::NO_PREFIX_SUFFIX;
|
|
break;
|
|
case CF_NUM_NOPREPST_TITLE:
|
|
nVal = text::ChapterFormat::DIGIT;
|
|
break;
|
|
}
|
|
pArr[2].Value <<= nVal;
|
|
// #i53420#
|
|
pArr[3].Name = C2U("ChapterLevel");
|
|
pArr[3].Value <<= aToken.nOutlineLevel;
|
|
}
|
|
break;
|
|
case TOKEN_LINK_START:
|
|
{
|
|
rCurTokenSeq.realloc( 2 );
|
|
beans::PropertyValue* pArr = rCurTokenSeq.getArray();
|
|
|
|
pArr[0].Name = C2U("TokenType");
|
|
pArr[0].Value <<=
|
|
OUString(RTL_CONSTASCII_USTRINGPARAM("TokenHyperlinkStart"));
|
|
pArr[1].Name = C2U("CharacterStyleName");
|
|
pArr[1].Value <<= aProgCharStyle;
|
|
}
|
|
break;
|
|
case TOKEN_LINK_END:
|
|
{
|
|
rCurTokenSeq.realloc( 1 );
|
|
beans::PropertyValue* pArr = rCurTokenSeq.getArray();
|
|
|
|
pArr[0].Name = C2U("TokenType");
|
|
pArr[0].Value <<=
|
|
OUString(RTL_CONSTASCII_USTRINGPARAM("TokenHyperlinkEnd"));
|
|
}
|
|
break;
|
|
case TOKEN_AUTHORITY:
|
|
{
|
|
rCurTokenSeq.realloc( 3 );
|
|
beans::PropertyValue* pArr = rCurTokenSeq.getArray();
|
|
|
|
pArr[0].Name = C2U("TokenType");
|
|
pArr[0].Value <<=
|
|
OUString(RTL_CONSTASCII_USTRINGPARAM("TokenBibliographyDataField"));
|
|
|
|
pArr[1].Name = C2U("CharacterStyleName");
|
|
pArr[1].Value <<= aProgCharStyle;
|
|
|
|
pArr[2].Name = C2U("BibliographyDataField");
|
|
pArr[2].Value <<= sal_Int16(aToken.nAuthorityField);
|
|
}
|
|
break;
|
|
|
|
default:
|
|
;
|
|
}
|
|
|
|
++aIt; // #i21237#
|
|
}
|
|
|
|
uno::Any aRet;
|
|
aRet <<= aRetSeq;
|
|
return aRet;
|
|
}
|
|
|
|
uno::Type SAL_CALL
|
|
SwXDocumentIndex::TokenAccess_Impl::getElementType()
|
|
throw (uno::RuntimeException)
|
|
{
|
|
return ::getCppuType((uno::Sequence< beans::PropertyValues >*)0);
|
|
}
|
|
|
|
sal_Bool SAL_CALL
|
|
SwXDocumentIndex::TokenAccess_Impl::hasElements()
|
|
throw (uno::RuntimeException)
|
|
{
|
|
return sal_True;
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|