1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: node2lay.hxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
33 #include <tools/solar.h>
35 /* -----------------23.02.99 11:33-------------------
36 * Die Klasse SwNode2Layout stellt die Verbindung von Nodes zum Layout her.
37 * Sie liefert einen intelligenten Iterator ueber die zum Node oder Nodebereich
38 * gehoerenden Frames. Je nach Zweck der Iteration, z.B. um vor oder hinter
39 * den Frames andere Frames einzufuegen, werden Master/Follows erkannt und nur
40 * die relevanten zurueckgegeben. Auch wiederholte Tabellenueberschriften werden
42 * Es ist auch moeglich, ueber SectionNodes zu iterieren, die durch Schachtelung
43 * manchmal gar keinem SectionFrm direkt zugeordnet sind, manchmal aber sogar
45 * SwNode2Layout ist ein Schnittstelle zwischen der aufrufenden Methode und
46 * einem SwClientIter, sie waehlt je nach Aufgabenstellung das richtige
47 * SwModify aus, erzeugt einen SwClientIter und filtert dessen Iterationen
48 * je nach Aufgabenstellung.
49 * Die Aufgabenstellung wird durch die Wahl des Ctors bestimmt.
50 * 1. Das Einsammeln der UpperFrms, damit spaeter RestoreUpperFrms wird,
51 * wird von MakeFrms gerufen, wenn es keinen PrevNext gibt, vor/hinter den
52 * die Frames gehaengt werden koennen.
53 * 2. Die Lieferung der Frames hinter/vor die die neuen Frames eines Nodes
54 * gehaengt werden muessen, ebenfalls von MakeFrms gerufen.
55 * --------------------------------------------------*/
67 SwNode2LayImpl
*pImpl
;
69 // Dieser Ctor ist zum Einsammeln der UpperFrms gedacht.
70 SwNode2Layout( const SwNode
& rNd
);
71 // Dieser Ctor ist fuer das Einfuegen vor oder hinter rNd gedacht,
72 // nIdx ist der Index des einzufuegenden Nodes
73 SwNode2Layout( const SwNode
& rNd
, ULONG nIdx
);
76 SwLayoutFrm
* UpperFrm( SwFrm
* &rpFrm
, const SwNode
& rNode
);
77 void RestoreUpperFrms( SwNodes
& rNds
, ULONG nStt
, ULONG nEnd
);
79 SwFrm
*GetFrm( const Point
* pDocPos
= 0,
80 const SwPosition
*pPos
= 0,
81 const BOOL bCalcFrm
= TRUE
) const;