2010-10-14 08:30:41 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2011-03-31 10:05:04 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2011-03-31 10:05:04 +02:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2011-03-31 10:05:04 +02:00
|
|
|
* This file incorporates work covered by the following license notice:
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2011-03-31 10:05:04 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2013-11-05 02:17:53 +01:00
|
|
|
#ifndef INCLUDED_SW_INC_SECTION_HXX
|
|
|
|
#define INCLUDED_SW_INC_SECTION_HXX
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2001-02-27 17:46:19 +00:00
|
|
|
#include <com/sun/star/uno/Sequence.h>
|
2010-03-16 11:28:30 +01:00
|
|
|
|
2000-09-18 16:15:01 +00:00
|
|
|
#include <tools/rtti.hxx>
|
2001-03-08 20:28:23 +00:00
|
|
|
#include <tools/ref.hxx>
|
2011-05-13 15:44:49 +02:00
|
|
|
#include <svl/smplhint.hxx>
|
2010-03-16 11:28:35 +01:00
|
|
|
#include <sfx2/lnkbase.hxx>
|
|
|
|
#include <sfx2/Metadatable.hxx>
|
2010-03-16 11:28:30 +01:00
|
|
|
|
2000-09-18 16:15:01 +00:00
|
|
|
#include <frmfmt.hxx>
|
2012-05-16 10:18:27 +02:00
|
|
|
#include <vector>
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2010-01-08 17:13:51 +01:00
|
|
|
namespace com { namespace sun { namespace star {
|
|
|
|
namespace text { class XTextSection; }
|
|
|
|
} } }
|
|
|
|
|
2000-09-18 16:15:01 +00:00
|
|
|
class SwSectionFmt;
|
|
|
|
class SwDoc;
|
|
|
|
class SwSection;
|
2005-06-14 15:27:26 +00:00
|
|
|
class SwSectionNode;
|
2000-09-18 16:15:01 +00:00
|
|
|
class SwTOXBase;
|
|
|
|
|
|
|
|
#ifndef SW_DECL_SWSERVEROBJECT_DEFINED
|
|
|
|
#define SW_DECL_SWSERVEROBJECT_DEFINED
|
2014-04-07 12:31:09 +02:00
|
|
|
class SwServerObject;
|
|
|
|
typedef tools::SvRef<SwServerObject> SwServerObjectRef;
|
2000-09-18 16:15:01 +00:00
|
|
|
#endif
|
|
|
|
|
2012-05-16 10:18:27 +02:00
|
|
|
typedef std::vector<SwSection*> SwSections;
|
2000-09-18 16:15:01 +00:00
|
|
|
|
|
|
|
enum SectionType { CONTENT_SECTION,
|
|
|
|
TOX_HEADER_SECTION,
|
|
|
|
TOX_CONTENT_SECTION,
|
|
|
|
DDE_LINK_SECTION = OBJECT_CLIENT_DDE,
|
|
|
|
FILE_LINK_SECTION = OBJECT_CLIENT_FILE
|
|
|
|
};
|
|
|
|
|
|
|
|
enum LinkCreateType
|
|
|
|
{
|
2011-04-18 20:18:04 +02:00
|
|
|
CREATE_NONE, // Do nothing.
|
|
|
|
CREATE_CONNECT, // Connect created link.
|
|
|
|
CREATE_UPDATE // Connect created link and update it.
|
2000-09-18 16:15:01 +00:00
|
|
|
};
|
|
|
|
|
2010-03-16 11:28:30 +01:00
|
|
|
class SW_DLLPUBLIC SwSectionData
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
SectionType m_eType;
|
|
|
|
|
2013-08-15 16:08:35 +02:00
|
|
|
OUString m_sSectionName;
|
|
|
|
OUString m_sCondition;
|
|
|
|
OUString m_sLinkFileName;
|
|
|
|
OUString m_sLinkFilePassword; // Must be changed to Sequence.
|
2010-03-16 11:28:30 +01:00
|
|
|
::com::sun::star::uno::Sequence <sal_Int8> m_Password;
|
|
|
|
|
2011-04-18 20:18:04 +02:00
|
|
|
/// It seems this flag caches the current final "hidden" state.
|
2010-03-16 11:28:30 +01:00
|
|
|
bool m_bHiddenFlag : 1;
|
2011-04-18 20:18:04 +02:00
|
|
|
/// Flags that correspond to attributes in the format:
|
2010-03-16 11:28:30 +01:00
|
|
|
/// may have different value than format attribute:
|
|
|
|
/// format attr has value for this section, while flag is
|
|
|
|
/// effectively ORed with parent sections!
|
|
|
|
bool m_bProtectFlag : 1;
|
2011-04-18 20:18:04 +02:00
|
|
|
// Edit in readonly sections.
|
2010-03-16 11:28:30 +01:00
|
|
|
bool m_bEditInReadonlyFlag : 1;
|
2010-11-15 11:59:57 +00:00
|
|
|
|
2011-04-18 20:18:04 +02:00
|
|
|
bool m_bHidden : 1; // All paragraphs hidden?
|
|
|
|
bool m_bCondHiddenFlag : 1; // Hiddenflag for condition.
|
|
|
|
bool m_bConnectFlag : 1; // Connected to server?
|
2010-03-16 11:28:30 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2013-08-15 16:08:35 +02:00
|
|
|
SwSectionData(SectionType const eType, OUString const& rName);
|
2010-03-16 11:28:30 +01:00
|
|
|
explicit SwSectionData(SwSection const&);
|
|
|
|
SwSectionData(SwSectionData const&);
|
|
|
|
SwSectionData & operator=(SwSectionData const&);
|
|
|
|
bool operator==(SwSectionData const&) const;
|
|
|
|
|
2013-08-15 16:08:35 +02:00
|
|
|
OUString GetSectionName() const { return m_sSectionName; }
|
|
|
|
void SetSectionName(OUString const& rName){ m_sSectionName = rName; }
|
2010-03-16 11:28:30 +01:00
|
|
|
SectionType GetType() const { return m_eType; }
|
|
|
|
void SetType(SectionType const eNew) { m_eType = eNew; }
|
|
|
|
|
|
|
|
bool IsHidden() const { return m_bHidden; }
|
|
|
|
void SetHidden(bool const bFlag = true) { m_bHidden = bFlag; }
|
|
|
|
|
|
|
|
bool IsHiddenFlag() const { return m_bHiddenFlag; }
|
2014-02-03 14:43:37 +01:00
|
|
|
SAL_DLLPRIVATE void
|
2010-03-16 11:28:30 +01:00
|
|
|
SetHiddenFlag(bool const bFlag) { m_bHiddenFlag = bFlag; }
|
|
|
|
bool IsProtectFlag() const { return m_bProtectFlag; }
|
2014-02-03 14:43:37 +01:00
|
|
|
SAL_DLLPRIVATE void
|
2010-03-16 11:28:30 +01:00
|
|
|
SetProtectFlag(bool const bFlag) { m_bProtectFlag = bFlag; }
|
|
|
|
bool IsEditInReadonlyFlag() const { return m_bEditInReadonlyFlag; }
|
|
|
|
void SetEditInReadonlyFlag(bool const bFlag)
|
|
|
|
{ m_bEditInReadonlyFlag = bFlag; }
|
|
|
|
|
2013-08-15 16:08:35 +02:00
|
|
|
void SetCondHidden(bool const bFlag = true) { m_bCondHiddenFlag = bFlag; }
|
2010-03-16 11:28:30 +01:00
|
|
|
bool IsCondHidden() const { return m_bCondHiddenFlag; }
|
|
|
|
|
2013-08-15 16:08:35 +02:00
|
|
|
OUString GetCondition() const { return m_sCondition; }
|
|
|
|
void SetCondition(OUString const& rNew) { m_sCondition = rNew; }
|
2010-03-16 11:28:30 +01:00
|
|
|
|
2013-08-15 16:08:35 +02:00
|
|
|
OUString GetLinkFileName() const { return m_sLinkFileName; }
|
|
|
|
void SetLinkFileName(OUString const& rNew, OUString const* pPassWd = 0)
|
2010-03-16 11:28:30 +01:00
|
|
|
{
|
|
|
|
m_sLinkFileName = rNew;
|
|
|
|
if (pPassWd) { SetLinkFilePassword(*pPassWd); }
|
|
|
|
}
|
|
|
|
|
2013-08-15 16:08:35 +02:00
|
|
|
OUString GetLinkFilePassword() const { return m_sLinkFilePassword; }
|
|
|
|
void SetLinkFilePassword(OUString const& rS){ m_sLinkFilePassword = rS; }
|
2010-03-16 11:28:30 +01:00
|
|
|
|
|
|
|
::com::sun::star::uno::Sequence<sal_Int8> const& GetPassword() const
|
|
|
|
{ return m_Password; }
|
|
|
|
void SetPassword(::com::sun::star::uno::Sequence<sal_Int8> const& rNew)
|
|
|
|
{ m_Password = rNew; }
|
|
|
|
bool IsLinkType() const
|
|
|
|
{ return (DDE_LINK_SECTION == m_eType) || (FILE_LINK_SECTION == m_eType); }
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2010-03-16 11:28:30 +01:00
|
|
|
bool IsConnectFlag() const { return m_bConnectFlag; }
|
|
|
|
void SetConnectFlag(bool const bFlag = true){ m_bConnectFlag = bFlag; }
|
2013-08-15 20:10:00 +02:00
|
|
|
|
2014-03-17 09:14:55 +02:00
|
|
|
static OUString CollapseWhiteSpaces(const OUString& sName);
|
2010-03-16 11:28:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class SW_DLLPUBLIC SwSection
|
|
|
|
: public SwClient
|
2000-09-18 16:15:01 +00:00
|
|
|
{
|
2011-04-18 20:18:04 +02:00
|
|
|
// In order to correctly maintain the flag when creating/deleting frames.
|
2000-09-18 16:15:01 +00:00
|
|
|
friend class SwSectionNode;
|
2011-04-18 20:18:04 +02:00
|
|
|
// The "read CTOR" of SwSectionFrm have to change the Hiddenflag.
|
2000-09-18 16:15:01 +00:00
|
|
|
friend class SwSectionFrm;
|
|
|
|
|
2010-03-16 11:28:30 +01:00
|
|
|
private:
|
2013-08-15 16:24:25 +02:00
|
|
|
mutable SwSectionData m_Data;
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2011-04-18 20:18:04 +02:00
|
|
|
SwServerObjectRef m_RefObj; // Set if DataServer.
|
2010-03-16 11:28:31 +01:00
|
|
|
::sfx2::SvBaseLinkRef m_RefLink;
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2014-02-03 14:43:37 +01:00
|
|
|
SAL_DLLPRIVATE void ImplSetHiddenFlag(
|
2010-03-16 11:28:30 +01:00
|
|
|
bool const bHidden, bool const bCondition);
|
2004-11-16 09:19:29 +00:00
|
|
|
|
2010-12-17 09:02:23 +01:00
|
|
|
protected:
|
2014-03-27 18:12:18 +01:00
|
|
|
virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem* pNew ) SAL_OVERRIDE;
|
2010-12-17 09:02:23 +01:00
|
|
|
|
2000-09-18 16:15:01 +00:00
|
|
|
public:
|
2014-03-26 11:54:10 +01:00
|
|
|
TYPEINFO_OVERRIDE(); // rtti
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2013-08-15 16:08:35 +02:00
|
|
|
SwSection(SectionType const eType, OUString const& rName,
|
2010-03-16 11:28:30 +01:00
|
|
|
SwSectionFmt & rFormat);
|
|
|
|
virtual ~SwSection();
|
|
|
|
|
|
|
|
bool DataEquals(SwSectionData const& rCmp) const;
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2010-03-16 11:28:30 +01:00
|
|
|
void SetSectionData(SwSectionData const& rData);
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2013-08-15 16:08:35 +02:00
|
|
|
OUString GetSectionName() const { return m_Data.GetSectionName(); }
|
|
|
|
void SetSectionName(OUString const& rName){ m_Data.SetSectionName(rName); }
|
2010-03-16 11:28:30 +01:00
|
|
|
SectionType GetType() const { return m_Data.GetType(); }
|
|
|
|
void SetType(SectionType const eType) { return m_Data.SetType(eType); }
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2010-12-17 09:02:23 +01:00
|
|
|
SwSectionFmt* GetFmt() { return (SwSectionFmt*)GetRegisteredIn(); }
|
|
|
|
SwSectionFmt* GetFmt() const { return (SwSectionFmt*)GetRegisteredIn(); }
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2011-04-18 20:18:04 +02:00
|
|
|
// Set hidden/protected -> update the whole tree!
|
|
|
|
// (Attributes/flags are set/get.)
|
2010-03-16 11:28:30 +01:00
|
|
|
bool IsHidden() const { return m_Data.IsHidden(); }
|
|
|
|
void SetHidden (bool const bFlag = true);
|
|
|
|
bool IsProtect() const;
|
|
|
|
void SetProtect(bool const bFlag = true);
|
|
|
|
bool IsEditInReadonly() const;
|
|
|
|
void SetEditInReadonly(bool const bFlag = true);
|
2004-11-16 09:19:29 +00:00
|
|
|
|
2011-04-18 20:18:04 +02:00
|
|
|
// Get internal flags (state including parents, not what is
|
|
|
|
// currently set at section!).
|
2010-03-16 11:28:30 +01:00
|
|
|
bool IsHiddenFlag() const { return m_Data.IsHiddenFlag(); }
|
|
|
|
bool IsProtectFlag() const { return m_Data.IsProtectFlag(); }
|
|
|
|
bool IsEditInReadonlyFlag() const { return m_Data.IsEditInReadonlyFlag(); }
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2010-03-16 11:28:30 +01:00
|
|
|
void SetCondHidden(bool const bFlag = true);
|
|
|
|
bool IsCondHidden() const { return m_Data.IsCondHidden(); }
|
2011-04-18 20:18:04 +02:00
|
|
|
// Query (also for parents) if this section is to be hidden.
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_Bool CalcHiddenFlag() const;
|
2000-09-18 16:15:01 +00:00
|
|
|
|
|
|
|
inline SwSection* GetParent() const;
|
|
|
|
|
2013-08-15 16:08:35 +02:00
|
|
|
OUString GetCondition() const { return m_Data.GetCondition(); }
|
|
|
|
void SetCondition(OUString const& rNew) { m_Data.SetCondition(rNew); }
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2013-08-15 16:08:35 +02:00
|
|
|
OUString GetLinkFileName() const;
|
|
|
|
void SetLinkFileName(OUString const& rNew, OUString const*const pPassWd = 0);
|
2011-04-18 20:18:04 +02:00
|
|
|
// Password of linked file (only valid during runtime!)
|
2013-08-15 16:08:35 +02:00
|
|
|
OUString GetLinkFilePassword() const
|
2010-03-16 11:28:30 +01:00
|
|
|
{ return m_Data.GetLinkFilePassword(); }
|
2013-08-15 16:08:35 +02:00
|
|
|
void SetLinkFilePassword(OUString const& rS)
|
2010-03-16 11:28:30 +01:00
|
|
|
{ m_Data.SetLinkFilePassword(rS); }
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2011-04-18 20:18:04 +02:00
|
|
|
// Get / set password of this section
|
2010-03-16 11:28:30 +01:00
|
|
|
::com::sun::star::uno::Sequence<sal_Int8> const& GetPassword() const
|
|
|
|
{ return m_Data.GetPassword(); }
|
|
|
|
void SetPassword(::com::sun::star::uno::Sequence <sal_Int8> const& rNew)
|
|
|
|
{ m_Data.SetPassword(rNew); }
|
2001-02-27 17:46:19 +00:00
|
|
|
|
2011-04-18 20:18:04 +02:00
|
|
|
// Data server methods.
|
2001-03-08 20:28:23 +00:00
|
|
|
void SetRefObject( SwServerObject* pObj );
|
2010-03-16 11:28:31 +01:00
|
|
|
const SwServerObject* GetObject() const { return & m_RefObj; }
|
|
|
|
SwServerObject* GetObject() { return & m_RefObj; }
|
|
|
|
bool IsServer() const { return m_RefObj.Is(); }
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2011-04-18 20:18:04 +02:00
|
|
|
// Methods for linked ranges.
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 GetUpdateType() const { return m_RefLink->GetUpdateMode(); }
|
|
|
|
void SetUpdateType(sal_uInt16 const nType )
|
2010-03-16 11:28:31 +01:00
|
|
|
{ m_RefLink->SetUpdateMode(nType); }
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2010-03-16 11:28:31 +01:00
|
|
|
bool IsConnected() const { return m_RefLink.Is(); }
|
|
|
|
void UpdateNow() { m_RefLink->Update(); }
|
|
|
|
void Disconnect() { m_RefLink->Disconnect(); }
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2010-03-16 11:28:31 +01:00
|
|
|
const ::sfx2::SvBaseLink& GetBaseLink() const { return *m_RefLink; }
|
|
|
|
::sfx2::SvBaseLink& GetBaseLink() { return *m_RefLink; }
|
2000-09-18 16:15:01 +00:00
|
|
|
|
|
|
|
void CreateLink( LinkCreateType eType );
|
|
|
|
|
|
|
|
void MakeChildLinksVisible( const SwSectionNode& rSectNd );
|
|
|
|
|
2010-03-16 11:28:30 +01:00
|
|
|
bool IsLinkType() const { return m_Data.IsLinkType(); }
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2011-04-18 20:18:04 +02:00
|
|
|
// Flags for UI. Did connection work?
|
2010-03-16 11:28:30 +01:00
|
|
|
bool IsConnectFlag() const { return m_Data.IsConnectFlag(); }
|
|
|
|
void SetConnectFlag(bool const bFlag = true)
|
|
|
|
{ m_Data.SetConnectFlag(bFlag); }
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2011-04-18 20:18:04 +02:00
|
|
|
// Return the TOX base class if the section is a TOX section
|
2000-09-18 16:15:01 +00:00
|
|
|
const SwTOXBase* GetTOXBase() const;
|
|
|
|
|
2007-05-10 08:14:42 +00:00
|
|
|
void BreakLink();
|
2010-03-16 11:28:30 +01:00
|
|
|
|
2000-09-18 16:15:01 +00:00
|
|
|
};
|
|
|
|
|
2011-03-31 10:05:04 +02:00
|
|
|
// #i117863#
|
2011-05-13 15:44:49 +02:00
|
|
|
class SwSectionFrmMoveAndDeleteHint : public SfxSimpleHint
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SwSectionFrmMoveAndDeleteHint( const sal_Bool bSaveCntnt )
|
|
|
|
: SfxSimpleHint( SFX_HINT_DYING )
|
|
|
|
, mbSaveCntnt( bSaveCntnt )
|
|
|
|
{}
|
|
|
|
|
2014-04-01 19:18:35 +02:00
|
|
|
virtual ~SwSectionFrmMoveAndDeleteHint()
|
2011-05-13 15:44:49 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
sal_Bool IsSaveCntnt() const
|
|
|
|
{
|
|
|
|
return mbSaveCntnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const sal_Bool mbSaveCntnt;
|
|
|
|
};
|
2000-09-18 16:15:01 +00:00
|
|
|
|
|
|
|
enum SectionSort { SORTSECT_NOT, SORTSECT_NAME, SORTSECT_POS };
|
|
|
|
|
2010-03-16 11:28:35 +01:00
|
|
|
class SW_DLLPUBLIC SwSectionFmt
|
|
|
|
: public SwFrmFmt
|
|
|
|
, public ::sfx2::Metadatable
|
2000-09-18 16:15:01 +00:00
|
|
|
{
|
|
|
|
friend class SwDoc;
|
2004-08-23 07:38:00 +00:00
|
|
|
|
2011-04-18 20:18:04 +02:00
|
|
|
/** Why does this exist in addition to the m_wXObject in SwFrmFmt?
|
2010-01-08 17:13:51 +01:00
|
|
|
in case of an index, both a SwXDocumentIndex and a SwXTextSection
|
|
|
|
register at this SwSectionFmt, so we need to have two refs.
|
|
|
|
*/
|
|
|
|
::com::sun::star::uno::WeakReference<
|
|
|
|
::com::sun::star::text::XTextSection> m_wXTextSection;
|
|
|
|
|
2014-02-03 14:43:37 +01:00
|
|
|
SAL_DLLPRIVATE void UpdateParent(); // Parent has been changed.
|
2000-09-18 16:15:01 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
SwSectionFmt( SwSectionFmt* pDrvdFrm, SwDoc *pDoc );
|
2014-03-27 18:12:18 +01:00
|
|
|
virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem* pNew ) SAL_OVERRIDE;
|
2000-09-18 16:15:01 +00:00
|
|
|
|
|
|
|
public:
|
2014-03-26 11:54:10 +01:00
|
|
|
TYPEINFO_OVERRIDE(); // Already contained in base class client.
|
2014-04-01 19:18:35 +02:00
|
|
|
virtual ~SwSectionFmt();
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2011-04-18 20:18:04 +02:00
|
|
|
// Deletes all Frms in aDepend (Frms are recognized via PTR_CAST).
|
2014-03-27 18:12:18 +01:00
|
|
|
virtual void DelFrms() SAL_OVERRIDE;
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2011-04-18 20:18:04 +02:00
|
|
|
// Creates views.
|
2014-03-27 18:12:18 +01:00
|
|
|
virtual void MakeFrms() SAL_OVERRIDE;
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2011-04-18 20:18:04 +02:00
|
|
|
// Get information from Format.
|
2014-03-27 18:12:18 +01:00
|
|
|
virtual bool GetInfo( SfxPoolItem& ) const SAL_OVERRIDE;
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2010-03-16 11:28:35 +01:00
|
|
|
SwSection* GetSection() const;
|
2000-09-18 16:15:01 +00:00
|
|
|
inline SwSectionFmt* GetParent() const;
|
|
|
|
inline SwSection* GetParentSection() const;
|
|
|
|
|
2011-04-18 20:18:04 +02:00
|
|
|
// All sections that are derived from this one:
|
|
|
|
// - sorted according to name or position or unsorted
|
|
|
|
// - all of them or only those that are in the normal Nodes-array.
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 GetChildSections( SwSections& rArr,
|
2000-09-18 16:15:01 +00:00
|
|
|
SectionSort eSort = SORTSECT_NOT,
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_Bool bAllSections = sal_True ) const;
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2011-04-18 20:18:04 +02:00
|
|
|
// Query whether section is in Nodes-array or in UndoNodes-array.
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_Bool IsInNodesArr() const;
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2010-03-16 11:28:35 +01:00
|
|
|
SwSectionNode* GetSectionNode(bool const bEvenIfInUndo = false);
|
|
|
|
const SwSectionNode* GetSectionNode(bool const bEvenIfInUndo = false) const
|
|
|
|
{ return const_cast<SwSectionFmt *>(this)
|
|
|
|
->GetSectionNode(bEvenIfInUndo); }
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2011-04-18 20:18:04 +02:00
|
|
|
// Is section a valid one for global document?
|
2000-09-18 16:15:01 +00:00
|
|
|
const SwSection* GetGlobalDocSection() const;
|
2010-01-08 17:13:51 +01:00
|
|
|
|
2014-02-03 14:43:37 +01:00
|
|
|
SAL_DLLPRIVATE ::com::sun::star::uno::WeakReference<
|
2010-01-08 17:13:51 +01:00
|
|
|
::com::sun::star::text::XTextSection> const& GetXTextSection() const
|
|
|
|
{ return m_wXTextSection; }
|
2014-02-03 14:43:37 +01:00
|
|
|
SAL_DLLPRIVATE void SetXTextSection(::com::sun::star::uno::Reference<
|
2010-01-08 17:13:51 +01:00
|
|
|
::com::sun::star::text::XTextSection> const& xTextSection)
|
|
|
|
{ m_wXTextSection = xTextSection; }
|
|
|
|
|
2010-03-16 11:28:35 +01:00
|
|
|
// sfx2::Metadatable
|
2014-03-27 18:12:18 +01:00
|
|
|
virtual ::sfx2::IXmlIdRegistry& GetRegistry() SAL_OVERRIDE;
|
|
|
|
virtual bool IsInClipboard() const SAL_OVERRIDE;
|
|
|
|
virtual bool IsInUndo() const SAL_OVERRIDE;
|
|
|
|
virtual bool IsInContent() const SAL_OVERRIDE;
|
2010-03-16 11:28:35 +01:00
|
|
|
virtual ::com::sun::star::uno::Reference<
|
2014-03-27 18:12:18 +01:00
|
|
|
::com::sun::star::rdf::XMetadatable > MakeUnoObject() SAL_OVERRIDE;
|
2010-03-16 11:28:35 +01:00
|
|
|
|
2000-09-18 16:15:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// -------------- inlines ---------------------------------
|
|
|
|
|
|
|
|
inline SwSection* SwSection::GetParent() const
|
|
|
|
{
|
2007-09-27 07:09:33 +00:00
|
|
|
SwSectionFmt* pFmt = GetFmt();
|
|
|
|
SwSection* pRet = 0;
|
2000-09-18 16:15:01 +00:00
|
|
|
if( pFmt )
|
|
|
|
pRet = pFmt->GetParentSection();
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline SwSectionFmt* SwSectionFmt::GetParent() const
|
|
|
|
{
|
2007-09-27 07:09:33 +00:00
|
|
|
SwSectionFmt* pRet = 0;
|
2000-09-18 16:15:01 +00:00
|
|
|
if( GetRegisteredIn() )
|
|
|
|
pRet = PTR_CAST( SwSectionFmt, GetRegisteredIn() );
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline SwSection* SwSectionFmt::GetParentSection() const
|
|
|
|
{
|
2007-09-27 07:09:33 +00:00
|
|
|
SwSectionFmt* pParent = GetParent();
|
|
|
|
SwSection* pRet = 0;
|
2000-09-18 16:15:01 +00:00
|
|
|
if( pParent )
|
2010-03-16 11:28:35 +01:00
|
|
|
{
|
|
|
|
pRet = pParent->GetSection();
|
|
|
|
}
|
2000-09-18 16:15:01 +00:00
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
|
2013-11-05 02:17:53 +01:00
|
|
|
#endif /* _ INCLUDED_SW_INC_SECTION_HXX */
|
2010-10-14 08:30:41 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|