Files
libreoffice/sw/source/core/layout/objectformattertxtfrm.hxx
Kurt Zenker ca104a3cda INTEGRATION: CWS swobjpos04 (1.1.2); FILE ADDED
2004/07/22 08:55:24 od 1.1.2.4: #i28701# - further adjustments for the new object positioning algorithm
2004/07/12 08:15:40 od 1.1.2.3: #i28701# - further adjustments for the new object positioning algorithm
2004/07/02 14:58:25 od 1.1.2.2: #i28701# - further adjustments for the new object positioning
2004/06/30 15:04:11 od 1.1.2.1: #i28701# - implementation of new class <SwObjectFormatter> and
	   declaration and implementation of its subclasses
2004-08-02 13:11:58 +00:00

168 lines
6.0 KiB
C++

/*************************************************************************
*
* $RCSfile: objectformattertxtfrm.hxx,v $
*
* $Revision: 1.2 $
*
* last change: $Author: kz $ $Date: 2004-08-02 14:11:58 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library 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 for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (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.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#ifndef _OBJECTFORMATTERTXTFRM_HXX
#define _OBJECTFORMATTERTXTFRM_HXX
#ifndef _OBJECTFORMATTER_HXX
#include <objectformatter.hxx>
#endif
#ifndef _SAL_TYPES_H_
#include <sal/types.h>
#endif
class SwTxtFrm;
// -----------------------------------------------------------------------------
// OD 2004-07-01 #i28701#
// Format floating screen objects, which are anchored at a given anchor text frame
// and registered at the given page frame.
// -----------------------------------------------------------------------------
class SwObjectFormatterTxtFrm : public SwObjectFormatter
{
private:
// anchor text frame
SwTxtFrm& mrAnchorTxtFrm;
// 'master' anchor text frame
SwTxtFrm* mpMasterAnchorTxtFrm;
SwObjectFormatterTxtFrm( SwTxtFrm& _rAnchorTxtFrm,
const SwPageFrm& _rPageFrm,
SwTxtFrm* _pMasterAnchorTxtFrm,
SwLayAction* _pLayAction );
/* method to invalidate objects, anchored previous to given object at
the anchor text frame
@param _rAnchoredObj
reference to anchored object - objects, anchored previous to
this one will be invalidated.
@author OD
*/
void _InvalidatePrevObjs( SwAnchoredObject& _rAnchoredObj );
/* method to invalidate objects, anchored after the given object at
the page frame
@param _rAnchoredObj
reference to anchored object - objects, anchored after this one will
be invalidated.
@param _bInclObj
boolean indicates, if given anchored object <_rAnchoredObj> also have
to be invalidated.
@author OD
*/
void _InvalidateFollowObjs( SwAnchoredObject& _rAnchoredObj,
const bool _bInclObj );
/** method to determine first anchored object, whose 'anchor is moved
forward', anchored at the anchor text frame
'anchor (of an object) is moved forward', if the anchor frame
respectively the anchor character of the object isn't on the
proposed page frame. Instead its on a following page
@author OD
@param _nWrapInfluenceOnPosition
input parameter - only object with this given wrapping style
influence are investigated.
@param _nFromPageNum
input parameter - number of page frame, the 'anchor' should be
@param _noToPageNum
output parameter - number of page frame, the 'anchor' of the returned
anchored object is.
@return SwAnchoredObject*
anchored object with a 'moved forward anchor'. If NULL, no such
anchored object is found.
*/
SwAnchoredObject* _GetFirstObjWithMovedFwdAnchor(
const sal_Int16 _nWrapInfluenceOnPosition,
sal_uInt32& _noToPageNum );
protected:
virtual SwFrm& GetAnchorFrm();
public:
virtual ~SwObjectFormatterTxtFrm();
virtual bool DoFormatObj( SwAnchoredObject& _rAnchoredObj );
virtual bool DoFormatObjs();
/** method to create an instance of <SwObjectFormatterTxtFrm> is
necessary.
@author OD
*/
static SwObjectFormatterTxtFrm* CreateObjFormatter(
SwTxtFrm& _rAnchorTxtFrm,
const SwPageFrm& _rPageFrm,
SwLayAction* _pLayAction );
};
#endif