1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
|
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* 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.
*
* 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).
*
* 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.
*
************************************************************************/
#ifndef _SWVIEW_HXX
#define _SWVIEW_HXX
#include <vcl/timer.hxx>
#include <vcl/field.hxx>
#include <svtools/htmlcfg.hxx>
#include <sfx2/viewfac.hxx>
#include <sfx2/viewsh.hxx>
#include <sfx2/objsh.hxx> // SfxObjectShellRef <-> SV_DECL_REF(SfxObjectShell)
#include <editeng/svxenum.hxx>
#include <svx/zoomitem.hxx>
#include <editeng/editstat.hxx>
#include "swdllapi.h"
#include <swtypes.hxx>
#include <shellid.hxx>
#include <layout/layout.hxx>
class SwBaseShell;
class Button;
class ImageButton;
class SwTxtFmtColl;
class SwPageDesc;
class SwFrmFmt;
class SwCharFmt;
class SwNumRule;
class SwViewOption;
class SwGlossaryHdl;
class SwDrawBase;
class SvxRuler;
class SvxLRSpaceItem;
class SwDocShell;
class SwScrollbar;
class PrintDialog;
class SvxVCBrowser;
class SvBorder;
class Ruler;
class OutlinerView;
class SvxSearchItem;
class SearchAttrItemList;
class SvxSearchDialog;
class SdrView;
class Dialog;
class SdrObject;
class SdrPageView;
class SwNaviImageButton;
class SwHlpImageButton;
class Outliner;
class SwView;
class SwEditWin;
class SwWrtShell;
class SwView_Impl;
class XSelectionObject;
struct SwSearchOptions;
class FmFormShell;
class CommandEvent;
class InsCaptionOpt;
class SvGlobalName;
class SvtAccessibilityOptions;
class SwPrtOptions;
class SwTransferable;
class SwMailMergeConfigItem;
class SwTxtNode; // #i23726#
class SwPrintData;
class SwFormatClipboard;
struct SwConversionArgs;
class Graphic;
class GraphicFilter;
class SwPostItMgr;
namespace com{ namespace sun { namespace star {
namespace view{ class XSelectionSupplier; }
}}}
namespace sfx2 { class FileDialogHelper; }
const long nLeftOfst = -370;
const long nScrollX = 30;
const long nScrollY = 30;
#define MINZOOM 20
#define MAXZOOM 600
#define MAX_MARKS 5
#define CHILDWIN_LABEL 1
#define CHILDWIN_MAILMERGE 2
enum ShellModes
{
SHELL_MODE_TEXT,
SHELL_MODE_FRAME,
SHELL_MODE_GRAPHIC,
SHELL_MODE_OBJECT,
SHELL_MODE_DRAW,
SHELL_MODE_DRAW_CTRL,
SHELL_MODE_DRAW_FORM,
SHELL_MODE_DRAWTEXT,
SHELL_MODE_BEZIER,
SHELL_MODE_LIST_TEXT,
SHELL_MODE_TABLE_TEXT,
SHELL_MODE_TABLE_LIST_TEXT,
SHELL_MODE_MEDIA,
SHELL_MODE_EXTRUDED_CUSTOMSHAPE,
SHELL_MODE_FONTWORK,
SHELL_MODE_POSTIT
};
/*--------------------------------------------------------------------
Beschreibung: Anwendung einer Vorlage
--------------------------------------------------------------------*/
struct SwApplyTemplate
{
union
{
SwTxtFmtColl* pTxtColl;
SwPageDesc* pPageDesc;
SwFrmFmt* pFrmFmt;
SwCharFmt* pCharFmt;
SwNumRule* pNumRule;
} aColl;
int eType;
USHORT nColor;
SwFormatClipboard* pFormatClipboard;
BOOL bUndo;
SwApplyTemplate() :
eType(0),
nColor(0),
pFormatClipboard(0),
bUndo(FALSE)
{
aColl.pTxtColl = 0;
}
};
/*--------------------------------------------------------------------
Beschreibung: Sicht auf ein Dokument
--------------------------------------------------------------------*/
class SW_DLLPUBLIC SwView: public SfxViewShell
{
//Messehack (MA,MBA)
friend void lcl_SelectShellForDrop( SwView &rView );
friend class TestTemplateItem;
friend class SwHHCWrapper;
friend class SwHyphWrapper;
friend class SwView_Impl;
friend class SwClipboardChangeListener;
//suchen & ersetzen
static SvxSearchDialog *pSrchDlg;
static SvxSearchItem *pSrchItem;
static USHORT nInsertCtrlState;
static USHORT nWebInsertCtrlState;
static USHORT nInsertObjectCtrlState;
static USHORT nInsertFieldCtrlState;
static USHORT nMoveType; // fuer Buttons unter dem Scrollbar (viewmdi)
static sal_Int32 nActMark; // aktuelle Sprungmarke fuer unbenannte Merker
static BOOL bExtra;
static BOOL bFound;
static BOOL bJustOpened;
static SearchAttrItemList* pSrchList;
static SearchAttrItemList* pReplList;
SvxHtmlOptions aHTMLOpt;
Timer aTimer; //Fuer verzoegerte ChgLnks waehrend
//einer Aktion
String aPageStr; //Statusanzeige, aktuelle Seite
String sSwViewData,
//and the new cursor position if the user double click in the PagePreView
sNewCrsrPos;
// to support keyboard the number of the page to go to can be set too
USHORT nNewPage;
Point aTabColFromDocPos; //Verschieben von Tabellenspalten aus
//aus dem Dokument heraus.
SwTxtNode * pNumRuleNodeFromDoc; // Moving indent of numrule #i23726#
Size aDocSz; // aktuelle Dokumentgroesse
Rectangle aVisArea; // sichtbarer Bereich
SwEditWin *pEditWin;
SwWrtShell *pWrtShell;
SfxShell *pShell; //aktuelle SubShell auf dem Dispatcher
FmFormShell *pFormShell; // DB-FormShell
SwView_Impl *pViewImpl; // Impl-Daten fuer UNO + Basic
SwScrollbar *pHScrollbar, // MDI Bedienelemente
*pVScrollbar;
Window *pScrollFill; // Dummy-Window zum Fuellen der rechten
// unteren Ecke, wenn beide Scrollbars
// aktiv sind
SvxRuler *pHRuler,
*pVRuler;
ImageButton *pTogglePageBtn;
SwHlpImageButton *pPageUpBtn,
*pPageDownBtn;
SwNaviImageButton *pNaviBtn;
SwGlossaryHdl *pGlosHdl; // Henkel Textbausteine
SwDrawBase *pDrawActual;
const SwFrmFmt *pLastTableFormat;
SwFormatClipboard *pFormatClipboard; //holds data for format paintbrush
SwPostItMgr *mpPostItMgr;
int nSelectionType;
static const int MASTERENUMCOMMANDS = 6;
String aCurrShapeEnumCommand[ MASTERENUMCOMMANDS ];
USHORT nPageCnt;
// Aktueller Drawmode
USHORT nDrawSfxId;
String sDrawCustom; //some drawing types are marked with strings!
USHORT nFormSfxId;
USHORT nLastPasteDestination;
// save the border distance status from SwView::StateTabWin to re-use it in SwView::ExecTabWin()
USHORT nLeftBorderDistance;
USHORT nRightBorderDistance;
BOOL bCenterCrsr : 1,
bTopCrsr : 1,
bAllwaysShowSel : 1,
bTabColFromDoc : 1,
bNumIndentFromDoc : 1, // #i23726#
bTabRowFromDoc : 1,
bSetTabColFromDoc : 1 ,
bSetTabRowFromDoc : 1,
bAttrChgNotified : 1,
bAttrChgNotifiedWithRegistrations : 1,
bVerbsActive : 1,
bDrawRotate : 1,
bDrawSelMode : 1,
bShowAtResize : 1,
bInOuterResizePixel : 1,
bInInnerResizePixel : 1,
bPasteState : 1,
bPasteSpecialState : 1,
bInMailMerge : 1,
bInDtor : 1, //detect destructor to prevent creating of sub shells while closing
bOldShellWasPagePreView : 1,
bMakeSelectionVisible : 1 // #b6330459# transport the bookmark selection
;
// Methoden fuers Suchen
// Suchkontext setzen
SW_DLLPRIVATE BOOL SearchAndWrap(BOOL bApi = FALSE);
SW_DLLPRIVATE BOOL SearchAll(USHORT* pFound = 0);
SW_DLLPRIVATE ULONG FUNC_Search( const SwSearchOptions& rOptions );
SW_DLLPRIVATE void Replace();
BOOL IsDocumentBorder();
SW_DLLPRIVATE BOOL IsTextTool() const;
// Bedienelemente verwalten anlegen
SW_DLLPRIVATE void CreateBtns();
SW_DLLPRIVATE DECL_LINK( BtnPage, Button * );
SW_DLLPRIVATE DECL_LINK( TimeoutHdl, Timer * );
SW_DLLPRIVATE DECL_LINK( UpdatePercentHdl, GraphicFilter* );
SW_DLLPRIVATE DECL_LINK( HtmlOptionsHdl, void * );
inline long GetXScroll() const;
inline long GetYScroll() const;
SW_DLLPRIVATE Point AlignToPixel(const Point& rPt) const;
SW_DLLPRIVATE void CalcPt( Point* pPt,const Rectangle& rRect,
USHORT nRangeX = USHRT_MAX,
USHORT nRangeY = USHRT_MAX);
SW_DLLPRIVATE BOOL GetPageScrollUpOffset(SwTwips& rOff) const;
SW_DLLPRIVATE BOOL GetPageScrollDownOffset(SwTwips& rOff) const;
// Scrollbar Movements
SW_DLLPRIVATE long PageUp();
SW_DLLPRIVATE long PageDown();
SW_DLLPRIVATE long PageUpCrsr(BOOL bSelect);
SW_DLLPRIVATE long PageDownCrsr(BOOL bSelect);
SW_DLLPRIVATE long PhyPageUp();
SW_DLLPRIVATE long PhyPageDown();
SW_DLLPRIVATE int _CreateScrollbar( BOOL bHori );
SW_DLLPRIVATE DECL_LINK( ScrollHdl, SwScrollbar * );
SW_DLLPRIVATE DECL_LINK( EndScrollHdl, SwScrollbar * );
SW_DLLPRIVATE BOOL UpdateScrollbars();
SW_DLLPRIVATE void CalcVisArea( const Size &rPixelSz );
SW_DLLPRIVATE void CreatePageButtons(BOOL bShow);
// Linguistik-Funktionen
SW_DLLPRIVATE void HyphenateDocument();
SW_DLLPRIVATE BOOL IsDrawTextHyphenate();
SW_DLLPRIVATE void HyphenateDrawText();
SW_DLLPRIVATE void StartThesaurus();
// text conversion
SW_DLLPRIVATE void StartTextConversion( LanguageType nSourceLang, LanguageType nTargetLang, const Font *pTargetFont, sal_Int32 nOptions, sal_Bool bIsInteractive );
// used for spell checking and text conversion
SW_DLLPRIVATE void SpellStart( SvxSpellArea eSpell, BOOL bStartDone,
BOOL bEndDone, SwConversionArgs *pConvArgs = 0 );
SW_DLLPRIVATE void SpellEnd( SwConversionArgs *pConvArgs = 0 );
SW_DLLPRIVATE void HyphStart( SvxSpellArea eSpell );
SW_DLLPRIVATE BOOL CheckSpecialCntnt();
SW_DLLPRIVATE void SpellKontext(BOOL bOn = TRUE)
{ bCenterCrsr = bOn; bAllwaysShowSel = bOn; }
// Methoden fuers Printing
SW_DLLPRIVATE virtual SfxPrinter* GetPrinter( BOOL bCreate = FALSE );
SW_DLLPRIVATE virtual PrintDialog* CreatePrintDialog( Window* pParent );
SfxTabPage* CreatePrintOptionsPage( Window* pParent,
const SfxItemSet& rSet);
// fuer Readonly-Umschaltung
SW_DLLPRIVATE virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint );
SW_DLLPRIVATE void _CheckReadonlyState();
SW_DLLPRIVATE void _CheckReadonlySelection();
// Methode fuer PageDesc drehen
SW_DLLPRIVATE void SwapPageMargin(const SwPageDesc&, SvxLRSpaceItem& rLR);
SW_DLLPRIVATE void _SetZoom( const Size &rEditSz,
SvxZoomType eZoomType,
short nFactor = 100,
BOOL bViewOnly = FALSE);
SW_DLLPRIVATE void CalcAndSetBorderPixel( SvBorder &rToFill, BOOL bInner );
SW_DLLPRIVATE void ShowAtResize();
SW_DLLPRIVATE virtual void Move();
SW_DLLPRIVATE BOOL InsertGraphicDlg( SfxRequest& );
protected:
SwView_Impl* GetViewImpl() {return pViewImpl;}
void ImpSetVerb( int nSelType );
int GetSelectionType() const { return nSelectionType; }
void SetSelectionType(int nSet) { nSelectionType = nSet;}
// fuer die SwWebView
void SetShell( SfxShell* pS ) { pShell = pS; }
void SetFormShell( FmFormShell* pSh ) { pFormShell = pSh; }
virtual void SelectShell();
virtual void Activate(BOOL);
virtual void Deactivate(BOOL);
virtual void InnerResizePixel( const Point &rOfs, const Size &rSize );
virtual void OuterResizePixel( const Point &rOfs, const Size &rSize );
virtual Size GetOptimalSizePixel() const;
void SetImageButtonColor(Color& rColor);
const SwFrmFmt* GetLastTblFrmFmt() const {return pLastTableFormat;}
void SetLastTblFrmFmt(const SwFrmFmt* pSet) {pLastTableFormat = pSet;}
// form letter execution
void GenerateFormLetter(BOOL bUseCurrentDocument);
using SfxShell::GetDispatcher;
public:
SFX_DECL_VIEWFACTORY(SwView);
SFX_DECL_INTERFACE(SW_VIEWSHELL)
TYPEINFO();
SfxDispatcher &GetDispatcher();
void GotFocus() const;
virtual SdrView* GetDrawView() const;
virtual sal_Bool HasUIFeature( sal_uInt32 nFeature );
virtual void ShowCursor( FASTBOOL bOn = TRUE );
virtual ErrCode DoVerb( long nVerb );
virtual USHORT SetPrinter( SfxPrinter* pNew,
USHORT nDiff = SFX_PRINTER_ALL, bool bIsAPI=false);
ShellModes GetShellMode();
com::sun::star::view::XSelectionSupplier* GetUNOObject();
String GetSelectionTextParam( BOOL bCompleteWords,
BOOL bEraseTrail );
virtual BOOL HasSelection( BOOL bText ) const;
virtual String GetSelectionText( BOOL bCompleteWords = FALSE );
virtual USHORT PrepareClose( BOOL bUI = TRUE, BOOL bForBrowsing = FALSE );
virtual void MarginChanged();
// Shell sofort wechseln -> fuer GetSelectionObject
void StopShellTimer();
inline SwWrtShell& GetWrtShell () const { return *pWrtShell; }
inline SwWrtShell* GetWrtShellPtr() const { return pWrtShell; }
inline SwEditWin &GetEditWin() { return *pEditWin; }
inline const SwEditWin &GetEditWin () const { return *pEditWin; }
#if defined WIN || defined WNT || defined UNX
void ScannerEventHdl( const ::com::sun::star::lang::EventObject& rEventObject );
#endif
//Handler fuer Textbausteine an die Textshell rausreichen, gfs. anlegen
SwGlossaryHdl* GetGlosHdl();
inline const Rectangle& GetVisArea() const { return aVisArea; }
BOOL IsScroll(const Rectangle& rRect) const;
void Scroll( const Rectangle& rRect,
USHORT nRangeX = USHRT_MAX,
USHORT nRangeY = USHRT_MAX);
long SetVScrollMax(long lMax);
long SetHScrollMax(long lMax);
DECL_LINK( SpellError, LanguageType * );
BOOL ExecSpellPopup( const Point& rPt );
// SMARTTAGS
BOOL ExecSmartTagPopup( const Point& rPt );
DECL_LINK( OnlineSpellCallback, SpellCallbackInfo*);
BOOL ExecDrwTxtSpellPopup(const Point& rPt);
void SetTabColFromDocPos( const Point &rPt ) { aTabColFromDocPos = rPt; }
void SetTabColFromDoc( BOOL b ) { bTabColFromDoc = b; }
BOOL IsTabColFromDoc() const { return bTabColFromDoc; }
void SetTabRowFromDoc( BOOL b ) { bTabRowFromDoc = b; }
BOOL IsTabRowFromDoc() const { return bTabRowFromDoc; }
// -> #i23726#
void SetNumRuleNodeFromDoc( SwTxtNode * pNumRuleNode )
{ pNumRuleNodeFromDoc = pNumRuleNode; }
void SetNumIndentFromDoc(BOOL b) { bNumIndentFromDoc = b; }
BOOL IsNumIndentFromDoc() const { return NULL != pNumRuleNodeFromDoc; }
// <- #i23726#
void DocSzChgd( const Size& rNewSize );
const Size& GetDocSz() const { return aDocSz; }
virtual void SetVisArea( const Rectangle&, BOOL bUpdateScrollbar = TRUE);
void SetVisArea( const Point&, BOOL bUpdateScrollbar = TRUE);
void CheckVisArea();
static LAYOUT_NS Dialog* GetSearchDialog();
static USHORT GetMoveType();
static void SetMoveType(USHORT nSet);
DECL_STATIC_LINK( SwView, MoveNavigationHdl, bool* ); // #i75416#
static void SetActMark(sal_Int32 nSet);
BOOL HandleWheelCommands( const CommandEvent& );
// Rahmen einfuegen
void InsFrmMode(USHORT nCols);
void SetZoom( SvxZoomType eZoomType, short nFactor = 100, BOOL bViewOnly = FALSE);
virtual void SetZoomFactor( const Fraction &rX, const Fraction & );
void SetViewLayout( USHORT nColumns, bool bBookMode, BOOL bViewOnly = FALSE );
void ShowHScrollbar(sal_Bool bShow);
sal_Bool IsHScrollbarVisible()const;
void ShowVScrollbar(sal_Bool bShow);
sal_Bool IsVScrollbarVisible()const;
int CreateVLineal();
int KillVLineal();
int CreateTab();
int KillTab();
int StatVLineal() const { return ((Window*)pVRuler)->IsVisible(); }
void ChangeVLinealMetric(FieldUnit eUnit);
void GetVLinealMetric(FieldUnit& rToFill) const;
int StatTab() const { return ((Window*)pHRuler)->IsVisible(); }
SvxRuler& GetHLineal() { return *pHRuler; }
SvxRuler& GetVLineal() { return *pVRuler; }
void InvalidateRulerPos();
void ChangeTabMetric(FieldUnit eUnit);
void GetHLinealMetric(FieldUnit& rToFill) const;
// Handler
void Execute(SfxRequest&);
void ExecPageMove(SfxRequest&);
void ExecStyle(SfxRequest&);
void ExecLingu(SfxRequest&);
void ExecDataBase(SfxRequest&);
void ExecDlg(SfxRequest&);
void ExecDlgExt(SfxRequest&);
void ExecDBDlg(SfxRequest &);
void ExecColl(SfxRequest&);
void ExecutePrint(SfxRequest&);
void ExecDraw(SfxRequest&);
void ExecTabWin(SfxRequest&);
void ExecuteStatusLine(SfxRequest&);
DECL_LINK( ExecRulerClick, Ruler * );
void ExecSearch(SfxRequest&, BOOL bNoMessage = FALSE);
void ExecViewOptions(SfxRequest &);
void StateViewOptions(SfxItemSet &);
void StateSearch(SfxItemSet &);
void GetState(SfxItemSet&);
void StateStatusLine(SfxItemSet&);
// Funktionen fuer Drawing
void SetDrawFuncPtr(SwDrawBase* pFuncPtr);
inline SwDrawBase* GetDrawFuncPtr(/*BOOL bBuf = FALSE*/) const { return pDrawActual; }
void GetDrawState(SfxItemSet &rSet);
void ExitDraw();
inline BOOL IsDrawRotate() { return bDrawRotate; }
inline void FlipDrawRotate() { bDrawRotate = !bDrawRotate; }
inline BOOL IsDrawSelMode() { return bDrawSelMode; }
void SetSelDrawSlot();
inline void FlipDrawSelMode() { bDrawSelMode = !bDrawSelMode; }
void NoRotate(); // Rotate-Mode abschalten
BOOL EnterDrawTextMode(const Point& aDocPos);
void LeaveDrawCreate() { nDrawSfxId = nFormSfxId = USHRT_MAX; sDrawCustom.Erase();}
BOOL IsDrawMode() { return (nDrawSfxId != USHRT_MAX || nFormSfxId != USHRT_MAX); }
BOOL IsFormMode() const;
BOOL IsBezierEditMode();
BOOL AreOnlyFormsSelected() const;
BOOL HasDrwObj(SdrObject *pSdrObj) const;
BOOL HasOnlyObj(SdrObject *pSdrObj, UINT32 eObjInventor) const;
BOOL BeginTextEdit( SdrObject* pObj, SdrPageView* pPV=NULL,
Window* pWin=NULL, BOOL bIsNewObj=FALSE);
void StateTabWin(SfxItemSet&);
// Attribute haben sich geaendert
DECL_LINK( AttrChangedNotify, SwWrtShell * );
// form control has been activated
DECL_LINK( FormControlActivated, FmFormShell* );
// Links bearbeiten
void EditLinkDlg();
void AutoCaption(const USHORT nType, const SvGlobalName *pOleId = 0);
void InsertCaption(const InsCaptionOpt *pOpt);
// Async Aufruf durch Core
void UpdatePageNums(USHORT nPhyNum, USHORT nVirtNum, const String& rPgStr);
String GetPageStr(USHORT nPhyNum, USHORT nVirtNum, const String& rPgStr);
// Shell rausreichen
SfxShell *GetCurShell() { return pShell; }
SwDocShell *GetDocShell();
inline const SwDocShell *GetDocShell() const;
inline FmFormShell *GetFormShell() { return pFormShell; }
//damit in DToren der SubShells ggf. pShell zurueckgesetzt werden kann
void ResetSubShell() { pShell = 0; }
virtual void WriteUserData(String &, BOOL bBrowse = FALSE );
virtual void ReadUserData(const String &, BOOL bBrowse = FALSE );
virtual void ReadUserDataSequence ( const com::sun::star::uno::Sequence < com::sun::star::beans::PropertyValue >&, sal_Bool bBrowse );
virtual void WriteUserDataSequence ( com::sun::star::uno::Sequence < com::sun::star::beans::PropertyValue >&, sal_Bool bBrowse );
void SetCrsrAtTop( BOOL bFlag, BOOL bCenter = FALSE )
{ bTopCrsr = bFlag, bCenterCrsr = bCenter; }
BOOL IsCrsrAtTop() const { return bTopCrsr; }
BOOL IsCrsrAtCenter() const { return bCenterCrsr; }
BOOL JumpToSwMark( const String& rMark );
long InsertDoc( USHORT nSlotId, const String& rFileName,
const String& rFilterName, INT16 nVersion = 0 );
void ExecuteInsertDoc( SfxRequest& rRequest, const SfxPoolItem* pItem );
long InsertMedium( USHORT nSlotId, SfxMedium* pMedium, INT16 nVersion );
DECL_LINK( DialogClosedHdl, sfx2::FileDialogHelper * );
// status methods for clipboard.
// Status changes now notified from the clipboard.
BOOL IsPasteAllowed();
BOOL IsPasteSpecialAllowed();
// Enable mail merge - mail merge field dialog enabled
void EnableMailMerge(BOOL bEnable = TRUE);
//apply Accessiblity options
void ApplyAccessiblityOptions(SvtAccessibilityOptions& rAccessibilityOptions);
SwView(SfxViewFrame* pFrame, SfxViewShell*);
~SwView();
void NotifyDBChanged();
SfxObjectShellRef & GetTmpSelectionDoc();
SfxObjectShellRef & GetOrCreateTmpSelectionDoc();
void AddTransferable(SwTransferable& rTransferable);
// store MailMerge data while "Back to Mail Merge Wizard" FloatingWindow is active
// or to support printing
void SetMailMergeConfigItem(SwMailMergeConfigItem* pConfigItem, sal_uInt16 nRestart, sal_Bool bIsSource);
SwMailMergeConfigItem* GetMailMergeConfigItem();
sal_uInt16 GetMailMergeRestartPage() const;
sal_Bool IsMailMergeSourceView() const;
void ExecFormatPaintbrush(SfxRequest &);
void StateFormatPaintbrush(SfxItemSet &);
//public fuer D&D
int InsertGraphic( const String &rPath, const String &rFilter,
BOOL bLink = TRUE, GraphicFilter *pFlt = 0,
Graphic* pPreviewGrf = 0,
BOOL bRule = FALSE );
void ExecuteScan( SfxRequest& rReq );
SwPostItMgr* GetPostItMgr() { return mpPostItMgr;}
const SwPostItMgr* GetPostItMgr() const { return mpPostItMgr;}
};
// ----------------- inline Methoden ----------------------
inline long SwView::GetXScroll() const
{
return aVisArea.GetWidth() * nScrollX / 100L;
}
inline long SwView::GetYScroll() const
{
return aVisArea.GetHeight() * nScrollY / 100L;
}
inline const SwDocShell *SwView::GetDocShell() const
{
return ((SwView*)this)->GetDocShell();
}
//***********************************************************
SfxTabPage* CreatePrintOptionsPage( Window *pParent,
const SfxItemSet &rOptions,
BOOL bPreview);
#endif
|