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.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2000-09-18 16:15:01 +00:00
|
|
|
#ifndef _FMTPDSC_HXX
|
|
|
|
#define _FMTPDSC_HXX
|
|
|
|
|
|
|
|
|
2009-10-16 00:05:16 +02:00
|
|
|
#include <svl/poolitem.hxx>
|
2004-08-23 07:34:51 +00:00
|
|
|
#include "swdllapi.h"
|
2000-09-18 16:15:01 +00:00
|
|
|
#include <hintids.hxx>
|
|
|
|
#include <format.hxx>
|
|
|
|
#include <calbck.hxx>
|
|
|
|
|
|
|
|
class SwPageDesc;
|
|
|
|
class SwHistory;
|
|
|
|
class SwPaM;
|
2001-05-13 02:33:31 +00:00
|
|
|
class IntlWrapper;
|
2010-12-17 09:02:23 +01:00
|
|
|
class SwEndNoteInfo;
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2012-09-02 09:05:03 +03:00
|
|
|
/** Pagedescriptor
|
|
|
|
Client of SwPageDesc that is "described" by the attribute. */
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2004-08-23 07:34:51 +00:00
|
|
|
class SW_DLLPUBLIC SwFmtPageDesc : public SfxPoolItem, public SwClient
|
2000-09-18 16:15:01 +00:00
|
|
|
{
|
2012-09-02 09:05:03 +03:00
|
|
|
/** This "Doc"-function is made friend in order to be able
|
|
|
|
to set the auto-flag after copying!! */
|
2011-01-17 15:06:54 +01:00
|
|
|
friend sal_Bool InsAttr( SwDoc*, const SwPaM &, const SfxItemSet&, sal_uInt16,
|
2000-09-18 16:15:01 +00:00
|
|
|
SwHistory* );
|
2012-09-02 09:05:03 +03:00
|
|
|
sal_uInt16 nNumOffset; ///< Offset page number.
|
|
|
|
sal_uInt16 nDescNameIdx; ///< SW3-Reader: stringpool-index of style name.
|
|
|
|
SwModify* pDefinedIn; /**< Points to the object in which the
|
|
|
|
attribute was set (CntntNode/Format). */
|
2010-12-17 09:02:23 +01:00
|
|
|
protected:
|
2010-12-21 19:33:34 +01:00
|
|
|
virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew );
|
|
|
|
virtual void SwClientNotify( const SwModify&, const SfxHint& rHint );
|
2000-09-18 16:15:01 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
SwFmtPageDesc( const SwPageDesc *pDesc = 0 );
|
|
|
|
SwFmtPageDesc( const SwFmtPageDesc &rCpy );
|
|
|
|
SwFmtPageDesc &operator=( const SwFmtPageDesc &rCpy );
|
|
|
|
~SwFmtPageDesc();
|
|
|
|
|
|
|
|
TYPEINFO();
|
|
|
|
|
2012-09-02 09:05:03 +03:00
|
|
|
/// "Pure virtual methods" of SfxPoolItem.
|
2000-09-18 16:15:01 +00:00
|
|
|
virtual int operator==( const SfxPoolItem& ) const;
|
|
|
|
virtual SfxPoolItem* Clone( SfxItemPool* pPool = 0 ) const;
|
|
|
|
virtual SfxItemPresentation GetPresentation( SfxItemPresentation ePres,
|
|
|
|
SfxMapUnit eCoreMetric,
|
|
|
|
SfxMapUnit ePresMetric,
|
2013-01-23 12:41:52 +01:00
|
|
|
OUString &rText,
|
2001-05-13 02:33:31 +00:00
|
|
|
const IntlWrapper* pIntl = 0 ) const;
|
2011-03-14 16:51:14 +00:00
|
|
|
virtual bool QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const;
|
|
|
|
virtual bool PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 );
|
2000-09-18 16:15:01 +00:00
|
|
|
|
|
|
|
SwPageDesc *GetPageDesc() { return (SwPageDesc*)GetRegisteredIn(); }
|
|
|
|
const SwPageDesc *GetPageDesc() const { return (SwPageDesc*)GetRegisteredIn(); }
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 GetNumOffset() const { return nNumOffset; }
|
|
|
|
void SetNumOffset( sal_uInt16 nNum ) { nNumOffset = nNum; }
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2012-09-02 09:05:03 +03:00
|
|
|
/// Query / set where attribute is anchored.
|
2000-09-18 16:15:01 +00:00
|
|
|
inline const SwModify* GetDefinedIn() const { return pDefinedIn; }
|
|
|
|
void ChgDefinedIn( const SwModify* pNew ) { pDefinedIn = (SwModify*)pNew; }
|
2010-12-17 09:02:23 +01:00
|
|
|
void RegisterToEndNotInfo( SwEndNoteInfo& );
|
|
|
|
void RegisterToPageDesc( SwPageDesc& );
|
|
|
|
bool KnowsPageDesc() const;
|
2000-09-18 16:15:01 +00:00
|
|
|
};
|
|
|
|
|
2002-08-23 12:24:47 +00:00
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
inline const SwFmtPageDesc &SwAttrSet::GetPageDesc(sal_Bool bInP) const
|
2000-09-18 16:15:01 +00:00
|
|
|
{ return (const SwFmtPageDesc&)Get( RES_PAGEDESC,bInP); }
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
inline const SwFmtPageDesc &SwFmt::GetPageDesc(sal_Bool bInP) const
|
2000-09-18 16:15:01 +00:00
|
|
|
{ return aSet.GetPageDesc(bInP); }
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-10-14 08:30:41 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|