Files
libreoffice/sw/source/core/inc/flyfrms.hxx

252 lines
7.6 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2000-09-18 23:08:29 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 23:08:29 +00:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2000-09-18 23:08:29 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 23:08:29 +00:00
*
* This file is part of OpenOffice.org.
2000-09-18 23:08:29 +00:00
*
* 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.
2000-09-18 23:08:29 +00:00
*
* 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).
2000-09-18 23:08:29 +00:00
*
* 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.
2000-09-18 23:08:29 +00:00
*
************************************************************************/
#ifndef _FLYFRMS_HXX
#define _FLYFRMS_HXX
#include "flyfrm.hxx"
// #i28701#
class SwFlyAtCntFrm;
2000-09-18 23:08:29 +00:00
//Basisklasse fuer diejenigen Flys, die sich relativ frei Bewegen koennen -
//also die nicht _im_ Inhalt gebundenen Flys.
class SwFlyFreeFrm : public SwFlyFrm
{
SwPageFrm *pPage; //Bei dieser Seite ist der Fly angemeldet.
// #i34753# - flag for at-page anchored Writer fly frames
// to prevent a positioning - call of method <MakeObjPos()> -, if Writer
// fly frame is already clipped during its format by the object formatter.
bool mbNoMakePos;
// #i37068# - flag to prevent move in method
// <CheckClip(..)>
bool mbNoMoveOnCheckClip;
2000-09-18 23:08:29 +00:00
void CheckClip( const SwFmtFrmSize &rSz ); //'Emergency' Clipping.
/** determines, if direct environment of fly frame has 'auto' size
2011-02-05 18:00:33 +01:00
#i17297#
start with anchor frame and search for a header, footer, row or fly frame
stopping at page frame.
return <true>, if such a frame is found and it has 'auto' size.
otherwise <false> is returned.
@author OD
@return boolean indicating, that direct environment has 'auto' size
*/
bool HasEnvironmentAutoSize() const;
2000-09-18 23:08:29 +00:00
protected:
2011-02-05 18:00:33 +01:00
// #i28701# - new friend class <SwFlyNotify> for access to
// method <NotifyBackground>
friend class SwFlyNotify;
2000-09-18 23:08:29 +00:00
virtual void NotifyBackground( SwPageFrm *pPage,
const SwRect& rRect, PrepareHint eHint);
SwFlyFreeFrm( SwFlyFrmFmt*, SwFrm*, SwFrm *pAnchor );
2000-09-18 23:08:29 +00:00
public:
// #i28701#
TYPEINFO();
2000-09-18 23:08:29 +00:00
virtual ~SwFlyFreeFrm();
virtual void MakeAll();
// #i37068# - accessors for member <mbNoMoveOnCheckClip>
inline void SetNoMoveOnCheckClip( const bool _bNewNoMoveOnCheckClip )
{
mbNoMoveOnCheckClip = _bNewNoMoveOnCheckClip;
}
inline bool IsNoMoveOnCheckClip() const
{
return mbNoMoveOnCheckClip;
}
// #i34753# - accessors for member <mbNoMakePos>
inline void SetNoMakePos( const bool _bNoMakePos )
{
if ( IsFlyLayFrm() )
{
mbNoMakePos = _bNoMakePos;
}
}
inline bool IsNoMakePos() const
{
if ( IsFlyLayFrm() )
{
return mbNoMakePos;
}
else
{
return false;
}
}
/** method to determine, if a format on the Writer fly frame is possible
2011-02-05 18:00:33 +01:00
#i28701#
refine 'IsFormatPossible'-conditions of method
<SwFlyFrm::IsFormatPossible()> by:
format isn't possible, if Writer fly frame isn't registered at a page frame
and its anchor frame isn't inside another Writer fly frame.
*/
virtual bool IsFormatPossible() const;
2000-09-18 23:08:29 +00:00
};
//Die Fly's, die an einem Layoutfrm haengen und nicht inhaltsgebunden sind
class SwFlyLayFrm : public SwFlyFreeFrm
{
public:
// #i28701#
TYPEINFO();
SwFlyLayFrm( SwFlyFrmFmt*, SwFrm*, SwFrm *pAnchor );
2000-09-18 23:08:29 +00:00
SwFlyLayFrm( SwFlyLayFrm& );
protected:
virtual void Modify( const SfxPoolItem*, const SfxPoolItem* );
2000-09-18 23:08:29 +00:00
};
//Die Flys, die an einem Cntnt haengen nicht aber im Inhalt
class SwFlyAtCntFrm : public SwFlyFreeFrm
{
protected:
virtual void MakeAll();
2011-02-05 18:00:33 +01:00
// #i28701#
virtual bool _InvalidationAllowed( const InvalidationType _nInvalid ) const;
/** method to assure that anchored object is registered at the correct
page frame
2011-02-05 18:00:33 +01:00
#i28701#
*/
virtual void RegisterAtCorrectPage();
virtual void Modify( const SfxPoolItem*, const SfxPoolItem* );
2000-09-18 23:08:29 +00:00
public:
// #i28701#
TYPEINFO();
SwFlyAtCntFrm( SwFlyFrmFmt*, SwFrm*, SwFrm *pAnchor );
2000-09-18 23:08:29 +00:00
void SetAbsPos( const Point &rNew );
2011-02-05 18:00:33 +01:00
// #i26791#
virtual void MakeObjPos();
2000-09-18 23:08:29 +00:00
/** method to determine, if a format on the Writer fly frame is possible
2011-02-05 18:00:33 +01:00
#i28701#
refine 'IsFormatPossible'-conditions of method
<SwFlyFreeFrm::IsFormatPossible()> by:
format isn't possible, if method <MakeAll()> is already in progress.
*/
virtual bool IsFormatPossible() const;
2000-09-18 23:08:29 +00:00
};
//Die Flys, die an einem Zeichen in einem Cntnt haengen.
class SwFlyInCntFrm : public SwFlyFrm
{
Point aRef; //Relativ zu diesem Point wird die AbsPos berechnet.
long nLine; //Zeilenhoehe, Ref.Y() - nLine == Zeilenanfang.
sal_Bool bInvalidLayout :1;
sal_Bool bInvalidCntnt :1;
2000-09-18 23:08:29 +00:00
protected:
virtual void NotifyBackground( SwPageFrm *pPage,
const SwRect& rRect, PrepareHint eHint);
virtual void MakeAll();
virtual void Modify( const SfxPoolItem*, const SfxPoolItem* );
2000-09-18 23:08:29 +00:00
public:
// #i28701#
TYPEINFO();
SwFlyInCntFrm( SwFlyFrmFmt*, SwFrm*, SwFrm *pAnchor );
2000-09-18 23:08:29 +00:00
virtual ~SwFlyInCntFrm();
virtual void Format( const SwBorderAttrs *pAttrs = 0 );
void SetRefPoint( const Point& rPoint, const Point &rRelAttr,
const Point &rRelPos );
2000-09-18 23:08:29 +00:00
const Point &GetRefPoint() const { return aRef; }
const Point GetRelPos() const;
2000-09-18 23:08:29 +00:00
long GetLineHeight() const { return nLine; }
inline void InvalidateLayout() const;
inline void InvalidateCntnt() const;
inline void ValidateLayout() const;
inline void ValidateCntnt() const;
sal_Bool IsInvalid() const { return (bInvalidLayout || bInvalidCntnt); }
sal_Bool IsInvalidLayout() const { return bInvalidLayout; }
sal_Bool IsInvalidCntnt() const { return bInvalidCntnt; }
2000-09-18 23:08:29 +00:00
//BP 26.11.93: vgl. tabfrm.hxx, gilt bestimmt aber fuer andere auch...
//Zum Anmelden der Flys nachdem ein FlyCnt erzeugt _und_ eingefuegt wurde.
//Muss vom Erzeuger gerufen werden, denn erst nach dem Konstruieren wird
//Das Teil gepastet; mithin ist auch erst dann die Seite zum Anmelden der
//Flys erreichbar.
void RegistFlys();
//siehe layact.cxx
void AddRefOfst( long nOfst ) { aRef.Y() += nOfst; }
2011-02-05 18:00:33 +01:00
// #i26791#
virtual void MakeObjPos();
// invalidate anchor frame on invalidation
// of the position, because the position is calculated during the
// format of the anchor frame
virtual void _ActionOnInvalidation( const InvalidationType _nInvalid );
2000-09-18 23:08:29 +00:00
};
inline void SwFlyInCntFrm::InvalidateLayout() const
{
((SwFlyInCntFrm*)this)->bInvalidLayout = sal_True;
2000-09-18 23:08:29 +00:00
}
inline void SwFlyInCntFrm::InvalidateCntnt() const
{
((SwFlyInCntFrm*)this)->bInvalidCntnt = sal_True;
2000-09-18 23:08:29 +00:00
}
inline void SwFlyInCntFrm::ValidateLayout() const
{
((SwFlyInCntFrm*)this)->bInvalidLayout = sal_False;
2000-09-18 23:08:29 +00:00
}
inline void SwFlyInCntFrm::ValidateCntnt() const
{
((SwFlyInCntFrm*)this)->bInvalidCntnt = sal_False;
2000-09-18 23:08:29 +00:00
}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */