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
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
|
/*************************************************************************
*
* 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 _IMPEDIT_HXX
#define _IMPEDIT_HXX
#include <editdoc.hxx>
#include <editsel.hxx>
#include <editundo.hxx>
#include <editobj2.hxx>
#include <editstt2.hxx>
#include <svx/editdata.hxx>
#include <svx/svxacorr.hxx>
#include <vcl/virdev.hxx>
#include <vcl/gdimtf.hxx>
#include <vcl/cursor.hxx>
#include <vcl/dndhelp.hxx>
#include <svl/ondemand.hxx>
#include <com/sun/star/linguistic2/XSpellAlternatives.hpp>
#include <com/sun/star/linguistic2/SpellFailure.hpp>
#include <com/sun/star/linguistic2/XSpellChecker.hpp>
#include <com/sun/star/linguistic2/XSpellChecker1.hpp>
#include <com/sun/star/linguistic2/XHyphenator.hpp>
#include <com/sun/star/lang/Locale.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/i18n/XBreakIterator.hpp>
#include <com/sun/star/i18n/CharacterIteratorMode.hpp>
#ifndef _COM_SUN_STAR_TEXT_WORDTYPE_HPP_
#include <com/sun/star/i18n/WordType.hpp>
#endif
#ifndef _COM_SUN_STAR_I18N_XEXTENDEDINPUTSEQUENCECHECKER_HDL_
#include <com/sun/star/i18n/XExtendedInputSequenceChecker.hpp>
#endif
#include <i18npool/lang.h>
#include <vos/ref.hxx>
DBG_NAMEEX( EditView )
DBG_NAMEEX( EditEngine )
#define PIMPEE pImpEditView->pEditEngine->pImpEditEngine
#define DEL_LEFT 1
#define DEL_RIGHT 2
#define TRAVEL_X_DONTKNOW 0xFFFFFFFF
#define CURSOR_BIDILEVEL_DONTKNOW 0xFFFF
#define MAXCHARSINPARA 0x3FFF-CHARPOSGROW // Max 16K, because WYSIWYG array
#define ATTRSPECIAL_WHOLEWORD 1
#define ATTRSPECIAL_EDGE 2
#define GETCRSR_TXTONLY 0x0001
#define GETCRSR_STARTOFLINE 0x0002
#define GETCRSR_ENDOFLINE 0x0004
#define GETCRSR_PREFERPORTIONSTART 0x0008
#define LINE_SEP 0x0A
typedef EENotify* EENotifyPtr;
SV_DECL_PTRARR_DEL( NotifyList, EENotifyPtr, 1, 1 ) // IMPL is in outliner.cxx, move to EE later and share declaration, or use BlockNotifications from EE directly
class EditView;
class EditEngine;
class SvxFontTable;
class SvxColorList;
class SvxSearchItem;
class SvxLRSpaceItem;
class TextRanger;
class SvKeyValueIterator;
class SvxForbiddenCharactersTable;
class SvtCTLOptions;
#include <svx/SpellPortions.hxx>
#include <svx/eedata.hxx>
class SvUShorts;
class SvxNumberFormat;
namespace com {
namespace sun {
namespace star {
namespace datatransfer {
namespace clipboard {
class XClipboard;
}}}}}
namespace svtools {
class ColorConfig;
}
struct DragAndDropInfo
{
Rectangle aCurCursor;
Rectangle aCurSavedCursor;
sal_uInt16 nSensibleRange;
sal_uInt16 nCursorWidth;
ESelection aBeginDragSel;
EditPaM aDropDest;
USHORT nOutlinerDropDest;
ESelection aDropSel;
VirtualDevice* pBackground;
const SvxFieldItem* pField;
sal_Bool bVisCursor : 1;
sal_Bool bDroppedInMe : 1;
sal_Bool bStarterOfDD : 1;
sal_Bool bHasValidData : 1;
sal_Bool bUndoAction : 1;
sal_Bool bOutlinerMode : 1;
sal_Bool bDragAccepted : 1;
DragAndDropInfo()
{
pBackground = NULL; bVisCursor = sal_False; bDroppedInMe = sal_False; bStarterOfDD = sal_False;
bHasValidData = sal_False; bUndoAction = sal_False; bOutlinerMode = sal_False;
nSensibleRange = 0; nCursorWidth = 0; pField = 0; nOutlinerDropDest = 0; bDragAccepted = sal_False;
}
};
struct ImplIMEInfos
{
String aOldTextAfterStartPos;
sal_uInt16* pAttribs;
EditPaM aPos;
sal_uInt16 nLen;
sal_Bool bCursor;
sal_Bool bWasCursorOverwrite;
ImplIMEInfos( const EditPaM& rPos, const String& rOldTextAfterStartPos );
~ImplIMEInfos();
void CopyAttribs( const sal_uInt16* pA, sal_uInt16 nL );
void DestroyAttribs();
};
// #i18881# to be able to identify the postions of changed words
// the positions of each portion need to be saved
typedef std::vector<EditSelection> SpellContentSelections;
struct SpellInfo
{
EESpellState eState;
EPaM aSpellStart;
EPaM aSpellTo;
sal_Bool bSpellToEnd;
sal_Bool bMultipleDoc;
::svx::SpellPortions aLastSpellPortions;
SpellContentSelections aLastSpellContentSelections;
SpellInfo()
{ bSpellToEnd = sal_True; eState = EE_SPELL_OK; bMultipleDoc = sal_False; }
};
// used for text conversion
struct ConvInfo
{
EPaM aConvStart;
EPaM aConvTo;
EPaM aConvContinue; // position to start search for next text portion (word) with
sal_Bool bConvToEnd;
sal_Bool bMultipleDoc;
ConvInfo() { bConvToEnd = sal_True; bMultipleDoc = sal_False; }
};
struct FormatterFontMetric
{
sal_uInt16 nMaxAscent;
sal_uInt16 nMaxDescent;
FormatterFontMetric() { nMaxAscent = 0; nMaxDescent = 0; /* nMinLeading = 0xFFFF; */ }
sal_uInt16 GetHeight() const { return nMaxAscent+nMaxDescent; }
};
class IdleFormattter : public Timer
{
private:
EditView* pView;
int nRestarts;
public:
IdleFormattter();
~IdleFormattter();
void DoIdleFormat( EditView* pV );
void ForceTimeout();
void ResetRestarts() { nRestarts = 0; }
EditView* GetView() { return pView; }
};
// ----------------------------------------------------------------------
// class ImpEditView
// ----------------------------------------------------------------------
class ImpEditView : public vcl::unohelper::DragAndDropClient
{
friend class EditView;
friend class EditEngine;
friend class ImpEditEngine;
using vcl::unohelper::DragAndDropClient::dragEnter;
using vcl::unohelper::DragAndDropClient::dragExit;
using vcl::unohelper::DragAndDropClient::dragOver;
private:
EditView* pEditView;
Cursor* pCursor;
Color* pBackgroundColor;
EditEngine* pEditEngine;
Window* pOutWin;
Pointer* pPointer;
DragAndDropInfo* pDragAndDropInfo;
::com::sun::star::uno::Reference< ::com::sun::star::datatransfer::dnd::XDragSourceListener > mxDnDListener;
long nInvMore;
ULONG nControl;
sal_uInt32 nTravelXPos;
sal_uInt16 nExtraCursorFlags;
sal_uInt16 nCursorBidiLevel;
sal_uInt16 nScrollDiffX;
sal_Bool bReadOnly;
sal_Bool bClickedInSelection;
sal_Bool bActiveDragAndDropListener;
Point aAnchorPoint;
Rectangle aOutArea;
Point aVisDocStartPos;
EESelectionMode eSelectionMode;
EditSelection aEditSelection;
EVAnchorMode eAnchorMode;
protected:
// DragAndDropClient
void dragGestureRecognized( const ::com::sun::star::datatransfer::dnd::DragGestureEvent& dge ) throw (::com::sun::star::uno::RuntimeException);
void dragDropEnd( const ::com::sun::star::datatransfer::dnd::DragSourceDropEvent& dsde ) throw (::com::sun::star::uno::RuntimeException);
void drop( const ::com::sun::star::datatransfer::dnd::DropTargetDropEvent& dtde ) throw (::com::sun::star::uno::RuntimeException);
void dragEnter( const ::com::sun::star::datatransfer::dnd::DropTargetDragEnterEvent& dtdee ) throw (::com::sun::star::uno::RuntimeException);
void dragExit( const ::com::sun::star::datatransfer::dnd::DropTargetEvent& dte ) throw (::com::sun::star::uno::RuntimeException);
void dragOver( const ::com::sun::star::datatransfer::dnd::DropTargetDragEvent& dtde ) throw (::com::sun::star::uno::RuntimeException);
void ShowDDCursor( const Rectangle& rRect );
void HideDDCursor();
void ImplDrawHighlightRect( Window* pOutWin, const Point& rDocPosTopLeft, const Point& rDocPosBottomRight, PolyPolygon* pPolyPoly );
public:
ImpEditView( EditView* pView, EditEngine* pEng, Window* pWindow );
~ImpEditView();
EditView* GetEditViewPtr() { return pEditView; }
sal_uInt16 GetScrollDiffX() const { return nScrollDiffX; }
void SetScrollDiffX( sal_uInt16 n ) { nScrollDiffX = n; }
sal_uInt16 GetCursorBidiLevel() const { return nCursorBidiLevel; }
void SetCursorBidiLevel( sal_uInt16 n ) { nCursorBidiLevel = n; }
Point GetDocPos( const Point& rWindowPos ) const;
Point GetWindowPos( const Point& rDocPos ) const;
Rectangle GetWindowPos( const Rectangle& rDocPos ) const;
void SetOutputArea( const Rectangle& rRec );
void ResetOutputArea( const Rectangle& rRec );
const Rectangle& GetOutputArea() const { return aOutArea; }
BOOL IsVertical() const;
BOOL PostKeyEvent( const KeyEvent& rKeyEvent );
BOOL MouseButtonUp( const MouseEvent& rMouseEvent );
BOOL MouseButtonDown( const MouseEvent& rMouseEvent );
BOOL MouseMove( const MouseEvent& rMouseEvent );
void Command( const CommandEvent& rCEvt );
void CutCopy( ::com::sun::star::uno::Reference< ::com::sun::star::datatransfer::clipboard::XClipboard >& rxClipboard, sal_Bool bCut );
void Paste( ::com::sun::star::uno::Reference< ::com::sun::star::datatransfer::clipboard::XClipboard >& rxClipboard, sal_Bool bUseSpecial = sal_False );
void SetVisDocStartPos( const Point& rPos ) { aVisDocStartPos = rPos; }
const Point& GetVisDocStartPos() const { return aVisDocStartPos; }
long GetVisDocLeft() const { return aVisDocStartPos.X(); }
long GetVisDocTop() const { return aVisDocStartPos.Y(); }
long GetVisDocRight() const { return aVisDocStartPos.X() + ( !IsVertical() ? aOutArea.GetWidth() : aOutArea.GetHeight() ); }
long GetVisDocBottom() const { return aVisDocStartPos.Y() + ( !IsVertical() ? aOutArea.GetHeight() : aOutArea.GetWidth() ); }
Rectangle GetVisDocArea() const;
EditSelection& GetEditSelection() { return aEditSelection; }
void SetEditSelection( const EditSelection& rEditSelection );
sal_Bool HasSelection() const { return aEditSelection.HasRange(); }
void DrawSelection() { DrawSelection( aEditSelection ); }
void DrawSelection( EditSelection, Region* pRegion = NULL );
Region* CalcSelectedRegion();
Window* GetWindow() const { return pOutWin; }
EESelectionMode GetSelectionMode() const { return eSelectionMode; }
void SetSelectionMode( EESelectionMode eMode );
inline void SetPointer( const Pointer& rPointer );
inline const Pointer& GetPointer();
inline void SetCursor( const Cursor& rCursor );
inline Cursor* GetCursor();
void AddDragAndDropListeners();
void RemoveDragAndDropListeners();
BOOL IsBulletArea( const Point& rPos, sal_uInt16* pPara );
// Fuer die SelectionEngine...
void CreateAnchor();
void DeselectAll();
sal_Bool SetCursorAtPoint( const Point& rPointPixel );
sal_Bool IsSelectionAtPoint( const Point& rPosPixel );
sal_Bool IsInSelection( const EditPaM& rPaM );
void SetAnchorMode( EVAnchorMode eMode );
EVAnchorMode GetAnchorMode() const { return eAnchorMode; }
void CalcAnchorPoint();
void RecalcOutputArea();
void ShowCursor( sal_Bool bGotoCursor, sal_Bool bForceVisCursor, BOOL test );
void ShowCursor( sal_Bool bGotoCursor, sal_Bool bForceVisCursor, USHORT nShowCursorFlags = 0 );
Pair Scroll( long ndX, long ndY, BYTE nRangeCheck = RGCHK_NEG );
void SetInsertMode( sal_Bool bInsert );
sal_Bool IsInsertMode() const { return ( ( nControl & EV_CNTRL_OVERWRITE ) == 0 ); }
void EnablePaste( sal_Bool bEnable ) { SetFlags( nControl, EV_CNTRL_ENABLEPASTE, bEnable ); }
sal_Bool IsPasteEnabled() const { return ( ( nControl & EV_CNTRL_ENABLEPASTE ) != 0 ); }
sal_Bool DoSingleLinePaste() const { return ( ( nControl & EV_CNTRL_SINGLELINEPASTE ) != 0 ); }
sal_Bool DoAutoScroll() const { return ( ( nControl & EV_CNTRL_AUTOSCROLL ) != 0 ); }
sal_Bool DoBigScroll() const { return ( ( nControl & EV_CNTRL_BIGSCROLL ) != 0 ); }
sal_Bool DoAutoSize() const { return ( ( nControl & EV_CNTRL_AUTOSIZE ) != 0 ); }
sal_Bool DoAutoWidth() const { return ( ( nControl & EV_CNTRL_AUTOSIZEX) != 0 ); }
sal_Bool DoAutoHeight() const { return ( ( nControl & EV_CNTRL_AUTOSIZEY) != 0 ); }
sal_Bool DoInvalidateMore() const { return ( ( nControl & EV_CNTRL_INVONEMORE ) != 0 ); }
void SetBackgroundColor( const Color& rColor );
const Color& GetBackgroundColor() const {
return ( pBackgroundColor ? *pBackgroundColor : pOutWin->GetBackground().GetColor() ); }
sal_Bool IsWrongSpelledWord( const EditPaM& rPaM, sal_Bool bMarkIfWrong );
String SpellIgnoreOrAddWord( sal_Bool bAdd );
const SvxFieldItem* GetField( const Point& rPos, sal_uInt16* pPara, sal_uInt16* pPos ) const;
void DeleteSelected();
// Ggf. mehr als OutputArea invalidieren, fuer den DrawingEngine-Textrahmen...
void SetInvalidateMore( sal_uInt16 nPixel ) { nInvMore = nPixel; }
sal_uInt16 GetInvalidateMore() const { return (sal_uInt16)nInvMore; }
};
// ----------------------------------------------------------------------
// ImpEditEngine
// ----------------------------------------------------------------------
typedef EditView* EditViewPtr;
SV_DECL_PTRARR( EditViews, EditViewPtr, 0, 1 )
class ImpEditEngine : public SfxListener
{
// Die Undos muessen direkt manipulieren ( private-Methoden ),
// damit keine neues Undos eingefuegt werden!
friend class EditUndoInsertChars;
friend class EditUndoRemoveChars;
friend class EditUndoDelContent;
friend class EditUndoConnectParas;
friend class EditUndoSplitPara;
friend class EditUndoInsertFeature;
friend class EditUndoMoveParagraphs;
friend class EditView;
friend class ImpEditView;
friend class EditEngine; // Fuer Zugriff auf Imp-Methoden
friend class EditRTFParser; // Fuer Zugriff auf Imp-Methoden
friend class EditHTMLParser; // Fuer Zugriff auf Imp-Methoden
friend class EdtAutoCorrDoc; // Fuer Zugriff auf Imp-Methoden
friend class EditDbg; // DebugRoutinen
private:
// ================================================================
// Daten...
// ================================================================
// Dokument-Spezifische Daten...
ParaPortionList aParaPortionList; // Formatierung
Size aPaperSize; // Layout
Size aMinAutoPaperSize; // Layout ?
Size aMaxAutoPaperSize; // Layout ?
EditDoc aEditDoc; // Dokumenteninhalt
// Engine-Spezifische Daten....
EditEngine* pEditEngine;
EditViews aEditViews;
EditView* pActiveView;
TextRanger* pTextRanger;
SfxStyleSheetPool* pStylePool;
SfxItemPool* pTextObjectPool;
VirtualDevice* pVirtDev;
OutputDevice* pRefDev;
svtools::ColorConfig* pColorConfig;
mutable SvtCTLOptions* pCTLOptions;
SfxItemSet* pEmptyItemSet;
EditUndoManager* pUndoManager;
ESelection* pUndoMarkSelection;
ImplIMEInfos* mpIMEInfos;
NotifyList aNotifyCache;
XubString aWordDelimiters;
XubString aGroupChars;
EditSelFunctionSet aSelFuncSet;
EditSelectionEngine aSelEngine;
Color maBackgroundColor;
sal_uInt32 nBlockNotifications;
sal_uInt16 nStretchX;
sal_uInt16 nStretchY;
USHORT nAsianCompressionMode;
BOOL bKernAsianPunctuation;
BOOL bAddExtLeading;
EEHorizontalTextDirection eDefaultHorizontalTextDirection;
sal_uInt16 nBigTextObjectStart;
::com::sun::star::uno::Reference<
::com::sun::star::linguistic2::XSpellChecker1 > xSpeller;
::com::sun::star::uno::Reference<
::com::sun::star::linguistic2::XHyphenator > xHyphenator;
SpellInfo* pSpellInfo;
mutable ::com::sun::star::uno::Reference < ::com::sun::star::i18n::XBreakIterator > xBI;
mutable ::com::sun::star::uno::Reference < ::com::sun::star::i18n::XExtendedInputSequenceChecker > xISC;
ConvInfo * pConvInfo;
XubString aAutoCompleteText;
InternalEditStatus aStatus;
LanguageType eDefLanguage;
OnDemandLocaleDataWrapper xLocaleDataWrapper;
OnDemandTransliterationWrapper xTransliterationWrapper;
sal_Bool bIsFormatting;
sal_Bool bFormatted;
sal_Bool bInSelection;
sal_Bool bIsInUndo;
sal_Bool bUpdate;
sal_Bool bUndoEnabled;
sal_Bool bOwnerOfRefDev;
sal_Bool bDowning;
sal_Bool bUseAutoColor;
sal_Bool bForceAutoColor;
sal_Bool bCallParaInsertedOrDeleted;
sal_Bool bImpConvertFirstCall; // specifies if ImpConvert is called the very first time after Convert was called
sal_Bool bFirstWordCapitalization; // specifies if auto-correction should capitalize the first word or not
// Fuer Formatierung / Update....
DeletedNodesList aDeletedNodes;
Rectangle aInvalidRec;
sal_uInt32 nCurTextHeight;
sal_uInt16 nOnePixelInRef;
IdleFormattter aIdleFormatter;
Timer aOnlineSpellTimer;
// Wenn an einer Stelle erkannt wird, dass der StatusHdl gerufen werden
// muss, dies aber nicht sofort geschehen darf (kritischer Abschnitt):
Timer aStatusTimer;
Link aStatusHdlLink;
Link aNotifyHdl;
Link aImportHdl;
Link aBeginMovingParagraphsHdl;
Link aEndMovingParagraphsHdl;
Link aBeginPasteOrDropHdl;
Link aEndPasteOrDropHdl;
Link aModifyHdl;
Link maBeginDropHdl;
Link maEndDropHdl;
vos::ORef<SvxForbiddenCharactersTable> xForbiddenCharsTable;
// ================================================================
// Methoden...
// ================================================================
void CursorMoved( ContentNode* pPrevNode );
void ParaAttribsChanged( ContentNode* pNode );
void TextModified();
void CalcHeight( ParaPortion* pPortion );
// ggf. lieber inline, aber so einiges...
void InsertUndo( EditUndo* pUndo, sal_Bool bTryMerge = sal_False );
void ResetUndoManager();
sal_Bool HasUndoManager() const { return pUndoManager ? sal_True : sal_False; }
EditUndoSetAttribs* CreateAttribUndo( EditSelection aSel, const SfxItemSet& rSet );
EditPaM GetPaM( Point aDocPos, sal_Bool bSmart = sal_True );
EditPaM GetPaM( ParaPortion* pPortion, Point aPos, sal_Bool bSmart = sal_True );
long GetXPos( ParaPortion* pParaPortion, EditLine* pLine, USHORT nIndex, BOOL bPreferPortionStart = FALSE );
long GetPortionXOffset( ParaPortion* pParaPortion, EditLine* pLine, USHORT nTextPortion );
USHORT GetChar( ParaPortion* pParaPortion, EditLine* pLine, long nX, BOOL bSmart = TRUE );
Range GetInvalidYOffsets( ParaPortion* pPortion );
Range GetLineXPosStartEnd( ParaPortion* pParaPortion, EditLine* pLine );
void SetParaAttrib( BYTE nFunc, EditSelection aSel, sal_uInt16 nValue );
sal_uInt16 GetParaAttrib( BYTE nFunc, EditSelection aSel );
void SetCharAttrib( EditSelection aSel, const SfxPoolItem& rItem );
void ParaAttribsToCharAttribs( ContentNode* pNode );
void GetCharAttribs( sal_uInt16 nPara, EECharAttribArray& rLst ) const;
EditTextObject* CreateBinTextObject( EditSelection aSelection, SfxItemPool*, sal_Bool bAllowBigObjects = sal_False, sal_uInt16 nBigObjStart = 0 ) const;
void StoreBinTextObject( SvStream& rOStream, BinTextObject& rTextObject );
EditSelection InsertBinTextObject( BinTextObject&, EditPaM aPaM );
EditSelection InsertText( ::com::sun::star::uno::Reference< ::com::sun::star::datatransfer::XTransferable >& rxDataObj, const String& rBaseURL, const EditPaM& rPaM, BOOL bUseSpecial );
EditPaM Clear();
EditPaM RemoveText();
EditPaM RemoveText( EditSelection aEditSelection );
sal_Bool CreateLines( USHORT nPara, sal_uInt32 nStartPosY );
void CreateAndInsertEmptyLine( ParaPortion* pParaPortion, sal_uInt32 nStartPosY );
sal_Bool FinishCreateLines( ParaPortion* pParaPortion );
void CalcCharPositions( ParaPortion* pParaPortion );
void CreateTextPortions( ParaPortion* pParaPortion, sal_uInt16& rStartPos /*, sal_Bool bCreateBlockPortions */ );
void RecalcTextPortion( ParaPortion* pParaPortion, sal_uInt16 nStartPos, short nNewChars );
sal_uInt16 SplitTextPortion( ParaPortion* pParaPortion, sal_uInt16 nPos, EditLine* pCurLine = 0 );
void SeekCursor( ContentNode* pNode, sal_uInt16 nPos, SvxFont& rFont, OutputDevice* pOut = NULL, sal_uInt16 nIgnoreWhich = 0 );
void RecalcFormatterFontMetrics( FormatterFontMetric& rCurMetrics, SvxFont& rFont );
void CheckAutoPageSize();
void ImpBreakLine( ParaPortion* pParaPortion, EditLine* pLine, TextPortion* pPortion, sal_uInt16 nPortionStart, long nRemainingWidth, sal_Bool bCanHyphenate );
void ImpAdjustBlocks( ParaPortion* pParaPortion, EditLine* pLine, long nRemainingSpace );
EditPaM ImpConnectParagraphs( ContentNode* pLeft, ContentNode* pRight, sal_Bool bBackward = sal_False );
EditPaM ImpDeleteSelection( EditSelection aEditSelection);
EditPaM ImpInsertParaBreak( const EditPaM& rPaM, sal_Bool bKeepEndingAttribs = sal_True );
EditPaM ImpInsertParaBreak( const EditSelection& rEditSelection, sal_Bool bKeepEndingAttribs = sal_True );
EditPaM ImpInsertText( EditSelection aCurEditSelection, const String& rStr );
EditPaM ImpInsertFeature( EditSelection aEditSelection, const SfxPoolItem& rItem );
void ImpRemoveChars( const EditPaM& rPaM, sal_uInt16 nChars, EditUndoRemoveChars* pCurUndo = 0 );
void ImpRemoveParagraph( sal_uInt16 nPara );
EditSelection ImpMoveParagraphs( Range aParagraphs, sal_uInt16 nNewPos );
EditPaM ImpFastInsertText( EditPaM aPaM, const String& rStr );
EditPaM ImpFastInsertParagraph( sal_uInt16 nPara );
sal_Bool ImpCheckRefMapMode();
BOOL ImplHasText() const;
void ImpFindKashidas( ContentNode* pNode, USHORT nStart, USHORT nEnd, SvUShorts& rArray );
void InsertContent( ContentNode* pNode, sal_uInt16 nPos );
EditPaM SplitContent( sal_uInt16 nNode, sal_uInt16 nSepPos );
EditPaM ConnectContents( sal_uInt16 nLeftNode, sal_Bool bBackward );
void ShowParagraph( sal_uInt16 nParagraph, sal_Bool bShow );
sal_Bool IsParagraphVisible( sal_uInt16 nParagraph );
EditPaM PageUp( const EditPaM& rPaM, EditView* pView);
EditPaM PageDown( const EditPaM& rPaM, EditView* pView);
EditPaM CursorUp( const EditPaM& rPaM, EditView* pEditView );
EditPaM CursorDown( const EditPaM& rPaM, EditView* pEditView );
EditPaM CursorLeft( const EditPaM& rPaM, USHORT nCharacterIteratorMode = ::com::sun::star::i18n::CharacterIteratorMode::SKIPCELL );
EditPaM CursorRight( const EditPaM& rPaM, USHORT nCharacterIteratorMode = ::com::sun::star::i18n::CharacterIteratorMode::SKIPCELL );
EditPaM CursorStartOfLine( const EditPaM& rPaM );
EditPaM CursorEndOfLine( const EditPaM& rPaM );
EditPaM CursorStartOfParagraph( const EditPaM& rPaM );
EditPaM CursorEndOfParagraph( const EditPaM& rPaM );
EditPaM CursorStartOfDoc();
EditPaM CursorEndOfDoc();
EditPaM WordLeft( const EditPaM& rPaM, sal_Int16 nWordType = ::com::sun::star::i18n::WordType::ANYWORD_IGNOREWHITESPACES );
EditPaM WordRight( const EditPaM& rPaM, sal_Int16 nWordType = ::com::sun::star::i18n::WordType::ANYWORD_IGNOREWHITESPACES );
EditPaM StartOfWord( const EditPaM& rPaM, sal_Int16 nWordType = ::com::sun::star::i18n::WordType::ANYWORD_IGNOREWHITESPACES );
EditPaM EndOfWord( const EditPaM& rPaM, sal_Int16 nWordType = ::com::sun::star::i18n::WordType::ANYWORD_IGNOREWHITESPACES );
EditSelection SelectWord( const EditSelection& rCurSelection, sal_Int16 nWordType = ::com::sun::star::i18n::WordType::ANYWORD_IGNOREWHITESPACES, BOOL bAcceptStartOfWord = TRUE );
EditSelection SelectSentence( const EditSelection& rCurSel );
EditPaM CursorVisualLeftRight( EditView* pEditView, const EditPaM& rPaM, USHORT nCharacterIteratorMode, BOOL bToLeft );
EditPaM CursorVisualStartEnd( EditView* pEditView, const EditPaM& rPaM, BOOL bStart );
void InitScriptTypes( USHORT nPara );
USHORT GetScriptType( const EditPaM& rPaM, USHORT* pEndPos = NULL ) const;
USHORT GetScriptType( const EditSelection& rSel ) const;
BOOL IsScriptChange( const EditPaM& rPaM ) const;
BOOL HasScriptType( USHORT nPara, USHORT nType ) const;
BOOL ImplCalcAsianCompression( ContentNode* pNode, TextPortion* pTextPortion, USHORT nStartPos, sal_Int32* pDXArray, USHORT n100thPercentFromMax, BOOL bManipulateDXArray );
void ImplExpandCompressedPortions( EditLine* pLine, ParaPortion* pParaPortion, long nRemainingWidth );
void ImplInitLayoutMode( OutputDevice* pOutDev, USHORT nPara, USHORT nIndex );
void ImplInitDigitMode( OutputDevice* pOutDev, String* pString, xub_StrLen nStt, xub_StrLen nLen, LanguageType eLang );
EditPaM ReadText( SvStream& rInput, EditSelection aSel );
EditPaM ReadRTF( SvStream& rInput, EditSelection aSel );
EditPaM ReadXML( SvStream& rInput, EditSelection aSel );
EditPaM ReadHTML( SvStream& rInput, const String& rBaseURL, EditSelection aSel, SvKeyValueIterator* pHTTPHeaderAttrs );
EditPaM ReadBin( SvStream& rInput, EditSelection aSel );
sal_uInt32 WriteText( SvStream& rOutput, EditSelection aSel );
sal_uInt32 WriteRTF( SvStream& rOutput, EditSelection aSel );
sal_uInt32 WriteXML( SvStream& rOutput, EditSelection aSel );
sal_uInt32 WriteHTML( SvStream& rOutput, EditSelection aSel );
sal_uInt32 WriteBin( SvStream& rOutput, EditSelection aSel, BOOL bStoreUnicode = FALSE ) const;
void WriteItemAsRTF( const SfxPoolItem& rItem, SvStream& rOutput, sal_uInt16 nPara, sal_uInt16 nPos,
SvxFontTable& rFontTable, SvxColorList& rColorList );
sal_Bool WriteItemListAsRTF( ItemList& rLst, SvStream& rOutput, sal_uInt16 nPara, sal_uInt16 nPos,
SvxFontTable& rFontTable, SvxColorList& rColorList );
long LogicToTwips( long n );
inline short GetXValue( short nXValue ) const;
inline sal_uInt16 GetXValue( sal_uInt16 nXValue ) const;
inline long GetXValue( long nXValue ) const;
inline short GetYValue( short nYValue ) const;
inline sal_uInt16 GetYValue( sal_uInt16 nYValue ) const;
ContentNode* GetPrevVisNode( ContentNode* pCurNode );
ContentNode* GetNextVisNode( ContentNode* pCurNode );
ParaPortion* GetPrevVisPortion( ParaPortion* pCurPortion );
ParaPortion* GetNextVisPortion( ParaPortion* pCurPortion );
void SetBackgroundColor( const Color& rColor ) { maBackgroundColor = rColor; }
Color GetBackgroundColor() const { return maBackgroundColor; }
Color GetAutoColor() const;
void EnableAutoColor( BOOL b ) { bUseAutoColor = b; }
BOOL IsAutoColorEnabled() const { return bUseAutoColor; }
void ForceAutoColor( BOOL b ) { bForceAutoColor = b; }
BOOL IsForceAutoColor() const { return bForceAutoColor; }
inline VirtualDevice* GetVirtualDevice( const MapMode& rMapMode, ULONG nDrawMode );
inline void EraseVirtualDevice();
DECL_LINK( StatusTimerHdl, Timer * );
DECL_LINK( IdleFormatHdl, Timer * );
DECL_LINK( OnlineSpellHdl, Timer * );
DECL_LINK( DocModified, void* );
void CheckIdleFormatter();
inline ParaPortion* FindParaPortion( ContentNode* pNode ) const;
::com::sun::star::uno::Reference< ::com::sun::star::datatransfer::XTransferable > CreateTransferable( const EditSelection& rSelection ) const;
void SetValidPaperSize( const Size& rSz );
::com::sun::star::uno::Reference < ::com::sun::star::i18n::XBreakIterator > ImplGetBreakIterator() const;
::com::sun::star::uno::Reference < ::com::sun::star::i18n::XExtendedInputSequenceChecker > ImplGetInputSequenceChecker() const;
/** Decorate metafile output with verbose text comments
This method is used to wrap SvxFont::QuickDrawText, to
determine character-by-character wise, which logical text
units like characters, words and sentences are contained in
the output string at hand. This is necessary for slideshow
text effects.
*/
void ImplFillTextMarkingVector(const ::com::sun::star::lang::Locale& rLocale, EEngineData::TextMarkingVector& rTextMarkingVector, const String& rTxt, const USHORT nIdx, const USHORT nLen) const;
protected:
virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint );
public:
ImpEditEngine( EditEngine* pEditEngine, SfxItemPool* pPool );
~ImpEditEngine();
void InitDoc( BOOL bKeepParaAttribs );
EditDoc& GetEditDoc() { return aEditDoc; }
const EditDoc& GetEditDoc() const { return aEditDoc; }
inline EditUndoManager& GetUndoManager();
void SetUpdateMode( sal_Bool bUp, EditView* pCurView = 0, sal_Bool bForceUpdate = sal_False );
sal_Bool GetUpdateMode() const { return bUpdate; }
const ParaPortionList& GetParaPortions() const { return aParaPortionList; }
ParaPortionList& GetParaPortions() { return aParaPortionList; }
EditViews& GetEditViews() { return aEditViews; }
const Size& GetPaperSize() const { return aPaperSize; }
void SetPaperSize( const Size& rSz ) { aPaperSize = rSz; }
void SetVertical( BOOL bVertical );
BOOL IsVertical() const { return GetEditDoc().IsVertical(); }
void SetFixedCellHeight( BOOL bUseFixedCellHeight );
BOOL IsFixedCellHeight() const { return GetEditDoc().IsFixedCellHeight(); }
void SetDefaultHorizontalTextDirection( EEHorizontalTextDirection eHTextDir ) { eDefaultHorizontalTextDirection = eHTextDir; }
EEHorizontalTextDirection GetDefaultHorizontalTextDirection() const { return eDefaultHorizontalTextDirection; }
void InitWritingDirections( USHORT nPara );
BOOL IsRightToLeft( USHORT nPara ) const;
BYTE GetRightToLeft( USHORT nPara, USHORT nChar, USHORT* pStart = NULL, USHORT* pEnd = NULL );
BOOL HasDifferentRTLLevels( const ContentNode* pNode );
void SetTextRanger( TextRanger* pRanger );
TextRanger* GetTextRanger() const { return pTextRanger; }
const Size& GetMinAutoPaperSize() const { return aMinAutoPaperSize; }
void SetMinAutoPaperSize( const Size& rSz ) { aMinAutoPaperSize = rSz; }
const Size& GetMaxAutoPaperSize() const { return aMaxAutoPaperSize; }
void SetMaxAutoPaperSize( const Size& rSz ) { aMaxAutoPaperSize = rSz; }
void FormatDoc();
void FormatFullDoc();
void UpdateViews( EditView* pCurView = 0 );
void Paint( ImpEditView* pView, const Rectangle& rRect, sal_Bool bUseVirtDev = sal_False );
void Paint( OutputDevice* pOutDev, Rectangle aClipRec, Point aStartPos, sal_Bool bStripOnly = sal_False, short nOrientation = 0 );
sal_Bool MouseButtonUp( const MouseEvent& rMouseEvent, EditView* pView );
sal_Bool MouseButtonDown( const MouseEvent& rMouseEvent, EditView* pView );
sal_Bool MouseMove( const MouseEvent& rMouseEvent, EditView* pView );
void Command( const CommandEvent& rCEvt, EditView* pView );
EditSelectionEngine& GetSelEngine() { return aSelEngine; }
XubString GetSelected( const EditSelection& rSel, const LineEnd eParaSep = LINEEND_LF ) const;
const SfxItemSet& GetEmptyItemSet();
void UpdateSelections();
void EnableUndo( sal_Bool bEnable );
sal_Bool IsUndoEnabled() { return bUndoEnabled; }
void SetUndoMode( sal_Bool b ) { bIsInUndo = b; }
sal_Bool IsInUndo() { return bIsInUndo; }
void SetCallParaInsertedOrDeleted( sal_Bool b ) { bCallParaInsertedOrDeleted = b; }
sal_Bool IsCallParaInsertedOrDeleted() const { return bCallParaInsertedOrDeleted; }
sal_Bool IsFormatted() const { return bFormatted; }
sal_Bool IsFormatting() const { return bIsFormatting; }
void SetText( const String& rText );
EditPaM DeleteSelected( EditSelection aEditSelection);
EditPaM InsertText( const EditSelection& rCurEditSelection, sal_Unicode c, sal_Bool bOverwrite, sal_Bool bIsUserInput = sal_False );
EditPaM InsertText( EditSelection aCurEditSelection, const String& rStr );
EditPaM AutoCorrect( const EditSelection& rCurEditSelection, sal_Unicode c, sal_Bool bOverwrite );
EditPaM DeleteLeftOrRight( const EditSelection& rEditSelection, BYTE nMode, BYTE nDelMode = DELMODE_SIMPLE );
EditPaM InsertParaBreak( EditSelection aEditSelection );
EditPaM InsertLineBreak( EditSelection aEditSelection );
EditPaM InsertTab( EditSelection aEditSelection );
EditPaM InsertField( EditSelection aEditSelection, const SvxFieldItem& rFld );
sal_Bool UpdateFields();
EditPaM Read( SvStream& rInput, const String& rBaseURL, EETextFormat eFormat, EditSelection aSel, SvKeyValueIterator* pHTTPHeaderAttrs = NULL );
void Write( SvStream& rOutput, EETextFormat eFormat, EditSelection aSel );
EditTextObject* CreateTextObject();
EditTextObject* CreateTextObject( EditSelection aSel );
void SetText( const EditTextObject& rTextObject );
EditSelection InsertText( const EditTextObject& rTextObject, EditSelection aSel );
EditSelection MoveCursor( const KeyEvent& rKeyEvent, EditView* pEditView );
EditSelection MoveParagraphs( Range aParagraphs, sal_uInt16 nNewPos, EditView* pCurView );
sal_uInt32 CalcTextHeight();
sal_uInt32 GetTextHeight() const;
sal_uInt32 CalcTextWidth( BOOL bIgnoreExtraSpace );
sal_uInt32 CalcLineWidth( ParaPortion* pPortion, EditLine* pLine, BOOL bIgnoreExtraSpace );
sal_uInt16 GetLineCount( sal_uInt16 nParagraph ) const;
sal_uInt16 GetLineLen( sal_uInt16 nParagraph, sal_uInt16 nLine ) const;
void GetLineBoundaries( /*out*/USHORT &rStart, /*out*/USHORT &rEnd, USHORT nParagraph, USHORT nLine ) const;
USHORT GetLineNumberAtIndex( USHORT nPara, USHORT nIndex ) const;
sal_uInt16 GetLineHeight( sal_uInt16 nParagraph, sal_uInt16 nLine );
sal_uInt32 GetParaHeight( sal_uInt16 nParagraph );
SfxItemSet GetAttribs( USHORT nPara, USHORT nStart, USHORT nEnd, sal_uInt8 nFlags = 0xFF ) const;
SfxItemSet GetAttribs( EditSelection aSel, BOOL bOnlyHardAttrib = FALSE );
void SetAttribs( EditSelection aSel, const SfxItemSet& rSet, BYTE nSpecial = 0 );
void RemoveCharAttribs( EditSelection aSel, sal_Bool bRemoveParaAttribs, sal_uInt16 nWhich = 0 );
void RemoveCharAttribs( sal_uInt16 nPara, sal_uInt16 nWhich = 0, sal_Bool bRemoveFeatures = sal_False );
void SetFlatMode( sal_Bool bFlat );
void SetParaAttribs( sal_uInt16 nPara, const SfxItemSet& rSet );
const SfxItemSet& GetParaAttribs( sal_uInt16 nPara ) const;
sal_Bool HasParaAttrib( sal_uInt16 nPara, sal_uInt16 nWhich ) const;
const SfxPoolItem& GetParaAttrib( sal_uInt16 nPara, sal_uInt16 nWhich ) const;
Rectangle PaMtoEditCursor( EditPaM aPaM, sal_uInt16 nFlags = 0 );
Rectangle GetEditCursor( ParaPortion* pPortion, sal_uInt16 nIndex, sal_uInt16 nFlags = 0 );
sal_Bool IsModified() const { return aEditDoc.IsModified(); }
void SetModifyFlag( sal_Bool b ) { aEditDoc.SetModified( b ); }
void SetModifyHdl( const Link& rLink ) { aModifyHdl = rLink; }
Link GetModifyHdl() const { return aModifyHdl; }
sal_Bool IsInSelectionMode() { return bInSelection; }
void StopSelectionMode();
void IndentBlock( EditView* pView, sal_Bool bRight );
// Fuer Undo/Redo
sal_Bool Undo( EditView* pView );
sal_Bool Redo( EditView* pView );
sal_Bool Repeat( EditView* pView );
// OV-Special
void InvalidateFromParagraph( sal_uInt16 nFirstInvPara );
EditPaM InsertParagraph( sal_uInt16 nPara );
EditSelection* SelectParagraph( sal_uInt16 nPara );
void SetStatusEventHdl( const Link& rLink ) { aStatusHdlLink = rLink; }
Link GetStatusEventHdl() const { return aStatusHdlLink; }
void SetNotifyHdl( const Link& rLink ) { aNotifyHdl = rLink; }
Link GetNotifyHdl() const { return aNotifyHdl; }
void FormatAndUpdate( EditView* pCurView = 0 );
inline void IdleFormatAndUpdate( EditView* pCurView = 0 );
svtools::ColorConfig& GetColorConfig();
BOOL IsVisualCursorTravelingEnabled();
BOOL DoVisualCursorTraveling( const ContentNode* pNode );
EditSelection ConvertSelection( sal_uInt16 nStartPara, sal_uInt16 nStartPos, sal_uInt16 nEndPara, sal_uInt16 nEndPos ) const;
inline EPaM CreateEPaM( const EditPaM& rPaM );
inline EditPaM CreateEditPaM( const EPaM& rEPaM );
inline ESelection CreateESel( const EditSelection& rSel );
inline EditSelection CreateSel( const ESelection& rSel );
void SetStyleSheetPool( SfxStyleSheetPool* pSPool );
SfxStyleSheetPool* GetStyleSheetPool() const { return pStylePool; }
void SetStyleSheet( EditSelection aSel, SfxStyleSheet* pStyle );
void SetStyleSheet( sal_uInt16 nPara, SfxStyleSheet* pStyle );
SfxStyleSheet* GetStyleSheet( sal_uInt16 nPara ) const;
void UpdateParagraphsWithStyleSheet( SfxStyleSheet* pStyle );
void RemoveStyleFromParagraphs( SfxStyleSheet* pStyle );
OutputDevice* GetRefDevice() const { return pRefDev; }
void SetRefDevice( OutputDevice* pRefDef );
const MapMode& GetRefMapMode() { return pRefDev->GetMapMode(); }
void SetRefMapMode( const MapMode& rMapMode );
InternalEditStatus& GetStatus() { return aStatus; }
void CallStatusHdl();
void DelayedCallStatusHdl() { aStatusTimer.Start(); }
void CallNotify( EENotify& rNotify );
void EnterBlockNotifications();
void LeaveBlockNotifications();
EditSelection MatchGroup( const EditSelection& rSel );
void UndoActionStart( sal_uInt16 nId );
void UndoActionStart( sal_uInt16 nId, const ESelection& rSel );
void UndoActionEnd( sal_uInt16 nId );
EditView* GetActiveView() const { return pActiveView; }
void SetActiveView( EditView* pView );
::com::sun::star::uno::Reference<
::com::sun::star::linguistic2::XSpellChecker1 >
GetSpeller();
void SetSpeller( ::com::sun::star::uno::Reference<
::com::sun::star::linguistic2::XSpellChecker1 > &xSpl )
{ xSpeller = xSpl; }
::com::sun::star::uno::Reference<
::com::sun::star::linguistic2::XHyphenator >
GetHyphenator() const { return xHyphenator; }
void SetHyphenator( ::com::sun::star::uno::Reference<
::com::sun::star::linguistic2::XHyphenator > &xHyph )
{ xHyphenator = xHyph; }
SpellInfo* GetSpellInfo() const { return pSpellInfo; }
void SetDefaultLanguage( LanguageType eLang ) { eDefLanguage = eLang; }
LanguageType GetDefaultLanguage() const { return eDefLanguage; }
LanguageType GetLanguage( const EditSelection rSelection ) const;
LanguageType GetLanguage( const EditPaM& rPaM, USHORT* pEndPos = NULL ) const;
::com::sun::star::lang::Locale GetLocale( const EditPaM& rPaM ) const;
void DoOnlineSpelling( ContentNode* pThisNodeOnly = 0, sal_Bool bSpellAtCursorPos = sal_False, sal_Bool bInteruptable = sal_True );
EESpellState Spell( EditView* pEditView, sal_Bool bMultipleDoc );
EESpellState HasSpellErrors();
EESpellState StartThesaurus( EditView* pEditView );
::com::sun::star::uno::Reference<
::com::sun::star::linguistic2::XSpellAlternatives >
ImpSpell( EditView* pEditView );
// text conversion functions
void Convert( EditView* pEditView, LanguageType nSrcLang, LanguageType nDestLang, const Font *pDestFont, INT32 nOptions, sal_Bool bIsInteractive, sal_Bool bMultipleDoc );
void ImpConvert( rtl::OUString &rConvTxt, LanguageType &rConvTxtLang, EditView* pEditView, LanguageType nSrcLang, const ESelection &rConvRange,
sal_Bool bAllowImplicitChangesForNotConvertibleText, LanguageType nTargetLang, const Font *pTargetFont );
ConvInfo * GetConvInfo() const { return pConvInfo; }
sal_Bool HasConvertibleTextPortion( LanguageType nLang );
void SetLanguageAndFont( const ESelection &rESel,
LanguageType nLang, USHORT nLangWhichId,
const Font *pFont, USHORT nFontWhichId );
// returns true if input sequence checking should be applied
sal_Bool IsInputSequenceCheckingRequired( sal_Unicode nChar, const EditSelection& rCurSel ) const;
//find the next error within the given selection - forward only!
::com::sun::star::uno::Reference<
::com::sun::star::linguistic2::XSpellAlternatives >
ImpFindNextError(EditSelection& rSelection);
//initialize sentence spelling
void StartSpelling(EditView& rEditView, sal_Bool bMultipleDoc);
//spell and return a sentence
bool SpellSentence(EditView& rView, ::svx::SpellPortions& rToFill, bool bIsGrammarChecking );
//put spelling back to start of current sentence - needed after switch of grammar support
void PutSpellingToSentenceStart( EditView& rEditView );
//applies a changed sentence
void ApplyChangedSentence(EditView& rEditView, const ::svx::SpellPortions& rNewPortions, bool bIsGrammarChecking );
//deinitialize sentence spelling
void EndSpelling();
//adds one or more portions of text to the SpellPortions depending on language changes
void AddPortionIterated(
EditView& rEditView,
const EditSelection rSel,
::com::sun::star::uno::Reference< ::com::sun::star::linguistic2::XSpellAlternatives > xAlt,
::svx::SpellPortions& rToFill);
//adds one portion to the SpellPortions
void AddPortion(
const EditSelection rSel,
::com::sun::star::uno::Reference< ::com::sun::star::linguistic2::XSpellAlternatives > xAlt,
::svx::SpellPortions& rToFill,
bool bIsField );
sal_Bool Search( const SvxSearchItem& rSearchItem, EditView* pView );
sal_Bool ImpSearch( const SvxSearchItem& rSearchItem, const EditSelection& rSearchSelection, const EditPaM& rStartPos, EditSelection& rFoundSel );
sal_uInt16 StartSearchAndReplace( EditView* pEditView, const SvxSearchItem& rSearchItem );
sal_Bool HasText( const SvxSearchItem& rSearchItem );
void SetEditTextObjectPool( SfxItemPool* pP ) { pTextObjectPool = pP; }
SfxItemPool* GetEditTextObjectPool() const { return pTextObjectPool; }
const SvxNumberFormat * GetNumberFormat( const ContentNode* pNode ) const;
sal_Int32 GetSpaceBeforeAndMinLabelWidth( const ContentNode *pNode, sal_Int32 *pnSpaceBefore = 0, sal_Int32 *pnMinLabelWidth = 0 ) const;
const SvxLRSpaceItem& GetLRSpaceItem( ContentNode* pNode );
SvxAdjust GetJustification( USHORT nPara ) const;
void SetCharStretching( sal_uInt16 nX, sal_uInt16 nY );
inline void GetCharStretching( sal_uInt16& rX, sal_uInt16& rY );
void DoStretchChars( sal_uInt16 nX, sal_uInt16 nY );
void SetBigTextObjectStart( sal_uInt16 nStartAtPortionCount ) { nBigTextObjectStart = nStartAtPortionCount; }
sal_uInt16 GetBigTextObjectStart() const { return nBigTextObjectStart; }
inline EditEngine* GetEditEnginePtr() const { return pEditEngine; }
void StartOnlineSpellTimer() { aOnlineSpellTimer.Start(); }
void StopOnlineSpellTimer() { aOnlineSpellTimer.Stop(); }
const XubString& GetAutoCompleteText() const { return aAutoCompleteText; }
void SetAutoCompleteText( const String& rStr, sal_Bool bUpdateTipWindow );
EditSelection TransliterateText( const EditSelection& rSelection, sal_Int32 nTransliterationMode );
void SetAsianCompressionMode( USHORT n );
USHORT GetAsianCompressionMode() const { return nAsianCompressionMode; }
void SetKernAsianPunctuation( BOOL b );
BOOL IsKernAsianPunctuation() const { return bKernAsianPunctuation; }
void SetAddExtLeading( BOOL b );
BOOL IsAddExtLeading() const { return bAddExtLeading; }
vos::ORef<SvxForbiddenCharactersTable> GetForbiddenCharsTable( BOOL bGetInternal = TRUE ) const;
void SetForbiddenCharsTable( vos::ORef<SvxForbiddenCharactersTable> xForbiddenChars );
BOOL mbLastTryMerge;
/** sets a link that is called at the beginning of a drag operation at an edit view */
void SetBeginDropHdl( const Link& rLink ) { maBeginDropHdl = rLink; }
Link GetBeginDropHdl() const { return maBeginDropHdl; }
/** sets a link that is called at the end of a drag operation at an edit view */
void SetEndDropHdl( const Link& rLink ) { maEndDropHdl = rLink; }
Link GetEndDropHdl() const { return maEndDropHdl; }
/// specifies if auto-correction should capitalize the first word or not (default is on)
void SetFirstWordCapitalization( BOOL bCapitalize ) { bFirstWordCapitalization = bCapitalize; }
BOOL IsFirstWordCapitalization() const { return bFirstWordCapitalization; }
};
inline EPaM ImpEditEngine::CreateEPaM( const EditPaM& rPaM )
{
ContentNode* pNode = rPaM.GetNode();
return EPaM( aEditDoc.GetPos( pNode ), rPaM.GetIndex() );
}
inline EditPaM ImpEditEngine::CreateEditPaM( const EPaM& rEPaM )
{
DBG_ASSERT( rEPaM.nPara < aEditDoc.Count(), "CreateEditPaM: Ungueltiger Absatz" );
DBG_ASSERT( aEditDoc[ rEPaM.nPara ]->Len() >= rEPaM.nIndex, "CreateEditPaM: Ungueltiger Index" );
return EditPaM( aEditDoc[ rEPaM.nPara], rEPaM.nIndex );
}
inline ESelection ImpEditEngine::CreateESel( const EditSelection& rSel )
{
ContentNode* pStartNode = rSel.Min().GetNode();
ContentNode* pEndNode = rSel.Max().GetNode();
ESelection aESel;
aESel.nStartPara = aEditDoc.GetPos( pStartNode );
aESel.nStartPos = rSel.Min().GetIndex();
aESel.nEndPara = aEditDoc.GetPos( pEndNode );
aESel.nEndPos = rSel.Max().GetIndex();
return aESel;
}
inline EditSelection ImpEditEngine::CreateSel( const ESelection& rSel )
{
DBG_ASSERT( rSel.nStartPara < aEditDoc.Count(), "CreateSel: Ungueltiger Start-Absatz" );
DBG_ASSERT( rSel.nEndPara < aEditDoc.Count(), "CreateSel: Ungueltiger End-Absatz" );
EditSelection aSel;
aSel.Min().SetNode( aEditDoc[ rSel.nStartPara ] );
aSel.Min().SetIndex( rSel.nStartPos );
aSel.Max().SetNode( aEditDoc[ rSel.nEndPara ] );
aSel.Max().SetIndex( rSel.nEndPos );
DBG_ASSERT( !aSel.DbgIsBuggy( aEditDoc ), "CreateSel: Fehlerhafte Selektion!" );
return aSel;
}
inline VirtualDevice* ImpEditEngine::GetVirtualDevice( const MapMode& rMapMode, ULONG nDrawMode )
{
if ( !pVirtDev )
pVirtDev = new VirtualDevice;
if ( ( pVirtDev->GetMapMode().GetMapUnit() != rMapMode.GetMapUnit() ) ||
( pVirtDev->GetMapMode().GetScaleX() != rMapMode.GetScaleX() ) ||
( pVirtDev->GetMapMode().GetScaleY() != rMapMode.GetScaleY() ) )
{
MapMode aMapMode( rMapMode );
aMapMode.SetOrigin( Point( 0, 0 ) );
pVirtDev->SetMapMode( aMapMode );
}
pVirtDev->SetDrawMode( nDrawMode );
return pVirtDev;
}
inline void ImpEditEngine::EraseVirtualDevice()
{
delete pVirtDev;
pVirtDev = 0;
}
inline void ImpEditEngine::IdleFormatAndUpdate( EditView* pCurView )
{
aIdleFormatter.DoIdleFormat( pCurView );
}
#ifndef SVX_LIGHT
inline EditUndoManager& ImpEditEngine::GetUndoManager()
{
if ( !pUndoManager )
pUndoManager = new EditUndoManager( this );
return *pUndoManager;
}
#endif
inline ParaPortion* ImpEditEngine::FindParaPortion( ContentNode* pNode ) const
{
sal_uInt16 nPos = aEditDoc.GetPos( pNode );
DBG_ASSERT( nPos < GetParaPortions().Count(), "Portionloser Node?" );
return GetParaPortions()[ nPos ];
}
inline void ImpEditEngine::GetCharStretching( sal_uInt16& rX, sal_uInt16& rY )
{
rX = nStretchX;
rY = nStretchY;
}
inline short ImpEditEngine::GetXValue( short nXValue ) const
{
if ( !aStatus.DoStretch() || ( nStretchX == 100 ) )
return nXValue;
return (short) ((long)nXValue*nStretchX/100);
}
inline sal_uInt16 ImpEditEngine::GetXValue( sal_uInt16 nXValue ) const
{
if ( !aStatus.DoStretch() || ( nStretchX == 100 ) )
return nXValue;
return (sal_uInt16) ((long)nXValue*nStretchX/100);
}
inline long ImpEditEngine::GetXValue( long nXValue ) const
{
if ( !aStatus.DoStretch() || ( nStretchX == 100 ) )
return nXValue;
return nXValue*nStretchX/100;
}
inline short ImpEditEngine::GetYValue( short nYValue ) const
{
if ( !aStatus.DoStretch() || ( nStretchY == 100 ) )
return nYValue;
return (short) ((long)nYValue*nStretchY/100);
}
inline sal_uInt16 ImpEditEngine::GetYValue( sal_uInt16 nYValue ) const
{
if ( !aStatus.DoStretch() || ( nStretchY == 100 ) )
return nYValue;
return (sal_uInt16) ((long)nYValue*nStretchY/100);
}
inline void ImpEditView::SetPointer( const Pointer& rPointer )
{
delete pPointer;
pPointer = new Pointer( rPointer );
}
inline const Pointer& ImpEditView::GetPointer()
{
if ( !pPointer )
{
pPointer = new Pointer( IsVertical() ? POINTER_TEXT_VERTICAL : POINTER_TEXT );
return *pPointer;
}
if(POINTER_TEXT == pPointer->GetStyle() && IsVertical())
{
delete pPointer;
pPointer = new Pointer(POINTER_TEXT_VERTICAL);
}
else if(POINTER_TEXT_VERTICAL == pPointer->GetStyle() && !IsVertical())
{
delete pPointer;
pPointer = new Pointer(POINTER_TEXT);
}
return *pPointer;
}
inline void ImpEditView::SetCursor( const Cursor& rCursor )
{
delete pCursor;
pCursor = new Cursor( rCursor );
}
inline Cursor* ImpEditView::GetCursor()
{
if ( !pCursor )
pCursor = new Cursor;
return pCursor;
}
void ConvertItem( SfxPoolItem& rPoolItem, MapUnit eSourceUnit, MapUnit eDestUnit );
void ConvertAndPutItems( SfxItemSet& rDest, const SfxItemSet& rSource, const MapUnit* pSourceUnit = NULL, const MapUnit* pDestUnit = NULL );
BYTE GetCharTypeForCompression( xub_Unicode cChar );
Point Rotate( const Point& rPoint, short nOrientation, const Point& rOrigin );
#endif // _IMPEDIT_HXX
|