xref: /aoo42x/main/sw/inc/fesh.hxx (revision b3b0b271)
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 #ifndef _FESH_HXX
28 #define _FESH_HXX
29 
30 #include <com/sun/star/text/RelOrientation.hpp>
31 #include <com/sun/star/embed/XClassifiedObject.hpp>
32 #include <com/sun/star/embed/XEmbeddedObject.hpp>
33 
34 #include <svx/svdobj.hxx>
35 #include "swdllapi.h"
36 #include <editsh.hxx>
37 #include <flyenum.hxx>
38 
39 // OD 25.06.2003 #108784#
40 #include <svx/svdtypes.hxx>
41 
42 #include <svtools/embedhlp.hxx>
43 
44 #ifndef INCLUDED_VECTOR
45 #include <vector>
46 #define INCLUDED_VECTOR
47 #endif
48 
49 
50 class SwFlyFrm;
51 class SwTabCols;
52 class SvxBrushItem;
53 class SvxFrameDirectionItem;
54 class SwTableAutoFmt;
55 class SwFrm;
56 class SwFmtFrmSize;
57 class SwFmtRowSplit;
58 class SvxBorderLine;
59 class SdrObject;
60 class Color;
61 class Outliner;
62 class SotDataObject;
63 class SwFrmFmt;
64 struct SwSortOptions;
65 class SdrMarkList;
66 
67 namespace svx
68 {
69     class ISdrObjectFilter;
70 }
71 
72 
73 // return values for GetFrmType() und GetSelFrmType().
74 //! values can be combined via logival or
75 #define FRMTYPE_NONE			(sal_uInt16)     0
76 #define FRMTYPE_PAGE			(sal_uInt16)     1
77 #define FRMTYPE_HEADER			(sal_uInt16)     2
78 #define FRMTYPE_FOOTER			(sal_uInt16)     4
79 #define FRMTYPE_BODY			(sal_uInt16)     8
80 #define FRMTYPE_COLUMN			(sal_uInt16)    16
81 #define FRMTYPE_TABLE			(sal_uInt16)    32
82 #define FRMTYPE_FLY_FREE		(sal_uInt16)    64
83 #define FRMTYPE_FLY_ATCNT		(sal_uInt16)   128
84 #define FRMTYPE_FLY_INCNT		(sal_uInt16)   256
85 #define FRMTYPE_FOOTNOTE		(sal_uInt16)   512
86 #define FRMTYPE_FTNPAGE			(sal_uInt16)  1024
87 #define FRMTYPE_FLY_ANY			(sal_uInt16)  2048
88 #define FRMTYPE_DRAWOBJ			(sal_uInt16)  4096
89 #define FRMTYPE_COLSECT			(sal_uInt16)  8192
90 #define FRMTYPE_COLSECTOUTTAB 	(sal_uInt16) 16384
91 
92 #define FRMTYPE_ANYCOLSECT ( FRMTYPE_COLSECT | FRMTYPE_COLSECTOUTTAB )
93 
94 //! values can be combined via logival or
95 #define GOTOOBJ_DRAW_CONTROL 	(sal_uInt16)  1
96 #define GOTOOBJ_DRAW_SIMPLE 	(sal_uInt16)  2
97 #define GOTOOBJ_DRAW_ANY 		(sal_uInt16)  3
98 #define GOTOOBJ_FLY_FRM 		(sal_uInt16)  4
99 #define GOTOOBJ_FLY_GRF 		(sal_uInt16)  8
100 #define GOTOOBJ_FLY_OLE 		(sal_uInt16) 16
101 #define GOTOOBJ_FLY_ANY 		(sal_uInt16) 28
102 #define GOTOOBJ_GOTO_ANY 		(sal_uInt16) 31
103 
104 //! values can be combined via logival or
105 #define FLYPROTECT_CONTENT		(sal_uInt16)  1		// kann verodert werden!
106 #define FLYPROTECT_SIZE			(sal_uInt16)  2
107 #define FLYPROTECT_POS			(sal_uInt16)  4
108 #define FLYPROTECT_PARENT 		(sal_uInt16)  8 	// nur Parents untersuchen
109 #define FLYPROTECT_FIXED		(sal_uInt16) 16		// nur nicht aufhebbarer Schutz
110 												// z.B. durch OLE-Server, gilt auch
111 												// fuer Dialog
112 
113 
114 enum ObjCntType		//Fuer das Ermitteln des Cntnts per Positon (D&D)
115 {
116 	OBJCNT_NONE,
117 	OBJCNT_FLY,
118 	OBJCNT_GRF,
119 	OBJCNT_OLE,
120 	OBJCNT_SIMPLE,
121 	OBJCNT_CONTROL,
122 	OBJCNT_URLBUTTON,
123 
124 	OBJCNT_GROUPOBJ,
125 	OBJCNT_DONTCARE		// nicht bestimmbar - unterschiedliche Objecte selektiert
126 };
127 
128 //fuer GetAnyCurRect
129 enum CurRectType
130 {
131 	RECT_PAGE,					//Rect der aktuellen Seite.
132 	RECT_PAGE_CALC,				//... Seite wird ggf. Formatiert
133 	RECT_PAGE_PRT,              //Rect der aktuellen PrtArea der Seite
134 	RECT_FRM,                   //Rect des aktuellen Rahmen
135 	RECT_FLY_EMBEDDED,          //Rect des aktuellen FlyFrm
136 	RECT_FLY_PRT_EMBEDDED,      //Rect der PrtArea des FlyFrm
137 	RECT_SECTION,				//Rect des aktuellen Bereichs
138 	RECT_OUTTABSECTION,			//Rect des aktuellen Bereichs,
139 								// aber ausserhalb der Tabelle
140 	RECT_SECTION_PRT,  			//Rect der aktuellen PrtArea des Bereichs
141 	RECT_OUTTABSECTION_PRT, 	//Rect der aktuellen PrtArea des Bereichs,
142 								// aber ausserhalb der Tabelle
143 	RECT_HEADERFOOTER,     		//Rect des aktuellen Headers/Footer
144     RECT_HEADERFOOTER_PRT,      //Rect der PrtArea des aktuellen Headers/Footers
145 
146     RECT_PAGES_AREA             //Rect covering the pages area
147 };
148 
149 struct SwGetCurColNumPara
150 {
151 	const SwFrmFmt* pFrmFmt;
152 	const SwRect* pPrtRect, *pFrmRect;
153 	SwGetCurColNumPara() : pFrmFmt( 0 ), pPrtRect( 0 ), pFrmRect( 0 ) {}
154 };
155 
156 #define SW_PASTESDR_INSERT		1
157 #define SW_PASTESDR_REPLACE		2
158 #define SW_PASTESDR_SETATTR		3
159 
160 #define SW_ADD_SELECT   1
161 #define SW_ENTER_GROUP  2
162 #define SW_LEAVE_FRAME  4
163 
164 #define SW_MOVE_UP      0
165 #define SW_MOVE_DOWN    1
166 #define SW_MOVE_LEFT    2
167 #define SW_MOVE_RIGHT   3
168 
169 #define SW_TABCOL_NONE          0
170 #define SW_TABCOL_HORI          1
171 #define SW_TABCOL_VERT          2
172 #define SW_TABROW_HORI          3
173 #define SW_TABROW_VERT          4
174 // --> FME 2004-07-30 #i32329# Enhanced table selection
175 #define SW_TABSEL_HORI          5
176 #define SW_TABSEL_HORI_RTL      6
177 #define SW_TABROWSEL_HORI       7
178 #define SW_TABROWSEL_HORI_RTL   8
179 #define SW_TABCOLSEL_HORI       9
180 #define SW_TABSEL_VERT          10
181 #define SW_TABROWSEL_VERT       11
182 #define SW_TABCOLSEL_VERT       12
183 // <--
184 
185 class SdrDropMarkerOverlay;
186 
187 class SW_DLLPUBLIC SwFEShell : public SwEditShell
188 {
189 	SdrDropMarkerOverlay *pChainFrom, *pChainTo;
190 	sal_Bool bCheckForOLEInCaption;
191 
192 	SW_DLLPRIVATE SwFlyFrm *FindFlyFrm() const;
193     SW_DLLPRIVATE SwFlyFrm *FindFlyFrm( const ::com::sun::star::uno::Reference < ::com::sun::star::embed::XEmbeddedObject >&  ) const;
194 
195 	//Actions fuer alle Shells beenden und ChangeLink rufen.
196 	SW_DLLPRIVATE void EndAllActionAndCall();
197 
198 	SW_DLLPRIVATE void ScrollTo( const Point &rPt );
199 
200     // OD 25.06.2003 #108784# - correct type of 1st parameter
201     SW_DLLPRIVATE void ChangeOpaque( SdrLayerID nLayerId );
202 
203     // Used for mouse operations on a table:
204     // Returns a cell frame that is 'close' to rPt.
205     SW_DLLPRIVATE const SwFrm *GetBox( const Point &rPt, bool* pbRow = 0, bool* pbCol = 0 ) const;
206 
207 	//0 == in keiner Spalte
208 	SW_DLLPRIVATE sal_uInt16 _GetCurColNum( const SwFrm *pFrm,
209 						  SwGetCurColNumPara* pPara ) const;
210 
211     SW_DLLPRIVATE void _GetTabCols( SwTabCols &rToFill, const SwFrm *pBox ) const;
212     SW_DLLPRIVATE void _GetTabRows( SwTabCols &rToFill, const SwFrm *pBox ) const;
213 
214 	SW_DLLPRIVATE sal_Bool ImpEndCreate();
215 
216 	SW_DLLPRIVATE ObjCntType GetObjCntType( const SdrObject& rObj ) const;
217 
218 	// Methoden fuers kopieren von DrawObjecten
219 	SW_DLLPRIVATE sal_Bool CopyDrawSel( SwFEShell* pDestShell, const Point& rSttPt,
220 								const Point& rInsPt, sal_Bool bIsMove,
221 								sal_Bool bSelectInsert );
222 
223     // get list of marked SdrObjects;
224     // helper method for GetSelFrmType, IsSelContainsControl
225     SW_DLLPRIVATE const SdrMarkList* _GetMarkList() const;
226 
227     SW_DLLPRIVATE sal_Bool CheckHeadline( bool bRepeat ) const;
228 
229     using SwEditShell::Copy;
230 
231 public:
232 
233     using SwEditShell::Insert;
234 
235 	TYPEINFO();
236     SwFEShell( SwDoc& rDoc, Window *pWin, const SwViewOption *pOpt = 0 );
237 	SwFEShell( SwEditShell& rShell, Window *pWin );
238 	virtual ~SwFEShell();
239 
240 	// Copy und Paste Methoden fuer das interne Clipboard
241 	sal_Bool Copy( SwDoc* pClpDoc, const String* pNewClpTxt = 0 );
242     sal_Bool Paste( SwDoc* pClpDoc, sal_Bool bIncludingPageFrames = sal_False);
243     //paste some pages into another doc - used in mailmerge
244     sal_Bool PastePages( SwFEShell& rToFill, sal_uInt16 nStartPage, sal_uInt16 nEndPage);
245 	// Copy-Methode fuer Drag&Drop
246 	sal_Bool Copy( SwFEShell*, const Point& rSttPt, const Point& rInsPt,
247 				sal_Bool bIsMove = sal_False, sal_Bool bSelectInsert = sal_True );
248 
249 	void SelectFlyFrm( SwFlyFrm& rFrm, sal_Bool bNew = sal_False );
250 
251 	// befindet sich der selektierte Rahmen innerhalb eines anderen?
252 	const SwFrmFmt* IsFlyInFly();
253 
254 //SS fuer DrawObjekte und Rahmen-----------------------------
255 
256 	//Wenn ein Objekt angegeben wurde, so wird genau diese Markiert (anstatt
257 	//ueber die Position zu suchen.
258     sal_Bool SelectObj( const Point& rSelPt, sal_uInt8 nFlag = 0, SdrObject *pObj = 0 );
259 	void DelSelectedObj();
260 
261 	//Selektion nach oben unten bewegen (Z-Order).
262 	//sal_True	== ganz nach oben/unten
263 	//sal_False == einen ueberholen
264 	void SelectionToTop   ( sal_Bool bTop = sal_True );
265 	void SelectionToBottom( sal_Bool bBottom = sal_True );
266 
267 	short GetLayerId() const;	//1 Heaven, 0 Hell, -1 Uneindeutig
268 	void  SelectionToHeaven();	//Ueber dem Dokument
269 	void  SelectionToHell();	//Unter dem Dokument
270 
271 	// folgende zwei Methoden returnen den enum SdrHdlKind, um sich ein
272 	// includen von SVDRAW.HXX zu ersparen als int deklariert.
273     bool IsObjSelectable( const Point& rPt );
274     int IsInsideSelectedObj( const Point& rPt );    //!! returns enum values
275 
276 	// #107513#
277 	// Test if there is a draw object at that position and if it should be selected.
278 	// The 'should' is aimed at Writer text fly frames which may be in front of
279 	// the draw object.
280 	sal_Bool ShouldObjectBeSelected(const Point& rPt);
281 
282     sal_Bool MoveAnchor( sal_uInt16 nDir );
283 
284     // Returns if Upper of frame at current position is section frame
285     // Currently only used by the rules. To be replaced by something more
286     // sophisticated one day.
287     bool IsDirectlyInSection() const;
288 
289 	//Returnwerte siehe oben FrmType.
290 	//pPt: Crsr bzw. DocPos; bStopAtFly: Bei Flys anhalten oder ueber den Anchor weitergehen
291 	// Obgleich (0,sal_True) eine Art Standard ist, sind die Parameter nicht defaultet, damit
292 	// bei jeder Benutzung insbesondere das bStopAtFly bewusst genutzt wird.
293 	sal_uInt16 GetFrmType( const Point *pPt, sal_Bool bStopAtFly ) const;
294 	sal_uInt16 GetSelFrmType() const;				//Selektion (Drawing)
295 
296     /** #108784# check whether selected frame contains a control;
297      * companion method to GetSelFrmType, used for preventing
298      * drag&drop of controls into header */
299     bool IsSelContainsControl() const;
300 
301 	ObjCntType GetObjCntType( const Point &rPt, SdrObject *&rpObj ) const;
302 	ObjCntType GetObjCntTypeOfSelection( SdrObject** ppObj = 0 ) const;
303 
304 	//Zum Anpassen der PosAttr bei Ankerwechseln.
305 	SwRect  GetObjRect() const;
306 	//Zum Verschieben von Flys mit der Tastatur
307 	SwRect  GetFlyRect() const;
308     // OD 18.09.2003 #i17567#, #108749#, #110354# - adjustments to allow
309     //          negative vertical positions for fly frames anchored
310     //          to paragraph or to character.
311     // OD 02.10.2003 #i18732# - adjustments for new option 'FollowTextFlow'
312     // OD 12.11.2003 #i22341# - adjustments for new vertical alignment at top of line
313     void CalcBoundRect( SwRect& _orRect,
314                         const RndStdIds _nAnchorId,
315                         const sal_Int16 _eHoriRelOrient = com::sun::star::text::RelOrientation::FRAME,
316                         const sal_Int16 _eVertRelOrient = com::sun::star::text::RelOrientation::FRAME,
317                         const SwPosition* _pToCharCntntPos = NULL,
318                         const bool _bFollowTextFlow = false,
319                         bool _bMirror = false,
320                         Point* _opRef = NULL,
321                         Size* _opPercent = NULL ) const;
322 
323 	// Groesse von Drawobjekten setzen
324 	void SetObjRect( const SwRect& rRect );
325 
326 	long BeginDrag( const Point *pPt, sal_Bool bProp );
327 	long Drag	  ( const Point *pPt, sal_Bool bProp );
328 	long EndDrag  ( const Point *pPt, sal_Bool bProp );
329 	void BreakDrag();
330 
331 	//Methoden fuer die Statuszeile.
332 	Point GetAnchorObjDiff() const;	//Abstand zum Anker
333 	Point GetObjAbsPos()	 const; //Absolute Position
334 	Size  GetObjSize()	     const;	//Groesse, ggf. die umschliessende
335 
336 	//SS fuer die BriefUmschlaege: hole alle Seitengebundenen Objekte
337 	//und setze diese auf eine neue Seite.
338 	void GetPageObjs( SvPtrarr& rFillArr );
339 	void SetPageObjsNewPage( SvPtrarr& rFillArr, int nOffset = 1 );
340 
341 	// zeige die aktuelle Selektion an ( ggfs. den Rahmen/DrawObject)
342 	virtual void MakeSelVisible();
343 
344 	// returne das FrmFmt von dem evt. unter dem Point stehenden Object.
345 	// Das Object wird nicht selektiert!
346 	const SwFrmFmt* GetFmtFromObj( const Point& rPt, SwRect** pRectToFill = 0 ) const;
347 	// returns a format too, if the point is over the text of any fly
348 	const SwFrmFmt* GetFmtFromAnyObj( const Point& rPt ) const;
349 
350 	//Welcher Schutz ist am selektierten Objekt gesetzt?
351     //!! returns several flags in sal_uInt8
352 	sal_uInt8 IsSelObjProtected( sal_uInt16 /*FLYPROTECT_...*/ eType ) const;
353 
354 	//Liefert neben der Grafik in rName bei gelinkten Grafiken den Namen mit
355 	//Pfad und sonst den Grafiknamen. rbLink ist TRU bei gelinkten Grafiken.
356 	const Graphic *GetGrfAtPos( const Point &rDocPos,
357 								String &rName, sal_Bool &rbLink ) const;
358 
359     // --> OD 2009-07-13 #i73249#
360     const String GetObjTitle() const;
361     void SetObjTitle( const String& rTitle );
362     const String GetObjDescription() const;
363     void SetObjDescription( const String& rDescription );
364     // <--
365 
366 //SS fuer Rahmen --------------------------------------------
367 
368 	sal_Bool IsFrmSelected() const;
369 	sal_Bool GetFlyFrmAttr( SfxItemSet &rSet ) const;
370 	sal_Bool SetFlyFrmAttr( SfxItemSet &rSet );
371 	sal_Bool ResetFlyFrmAttr( sal_uInt16 nWhich, const SfxItemSet* pSet = 0 );
372 	const SwFrmFmt *NewFlyFrm( const SfxItemSet &rSet, sal_Bool bAnchValid = sal_False,
373 						 SwFrmFmt *pParent = 0 );
374 	void SetFlyPos( const Point &rAbsPos);
375 	Point FindAnchorPos( const Point &rAbsPos, sal_Bool bMoveIt = sal_False );
376     // determines whether a frame or its environment is vertically formatted and right-to-left
377     // --> OD 2009-08-31 #mongolianlayout#
378     // also determines, if frame or its environmane is in mongolianlayout (vertical left-to-right)
379     // - add output parameter <bVertL2R>
380     sal_Bool IsFrmVertical(const sal_Bool bEnvironment, sal_Bool& bRightToLeft, sal_Bool& bVertL2R) const;
381 
382 	SwFrmFmt* GetCurFrmFmt() const;	//Wenn Rahmen, dann Rahmenvorlage, sonst 0
383 	void SetFrmFmt( SwFrmFmt *pFmt, sal_Bool bKeepOrient = sal_False, Point* pDocPos = 0 );	//Wenn Rahmen, dann Rahmenvorlage setzen
384 	const SwFlyFrm *GetCurrFlyFrm() const { return FindFlyFrm(); }
385 
386 	// finde/loeschen den Fly, in dem der Cursor steht
387 	SwFrmFmt* WizzardGetFly();
388 
389 	//Selebstaendiges selektieren von Flys
390     sal_Bool GotoNextFly( sal_uInt16 /*GOTOOBJ_...*/ eType = GOTOOBJ_FLY_ANY )
391                                 { return GotoObj( sal_True, eType ); }
392     sal_Bool GotoPrevFly( sal_uInt16 /*GOTOOBJ_...*/ eType = GOTOOBJ_FLY_ANY)
393                                 { return GotoObj( sal_False, eType); }
394 
395 	//iterieren ueber Flys - fuer Basic-Collections
396 	sal_uInt16 GetFlyCount( FlyCntType eType = FLYCNTTYPE_ALL ) const;
397 	const SwFrmFmt* GetFlyNum(sal_uInt16 nIdx, FlyCntType eType = FLYCNTTYPE_ALL) const;
398 
399 	//Wenn ein fly selectiert ist, zieht er den Crsr in den ersten CntntFrm
400 	const SwFrmFmt* SelFlyGrabCrsr();
401 
402 	//Get FlyFrameFormat; fuer UI Macro Anbindung an Flys
403 	const SwFrmFmt* GetFlyFrmFmt() const;
404 	      SwFrmFmt* GetFlyFrmFmt();
405 
406 	//OLE, Server fordert neue Groesse an, die gewuenschten Werte werden
407 	//als Rahmenattribute eingestellt. Wenn die Werte nicht erlaubt sind,
408 	//so wird von der Formatierung geclippt und eine Scalierung eingestellt.
409 	//siehe CalcAndSetScale().
410 	// The return value is the applied size.
411     Size RequestObjectResize( const SwRect &rRect, const ::com::sun::star::uno::Reference < ::com::sun::star::embed::XEmbeddedObject >& );
412 
413     //The layout has been changed, so the active object has to be moved after that
414     virtual void MoveObjectIfActive( svt::EmbeddedObjectRef& xObj, const Point& rOffset );
415 
416 	//Der Client fuer das OleObject muss bezueglich der Scalierung auf dem
417 	//neuesten Stand gehalten werden. Impl in der WrtShell.
418 	//Wird ein Pointer auf eine Size uebergeben, so ist diese die aktuelle
419 	//Core-Groesse des Objectes. Anderfalls wird die Groesse per GetCurFlyRect()
420 	//besorgt.
421     virtual void CalcAndSetScale( svt::EmbeddedObjectRef& xObj,
422 								  const SwRect *pFlyPrtRect = 0,
423                                   const SwRect *pFlyFrmRect = 0,
424                                   const bool bNoTxtFrmPrtAreaChanged = false ) = 0;
425 
426 	//Objekte mit ActivateWhenVisible werden beim Paint Connected.
427 	//gerufen von notxtfrm::Paint, impl in wrtsh
428     virtual void ConnectObj( svt::EmbeddedObjectRef&,
429                              const SwRect &rPrt,
430 							 const SwRect &rFrm ) = 0;
431 
432 	//Sichbaren Bereich auf das Object setzen, wenn es noch nicht sichtbar ist.
433     void MakeObjVisible( const ::com::sun::star::uno::Reference < ::com::sun::star::embed::XEmbeddedObject >& ) const;
434 
435 	// check resize of OLE-Object
436 	sal_Bool IsCheckForOLEInCaption() const 		{ return bCheckForOLEInCaption; }
437 	void SetCheckForOLEInCaption( sal_Bool bFlag )	{ bCheckForOLEInCaption = bFlag; }
438 
439 	// setze am selektierten FlyFrame einen Namen
440 	void SetFlyName( const String& rName );
441 	const String& GetFlyName() const;
442 
443     // get reference to OLE object (if there is one) for selected FlyFrame
444     const com::sun::star::uno::Reference < com::sun::star::embed::XEmbeddedObject > GetOleRef() const;
445 
446 	// erezeuge eindeutige Namen fuer Rahmen
447 	String GetUniqueGrfName() const;
448 	String GetUniqueOLEName() const;
449 	String GetUniqueFrameName() const;
450 
451 	// springe zum benannten Rahmen (Grafik/OLE)
452 	sal_Bool GotoFly( const String& rName, FlyCntType eType = FLYCNTTYPE_ALL,
453 					sal_Bool bSelFrame = sal_True );
454 	// steht an der Position eine Grafik mit einer URL ?
455 	const SwFrmFmt* IsURLGrfAtPos( const Point& rPt, String* pURL = 0,
456 									String *pTargetFrameName = 0,
457 									String *pURLDescription = 0 ) const;
458 
459 	//Fuer das Chain wird immer der durch das Format spezifizierte Fly
460 	//mit dem durch den Point getroffenen verbunden.
461 	//In rRect wird das Rect des Flys geliefert (fuer Highlight desselben)
462 	int Chainable( SwRect &rRect, const SwFrmFmt &rSource, const Point &rPt ) const;
463 	int Chain( SwFrmFmt &rSource, const Point &rPt );
464     int Chain( SwFrmFmt &rSource, const SwFrmFmt &rDest );
465     void Unchain( SwFrmFmt &rFmt );
466 	void HideChainMarker();
467 	void SetChainMarker();
468 
469 	Size GetGraphicDefaultSize() const;
470 
471 //SS fuer DrawObjekte ---------------------
472 
473 	//Temporaer um Bug zu umgehen.
474 	void CheckUnboundObjects();
475 
476 	//Achtung: Uneindeutikeiten bei Mehrfachselektionen.
477 	sal_Bool GetObjAttr( SfxItemSet &rSet ) const;
478 	sal_Bool SetObjAttr( const SfxItemSet &rSet );
479 
480     const SdrObject* GetBestObject( sal_Bool bNext, sal_uInt16 eType = GOTOOBJ_DRAW_ANY, sal_Bool bFlat = sal_True, const ::svx::ISdrObjectFilter* pFilter = NULL );
481     sal_Bool GotoObj( sal_Bool bNext, sal_uInt16 /*GOTOOBJ_...*/ eType = GOTOOBJ_DRAW_ANY);
482 
483 	//Setzen vom DragMode (z.B. Rotate), tut nix bei Rahmenselektion.
484 	void SetDragMode( sal_uInt16 eSdrDragMode );
485 
486 	sal_uInt16 IsObjSelected() const;	//Liefert gleich die Anzahl der Objekte,
487 									//zaehlt aber nicht die Objekte in Gruppen.
488 	sal_Bool IsObjSelected( const SdrObject& rObj ) const;
489 
490 	void EndTextEdit();				//Loescht ggf. das Objekt.
491 
492 	//Ankertyp des selektierten Objektes, -1 bei Uneindeutigkeit oder
493     //Rahmenselektion; FLY_AT_PAGE bzw. FLY_AT_PARA aus frmatr.hxx sonst.
494 	short GetAnchorId() const;
495 
496 	//Erzeugen von DrawObjekten, beim Begin wird der Objekttyp mitgegeben.
497 	//Beim End kann ein Cmd mitgegeben werden, hier ist ggf.
498 	//SDRCREATE_RESTRAINTEND fuer Ende oder SDRCREATE_NEXTPOINT fuer ein
499 	//Polygon relevant. Nach dem RESTRAINTEND ist das Objekt erzeugt und
500 	//selektiert.
501 	//Mit BreakCreate wird der Vorgang abgebrochen, dann ist kein Objekt
502 	//mehr selektiert.
503     sal_Bool BeginCreate( sal_uInt16 /*SdrObjKind ?*/ eSdrObjectKind, const Point &rPos );
504 	sal_Bool BeginCreate( sal_uInt16 /*SdrObjKind ?*/ eSdrObjectKind, sal_uInt32 eObjInventor, const Point &);
505 	void MoveCreate ( const Point &rPos );
506 	sal_Bool EndCreate	( sal_uInt16 eSdrCreateCmd );
507 	void BreakCreate();
508 	sal_Bool IsDrawCreate() const;
509     void CreateDefaultShape( sal_uInt16 /*SdrObjKind ?*/ eSdrObjectKind, const Rectangle& rRect, sal_uInt16 nSlotId);
510 
511 	// Funktionen f�r Rubberbox, um Draw-Objekte zu selektieren
512 	sal_Bool BeginMark( const Point &rPos );
513 	void MoveMark ( const Point &rPos );
514 	sal_Bool EndMark  ();
515 	void BreakMark();
516 
517 	//Gruppe erzeugen, aufloesen, nix bei Rahmenselektion.
518 	sal_Bool IsGroupSelected();		//Kann auch eine Mischselektion sein!
519 	void GroupSelection();		//Hinterher ist die Gruppe selektiert.
520 	void UnGroupSelection();	//Die Einzelobjekte sind Selektiert
521 								//Es koennen noch immer Gruppen dabei sein.
522 
523     // OD 27.06.2003 #108784# - change return type.
524     bool IsGroupAllowed() const;
525 
526 	void MirrorSelection( sal_Bool bHorizontal );	//Bei sal_False Vertikal
527 
528 	//frmatr.hxx. Hier kein enum wg. Abhaengigkeiten
529 	//Der sal_Bool ist nur fuer internen Gebrauch! Anker wird nur - anhand der
530 	//aktuellen Dokumentposition - neu gesetzt aber nicht umgesetzt.
531 	void ChgAnchor( int eAnchorId, sal_Bool bSameOnly = sal_False,
532 								   sal_Bool bPosCorr = sal_True );
533 
534     sal_Bool SetDrawingAttr( SfxItemSet &rSet );
535 
536     // hole die selectierten DrawObj als Grafik (MetaFile/Bitmap)
537 	// Return-Wert besagt ob konvertiert wurde!!
538 	sal_Bool GetDrawObjGraphic( sal_uLong nFmt, Graphic& rGrf ) const;
539 
540 	void Paste( SvStream& rStm, sal_uInt16 nAction, const Point* pPt = 0 );
541 	sal_Bool Paste( const Graphic &rGrf );
542 	sal_Bool Paste( SotDataObject& rObj, const Point& rPt );
543 
544 	sal_Bool IsAlignPossible() const;
545 	void SetCalcFieldValueHdl(Outliner* pOutliner);
546 
547 	void Insert(const String& rGrfName,
548 				const String& rFltName,
549 				const Graphic* pGraphic = 0,
550 				const SfxItemSet* pFlyAttrSet = 0,
551 				const SfxItemSet* pGrfAttrSet = 0,
552 				SwFrmFmt* = 0 );
553 
554     // Insertion of a drawing object which have to be already inserted in the DrawModel
555     void InsertDrawObj( SdrObject& rDrawObj,
556                         const Point& rInsertPosition );
557 
558 	sal_Bool ReplaceSdrObj( const String& rGrfName, const String& rFltName,
559 						const Graphic* pGrf = 0 );
560 
561 	// --> #i972#
562     // for starmath formulas anchored 'as char' it alignes it baseline to baseline
563     // changing the previous vertical orientation
564     void AlignFormulaToBaseline( const ::com::sun::star::uno::Reference < ::com::sun::star::embed::XEmbeddedObject >& xObj, SwFlyFrm * pFly = 0 );
565 
566     // aligns all formulas with anchor 'as char' to baseline
567     void AlignAllFormulasToBaseline();
568     // <--
569 
570 //------------------------------------------
571 
572 	//Auskunft ueber naechstliegenden Inhalt zum uebergebenen Point
573 	Point GetCntntPos( const Point& rPoint, sal_Bool bNext ) const;
574 
575     //convert document position into position relative to the current page
576     Point GetRelativePagePosition(const Point& rDocPos);
577 
578     //Layout-Selektion Hiden/Zeigen und aufruf an die CrsrSh weiterreichen.
579 	void ShLooseFcs();
580 	void ShGetFcs( sal_Bool bUpdate = sal_True );
581 
582 	//PageDescriptor-Schnittstelle
583 	void   ChgCurPageDesc( const SwPageDesc& );
584 	sal_uInt16 GetCurPageDesc( const sal_Bool bCalcFrm = sal_True ) const;
585     sal_uInt16 GetMousePageDesc( const Point &rPt ) const;
586     sal_uInt16 GetPageDescCnt() const;
587 	SwPageDesc* FindPageDescByName( const String& rName,
588 									sal_Bool bGetFromPool = sal_False,
589 									sal_uInt16* pPos = 0 );
590 
591 	const SwPageDesc& GetPageDesc( sal_uInt16 i ) const;
592 	void  ChgPageDesc( sal_uInt16 i, const SwPageDesc& );
593 	// if inside all selection only one PageDesc, return this.
594 	// Otherwise return 0 pointer
595 	const SwPageDesc* GetSelectedPageDescs() const;
596 
597 	const SwRect& GetAnyCurRect( CurRectType eType,
598 								 const Point* pPt = 0,
599                                  const ::com::sun::star::uno::Reference < ::com::sun::star::embed::XEmbeddedObject >& =
600                                  ::com::sun::star::uno::Reference < ::com::sun::star::embed::XEmbeddedObject >() ) const;
601 
602 	//Seitennummer der Seite in der der Point liegt, 0 wenn keine
603 	//getroffen ist.
604 	sal_uInt16 GetPageNumber( const Point &rPoint ) const;
605 	sal_Bool GetPageNumber( long nYPos, sal_Bool bAtCrsrPos, sal_uInt16& rPhyNum, sal_uInt16& rVirtNum, String &rDisplay ) const;
606 
607     SwFlyFrmFmt* InsertObject( const svt::EmbeddedObjectRef&,
608 				const SfxItemSet* pFlyAttrSet = 0,
609 				const SfxItemSet* pGrfAttrSet = 0,
610 				SwFrmFmt* = 0 );
611 	sal_Bool 	FinishOLEObj();								// Server wird beendet
612 
613 	//Attribute der Tabelle besorgen/setzen.
614 	void GetTblAttr( SfxItemSet & ) const;
615 	void SetTblAttr( const SfxItemSet & );
616 
617 	//Tabelle vollstaendig selektiert?
618 	sal_Bool HasWholeTabSelection() const;
619 	//Ist der Inhalt einer Tabellenzelle oder mindestens eine Tabellenzelle
620 	//vollstaendig selektiert ist
621 	sal_Bool HasBoxSelection() const;
622 
623 	sal_Bool InsertRow( sal_uInt16 nCnt, sal_Bool bBehind );
624 	sal_Bool InsertCol( sal_uInt16 nCnt, sal_Bool bBehind );  // 0 == am Ende
625 	sal_Bool DeleteCol();
626 	sal_Bool DeleteRow();
627 
628 	sal_Bool DeleteTblSel();		//Aktuelle Selektion, ggf. die ganze Tabelle.
629 
630 	sal_uInt16 MergeTab();			//Merged selektierte Tabellenteile zusammen
631 								//Fehler ueber enum zurueck
632     // Zelle Vertikal oder Horizontal splitten.
633     sal_Bool SplitTab( sal_Bool nVert = sal_True, sal_uInt16 nCnt = 1, sal_Bool bSameHeight = sal_False );
634 	sal_Bool Sort(const SwSortOptions&);	//Sortieren.
635 
636 	void SetRowHeight( const SwFmtFrmSize &rSz );
637 	//Der Pointer muss vom Aufrufer zerstoert werden wenn != 0
638 	void GetRowHeight( SwFmtFrmSize *&rpSz ) const;
639 
640     void SetRowSplit( const SwFmtRowSplit &rSz );
641     void GetRowSplit( SwFmtRowSplit *&rpSz ) const;
642 
643 	void   SetBoxAlign( sal_uInt16 nOrient );
644 	sal_uInt16 GetBoxAlign() const;			//USHRT_MAX fuer uneindeutig!
645 
646 	//Ausgleichen der Zeilenhoehen. Mit bTstOnly festellen ob mehr als eine
647 	//Zeile markiert ist.
648 	sal_Bool BalanceRowHeight( sal_Bool bTstOnly );
649 
650 	void SetTabBorders( const SfxItemSet& rSet );
651 	void GetTabBorders( 	  SfxItemSet& rSet) const;
652 	void SetTabLineStyle(const Color* pColor, sal_Bool bSetLine = sal_False, const SvxBorderLine* pBorderLine = NULL);
653 
654 	void SetTabBackground( const SvxBrushItem &rNew );
655 	void GetTabBackground( SvxBrushItem &rToFill ) const;
656 
657 	void SetBoxBackground( const SvxBrushItem &rNew );
658 	sal_Bool GetBoxBackground( SvxBrushItem &rToFill ) const; //sal_False uneindeutig
659 
660     void SetBoxDirection( const SvxFrameDirectionItem& rNew );
661     sal_Bool GetBoxDirection( SvxFrameDirectionItem& rToFill ) const; //sal_False uneindeutig
662 
663     void SetRowBackground( const SvxBrushItem &rNew );
664 	sal_Bool GetRowBackground( SvxBrushItem &rToFill ) const; //sal_False uneindeutig
665 
666     sal_uInt8 WhichMouseTabCol( const Point &rPt ) const;
667     void GetTabCols( SwTabCols &rToFill ) const; //Spalten- und Randinfo.
668     void SetTabCols( const SwTabCols &rNew, sal_Bool bCurRowOnly = sal_True );
669     void GetMouseTabCols( SwTabCols &rToFill, const Point &rPt ) const;
670 	void SetMouseTabCols( const SwTabCols &rNew, sal_Bool bCurRowOnly,
671                           const Point &rPt );
672 
673     // --> FME 2004-07-30 #i20126# Enhanced table selection
674     // pEnd will be used during MouseMove
675     bool SelTblRowCol( const Point& rPt, const Point* pEnd = 0, bool bRowDrag = false );
676     // <--
677 
678     // #i24134# adjustment of table rows via Ruler
679     void GetTabRows( SwTabCols &rToFill ) const;
680     void SetTabRows( const SwTabCols &rNew, sal_Bool bCurColOnly );
681     void GetMouseTabRows( SwTabCols &rToFill, const Point &rPt ) const;
682     void SetMouseTabRows( const SwTabCols &rNew, sal_Bool bCurColOnly, const Point &rPt );
683 
684     void ProtectCells();    //Falls eine Tabselektion besteht, wird sie ver-
685 							// nichtet, wenn der Cursor nicht in Readonly darf
686 	void UnProtectCells();	// auf die Tabellenselektin
687 	void UnProtectTbls();	//bei allen Tabellen in der Selektion den Schutz aufheben
688 	sal_Bool HasTblAnyProtection( const String* pTblName = 0,
689 								sal_Bool* pFullTblProtection = 0 );
690 	sal_Bool CanUnProtectCells() const;
691 
692     sal_uInt16 GetRowsToRepeat() const;
693     void SetRowsToRepeat( sal_uInt16 nNumOfRows );
694     sal_uInt16 GetVirtPageNum( const sal_Bool bCalcFrm = sal_True );
695     //returns the number of table rows currently selected
696     //if the selection start at the top of the table
697     sal_uInt16    GetRowSelectionFromTop() const;
698 
699     sal_Bool IsInRepeatedHeadline() const { return CheckHeadline( true ); }
700     sal_Bool IsInHeadline() const { return CheckHeadline( false ); }
701 
702 	//Stellt die Breiten der Zellen so ein, dass der Inhalt moeglichst
703 	//nicht umgebrochen werden muss.
704 	//bBalance sorgt fuer einen Ausgleich der markierten Spalten.
705 	void AdjustCellWidth( sal_Bool bBalance = sal_False );
706 	//Nicht erlaubt, wenn nur  leere Zellen selektiert sind.
707 	sal_Bool IsAdjustCellWidthAllowed( sal_Bool bBalance = sal_False ) const;
708 
709 	//Ausgleich der Zellenbreiten, mit bTstOnly feststellen, ob mehr als
710 	//eine Zelle markiert ist.
711 	sal_Bool BalanceCellWidth( sal_Bool bTstOnly );
712 
713 		// AutoFormat fuer die Tabelle/TabellenSelection
714 	sal_Bool SetTableAutoFmt( const SwTableAutoFmt& rNew );
715 		// Erfrage wie attributiert ist
716 	sal_Bool GetTableAutoFmt( SwTableAutoFmt& rGet );
717 		// aender eine  Zellenbreite/-Hoehe/Spaltenbreite/Zeilenhoehe
718 	sal_Bool SetColRowWidthHeight( sal_uInt16 eType, sal_uInt16 nDiff = 283 );
719 		// Autosumme
720 	sal_Bool GetAutoSum( String& rFml ) const;
721 
722 	//Phy:	Tatsaechliche Seitenanzahl.
723 	//Virt: Vom User evtl. gesetzten Offset mit einbeziehen.
724 	sal_uInt16	GetPhyPageNum();
725 
726 	// Setzt an der aktuellen Postion einen neuen Page Offset
727 	void SetNewPageOffset( sal_uInt16 nOffset );
728 	void SetPageOffset( sal_uInt16 nOffset );	//Aendert den letzten Page Offset
729 	sal_uInt16 GetPageOffset() const;			//Liefert den letzten Page Offset
730 
731 	//SS fuer Beschriftungen
732     void InsertLabel( const SwLabelType eType, const String &rTxt, const String& rSeparator,
733                       const String& rNumberSeparator,
734 					  const sal_Bool bBefore, const sal_uInt16 nId,
735                       const String& rCharacterStyle,
736                       const sal_Bool bCpyBrd = sal_True );
737 
738 	//Das Lineal will auch noch etwas von uns wissen.
739 	sal_uInt16 GetCurColNum( SwGetCurColNumPara* pPara = 0 ) const;	//0 == in keiner Spalte
740 	sal_uInt16 GetCurMouseColNum( const Point &rPt,
741 							SwGetCurColNumPara* pPara = 0 ) const;
742 	sal_uInt16 GetCurTabColNum() const;		//0 == in keiner Tabelle
743 	sal_uInt16 GetCurMouseTabColNum( const Point &rPt ) const;
744 	sal_uInt16 GetCurOutColNum( SwGetCurColNumPara* pPara = 0 ) const;	// aktuelle aeussere Spalte
745 
746     sal_Bool IsTableRightToLeft() const;
747     sal_Bool IsMouseTableRightToLeft( const Point &rPt ) const;
748     sal_Bool IsTableVertical() const;
749 
750     sal_Bool IsLastCellInRow() const;
751     // Die Breite des aktuellen Bereichs fuer Spaltendialog
752 	long GetSectionWidth( SwFmt& rFmt ) const;
753 
754     void GetConnectableFrmFmts
755     (SwFrmFmt & rFmt, const String & rReference, sal_Bool bSuccessors,
756      ::std::vector< String > & aPrevPageVec,
757      ::std::vector< String > & aThisPageVec,
758      ::std::vector< String > & aNextPageVec,
759      ::std::vector< String > & aRestVec);
760 
761     /** SwFEShell::GetShapeBackgrd
762 
763         OD 02.09.2002 for #102450#:
764         method determines background color of the page the selected drawing
765         object is on and returns this color.
766         If no color is found, because no drawing object is selected or ...,
767         color COL_BLACK (default color on constructing object of class Color)
768         is returned.
769 
770         @author OD
771 
772         @returns an object of class Color
773     */
774     const Color GetShapeBackgrd() const;
775 
776     /** Is default horizontal text direction for selected drawing object right-to-left
777 
778         OD 09.12.2002 #103045#
779         Because drawing objects only painted for each page only, the default
780         horizontal text direction of a drawing object is given by the corresponding
781         page property.
782 
783         @author OD
784 
785         @returns boolean, indicating, if the horizontal text direction of the
786         page, the selected drawing object is on, is right-to-left.
787     */
788     bool IsShapeDefaultHoriTextDirR2L() const;
789 
790     void ParkCursorInTab();
791 
792     // -> #i23726#
793     SwTxtNode * GetNumRuleNodeAtPos(const Point &rPot);
794     sal_Bool IsNumLabel( const Point &rPt, int nMaxOffset = -1 );
795     // <- #i23726#
796     // --> OD 2005-02-21 #i42921#
797     bool IsVerticalModeAtNdAndPos( const SwTxtNode& _rTxtNode,
798                                    const Point& _rDocPos ) const;
799     // <--
800 
801 };
802 
803 #endif
804