LibreOffice Module svx (master) 1
svdmodel.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#pragma once
21
22#include <functional>
23#include <memory>
24#include <com/sun/star/uno/Sequence.hxx>
26#include <editeng/outliner.hxx>
27#include <rtl/ustring.hxx>
28#include <tools/weakbase.h>
30#include <tools/degree.hxx>
31#include <tools/fldunit.hxx>
32#include <tools/fract.hxx>
33#include <svl/hint.hxx>
34#include <o3tl/enumarray.hxx>
35
36#include <svl/style.hxx>
37#include <svx/xtable.hxx>
38
39#include <svx/svdtypes.hxx>
40#include <svx/svxdllapi.h>
41
42#include <rtl/ref.hxx>
43#include <deque>
44
45#ifdef DBG_UTIL
46// SdrObjectLifetimeWatchDog
47#include <unordered_set>
48#endif
49
50class OutputDevice;
51class SdrOutliner;
52class SdrLayerAdmin;
53class SdrObjList;
54class SdrObject;
55class SdrPage;
56class SdrPageView;
57class SdrTextObj;
58class SdrUndoAction;
59class SdrUndoGroup;
60class AutoTimer;
61class SfxItemPool;
62class SfxItemSet;
63class SfxRepeatTarget;
64class SfxStyleSheet;
65class SfxUndoAction;
66class SfxUndoManager;
67class XBitmapList;
68class XColorList;
69class XDashList;
70class XGradientList;
71class XHatchList;
72class XLineEndList;
76class SdrUndoFactory;
77class ImageMap;
78class TextChain;
79enum class CharCompressType;
80enum class SdrCompatibilityFlag;
81namespace comphelper
82{
83 class IEmbeddedHelper;
84 class LifecycleProxy;
85}
86namespace sfx2
87{
88 class LinkManager;
89}
90namespace com::sun::star::beans {
91 struct PropertyValue;
92}
93
94namespace model
95{
96class Theme;
97}
98
99constexpr const sal_Unicode DEGREE_CHAR = u'\x00B0'; /* U+00B0 DEGREE SIGN */
100
101
102enum class SdrHintKind
103{
104 LayerChange, // changed layer definition
105 LayerOrderChange, // order of layer changed (Insert/Remove/ChangePos)
106 PageOrderChange, // order of pages (object pages or master pages) changed (Insert/Remove/ChangePos)
107 ObjectChange, // object changed
108 ObjectInserted, // new object inserted
109 ObjectRemoved, // symbol object removed from list
110 ModelCleared, // deleted the whole model (no pages exist anymore). not impl.
111 RefDeviceChange, // RefDevice changed
112 DefaultTabChange, // Default tabulator width changed
113 SwitchToPage, // #94278# UNDO/REDO at an object evtl. on another page
114 BeginEdit, // Is called after the object has entered text edit mode
115 EndEdit // Is called after the object has left text edit mode
116};
117
119{
120private:
124
125public:
126 explicit SdrHint(SdrHintKind eNewHint);
127 explicit SdrHint(SdrHintKind eNewHint, const SdrObject& rNewObj);
128 explicit SdrHint(SdrHintKind eNewHint, const SdrPage* pPage);
129 explicit SdrHint(SdrHintKind eNewHint, const SdrObject& rNewObj, const SdrPage* pPage);
130
131 const SdrPage* GetPage() const { return mpPage;}
132 const SdrObject* GetObject() const { return mpObj;}
133 SdrHintKind GetKind() const { return meHint;}
134};
135
137//
138// SdrModel
139// DlgEdModel
140// FmFormModel
141// ScDrawLayer
142// SdDrawDocument
143// SwDrawModel
144// OReportModel
145
146struct SdrModelImpl;
147
149{
150#ifdef DBG_UTIL
151 // SdrObjectLifetimeWatchDog:
152 // Use maAllIncarnatedObjects to keep track of all SdrObjects incarnated using this SdrModel
153 // (what is now possible after the paradigm change that a SdrObject stays at a single SdrModel
154 // for it's whole lifetime).
155 // The two methods are exclusive, debug-only, only-accessible-by SdrObject accesses to else
156 // hidden/non-existing maAllIncarnatedObjects.
157 // SdrObject::SdrObject uses impAddIncarnatedSdrObjectToSdrModel, while SdrObject::~SdrObject
158 // uses impRemoveIncarnatedSdrObjectToSdrModel.
159 // There are two places which may trigger SAL_WARN warnings:
160 // - impRemoveIncarnatedSdrObjectToSdrModel when the to-be-removed SdrObject is not member of SdrModel
161 // - SdrModel::~SdrModel after all SdrObjects *should* be cleaned-up.
162 // SdrModel::~SdrModel will also - for convenience - Free the non-deleted SdrObjects if there
163 // are any.
164 // Using std::unordered_set will use quasi constant access times, so this watchdog will not
165 // be expensive. Nonetheless, only use with debug code. It may be seductive to use this in
166 // product code, too, especially if it will indeed trigger - but its intention is clearly
167 // to find/identify MemoryLeaks caused by SdrObjects
168 friend void impAddIncarnatedSdrObjectToSdrModel(SdrObject& rSdrObject, SdrModel& rSdrModel);
169 friend void impRemoveIncarnatedSdrObjectToSdrModel(SdrObject& rSdrObject, SdrModel& rSdrModel);
170 std::unordered_set< SdrObject* > maAllIncarnatedObjects;
171#endif
172protected:
173 std::vector<rtl::Reference<SdrPage>> maMasterPages;
174 std::vector<rtl::Reference<SdrPage>> maPages;
175 std::function<void(std::unique_ptr<SdrUndoAction>)> m_aUndoLink; // link to a NotifyUndo-Handler
176 Size m_aMaxObjSize; // e.g. for auto-growing text
177 MapUnit m_eObjUnit; // see above
178 FieldUnit m_eUIUnit; // unit, scale (e.g. 1/1000) for the UI (status bar) is set by ImpSetUIUnit()
179 Fraction m_aUIScale; // see above
180 OUString m_aUIUnitStr; // see above
182 int m_nUIUnitDecimalMark; // see above
183
184 std::unique_ptr<SdrLayerAdmin> m_pLayerAdmin;
186 comphelper::IEmbeddedHelper* m_pEmbeddedHelper; // helper for embedded objects to get rid of the SfxObjectShell
187 std::unique_ptr<SdrOutliner> m_pDrawOutliner; // an Outliner for outputting text
188 std::unique_ptr<SdrOutliner> m_pHitTestOutliner;// an Outliner for the HitTest
189 std::unique_ptr<SdrOutliner> m_pChainingOutliner; // an Outliner for chaining overflowing text
190 sal_Int32 mnDefTextHgt; // Default text height in logical units
191 VclPtr<OutputDevice> m_pRefOutDev; // ReferenceDevice for the EditEngine
196 std::deque<std::unique_ptr<SfxUndoAction>> m_aUndoStack;
197 std::deque<std::unique_ptr<SfxUndoAction>> m_aRedoStack;
198 std::unique_ptr<SdrUndoGroup> m_pCurrentUndoGroup; // For multi-level
199 sal_uInt16 m_nUndoLevel; // undo nesting
200 bool m_bIsWriter:1; // to clean up pMyPool from 303a
201 bool m_bThemedControls:1; // If false UnoControls should not use theme colors
202 bool mbUndoEnabled:1; // If false no undo is recorded or we are during the execution of an undo action
203 bool mbChanged:1;
206 bool m_bTransportContainer:1; // doc is temporary object container, no display (e.g. clipboard)
210 bool m_bPasteResize:1; // Objects are being resized due to Paste with different MapMode
213 bool mbVOCInvalidationIsReliable:1; // does the app reliably invalidate the VOC, or do we need to rebuild the primitives on every render?
215 sal_uInt32 m_nMaxUndoCount;
216
217 std::unique_ptr<TextChain> m_pTextChain;
218
219
220public:
221 std::shared_ptr<SvxForbiddenCharactersTable> mpForbiddenCharactersTable;
222
223 std::unique_ptr<SdrOutlinerCache> mpOutlinerCache;
224 //get a vector of all the SdrOutliner belonging to the model
225 std::vector<SdrOutliner*> GetActiveOutliners() const;
226 std::unique_ptr<SdrModelImpl> mpImpl;
233
234 // Color, Dash, Line-End, Hatch, Gradient, Bitmap property lists ...
236
237 sal_uInt16 getHandoutPageCount() const { return mnHandoutPageCount; }
238 void setHandoutPageCount( sal_uInt16 nHandoutPageCount ) { mnHandoutPageCount = nHandoutPageCount; }
239
240 // Adapt to given Size and Borders scaling all contained data, maybe
241 // including PresObj's in higher derivations
242 virtual void adaptSizeAndBorderForAllPages(
243 const Size& rNewSize,
244 tools::Long nLeft = 0,
245 tools::Long nRight = 0,
246 tools::Long nUpper = 0,
247 tools::Long nLower = 0);
248
249protected:
250 virtual css::uno::Reference< css::uno::XInterface > createUnoModel();
251
252private:
253 SdrModel(const SdrModel& rSrcModel) = delete;
254 void operator=(const SdrModel& rSrcModel) = delete;
255 bool operator==(const SdrModel& rCmpModel) const = delete;
256 SVX_DLLPRIVATE void ImpPostUndoAction(std::unique_ptr<SdrUndoAction> pUndo);
257 SVX_DLLPRIVATE void ImpSetUIUnit();
258 SVX_DLLPRIVATE void ImpSetOutlinerDefaults( SdrOutliner* pOutliner, bool bInit = false );
259 SVX_DLLPRIVATE void ImpReformatAllTextObjects();
260 SVX_DLLPRIVATE void ImpReformatAllEdgeObjects();
261 SVX_DLLPRIVATE void ImpCreateTables(bool bDisablePropertyFiles);
262
263 // this is a weak reference to a possible living api wrapper for this model
264 css::uno::Reference< css::uno::XInterface > mxUnoModel;
265
266 // used to disable unique name checking during page move
267 bool mbMakePageObjectsNamesUnique = true;
268
269public:
270 SVX_DLLPRIVATE virtual bool IsCreatingDataObj() const { return false; }
271 bool IsTransportContainer() const { return m_bTransportContainer; }
272 bool AreControlsThemed() { return m_bThemedControls; }
273 bool IsPasteResize() const { return m_bPasteResize; }
274 void SetPasteResize(bool bOn) { m_bPasteResize=bOn; }
275 // If a custom Pool is put here, the class will call methods
276 // on it (Put(), Remove()). On disposal of SdrModel the pool
277 // will be deleted with delete.
278 // If you give NULL instead, it will create an own pool (SdrItemPool)
279 // which will also be disposed in the destructor.
280 // If you do use a custom Pool, make sure you inherit from SdrItemPool,
281 // if you want to use symbol objects inherited from SdrAttrObj.
282 // If, however, you use objects inheriting from SdrObject you are free
283 // to choose a pool of your liking.
284 //
285 // tdf#118731 a bDisablePropertyFiles of true will disable ability to load
286 // XPropertyFiles describing defaults. Useful for UI preview widgets
287 explicit SdrModel(
288 SfxItemPool* pPool = nullptr,
289 ::comphelper::IEmbeddedHelper* pPers = nullptr,
290 bool bDisablePropertyFiles = false);
291 virtual ~SdrModel() override;
292 void ClearModel(bool bCalledFromDestructor);
293
294 // Override this to enable the Swap/LoadOnDemand of graphics.
295 // If rbDeleteAfterUse is set to sal_True the SvStream instance from
296 // the caller will be disposed after use.
297 // If this method returns NULL, a temporary file will be allocated for
298 // swapping.
299 // The stream from which the model was loaded or in which is was saved last
300 // needs to be delivered
301 virtual css::uno::Reference<
302 css::embed::XStorage> GetDocumentStorage() const;
303 css::uno::Reference<
304 css::io::XInputStream >
305 GetDocumentStream(OUString const& rURL,
306 ::comphelper::LifecycleProxy const & rProxy) const;
307 // Change the template attributes of the symbol objects to hard attributes
308 void BurnInStyleSheetAttributes();
309 // If you inherit from SdrPage you also need to inherit from SdrModel
310 // and implement both VM AllocPage() and AllocModel()...
311 virtual rtl::Reference<SdrPage> AllocPage(bool bMasterPage);
312 virtual SdrModel* AllocModel() const;
313
314 // Changes on the layers set the modified flag and broadcast on the model!
315 const SdrLayerAdmin& GetLayerAdmin() const { return *m_pLayerAdmin; }
316 SdrLayerAdmin& GetLayerAdmin() { return *m_pLayerAdmin; }
317
318 const SfxItemPool& GetItemPool() const { return *m_pItemPool; }
319 SfxItemPool& GetItemPool() { return *m_pItemPool; }
320
321 SdrOutliner& GetDrawOutliner(const SdrTextObj* pObj=nullptr) const;
322
323 SdrOutliner& GetHitTestOutliner() const { return *m_pHitTestOutliner; }
324 const SdrTextObj* GetFormattingTextObj() const;
325 // put the TextDefaults (Font,Height,Color) in a Set
326 void SetTextDefaults() const;
327 static void SetTextDefaults( SfxItemPool* pItemPool, sal_Int32 nDefTextHgt );
328
329 SdrOutliner& GetChainingOutliner(const SdrTextObj* pObj) const;
330 TextChain * GetTextChain() const;
331
332 // ReferenceDevice for the EditEngine
333 void SetRefDevice(OutputDevice* pDev);
334 OutputDevice* GetRefDevice() const { return m_pRefOutDev.get(); }
335 // If a new MapMode is set on the RefDevice (or similar)
336 void RefDeviceChanged(); // not yet implemented
337 // default font height in logical units
338 void SetDefaultFontHeight(sal_Int32 nVal);
339 // default tabulator width for the EditEngine
340 void SetDefaultTabulator(sal_uInt16 nVal);
341 sal_uInt16 GetDefaultTabulator() const { return m_nDefaultTabulator; }
342
343 // The DefaultStyleSheet will be used in every symbol object which is inserted
344 // in this model and does not have a StyleSheet set.
345 SfxStyleSheet* GetDefaultStyleSheet() const { return m_pDefaultStyleSheet; }
346 void SetDefaultStyleSheet(SfxStyleSheet* pDefSS) { m_pDefaultStyleSheet = pDefSS; }
347
348 // #i119287# default StyleSheet for SdrGrafObj and SdrOle2Obj
349 SfxStyleSheet* GetDefaultStyleSheetForSdrGrafObjAndSdrOle2Obj() const { return mpDefaultStyleSheetForSdrGrafObjAndSdrOle2Obj; }
350 void SetDefaultStyleSheetForSdrGrafObjAndSdrOle2Obj(SfxStyleSheet* pDefSS) { mpDefaultStyleSheetForSdrGrafObjAndSdrOle2Obj = pDefSS; }
351
352 sfx2::LinkManager* GetLinkManager() { return m_pLinkManager; }
353 void SetLinkManager( sfx2::LinkManager* pLinkMgr ) { m_pLinkManager = pLinkMgr; }
354
355 ::comphelper::IEmbeddedHelper* GetPersist() const { return m_pEmbeddedHelper; }
356 void SetPersist( ::comphelper::IEmbeddedHelper *p ) { m_pEmbeddedHelper = p; }
357
358 // Unit for the symbol coordination
359 // Default is 1 logical unit = 1/100mm (Unit=MapUnit::Map100thMM, Fract=(1,1)).
360 // Examples:
361 // MapUnit::MapPoint, Fraction(72,1) : 1 log Einh = 72 Point = 1 Inch
362 // MapUnit::MapPoint, Fraction(1,20) : 1 log Einh = 1/20 Point = 1 Twip
363 // MapUnit::MapTwip, Fraction(1,1) : 1 log Einh = 1 Twip
364 // MapUnit::Map100thMM, Fraction(1,10) : 1 log Einh = 1/1000mm
365 // MapUnit::MapMM, Fraction(1000,1) : 1 log Einh = 1000mm = 1m
366 // MapUnit::MapCM, Fraction(100,1) : 1 log Einh = 100cm = 1m
367 // MapUnit::MapCM, Fraction(100000,1): 1 log Einh = 100000cm = 1km
368 // (FWIW: you cannot represent light years).
369 // The scaling unit is needed for the Engine to serve the Clipboard
370 // with the correct sizes.
371 MapUnit GetScaleUnit() const { return m_eObjUnit; }
372 void SetScaleUnit(MapUnit eMap);
373
374 // maximal size e.g. for auto growing texts
375 const Size& GetMaxObjSize() const { return m_aMaxObjSize; }
376 void SetMaxObjSize(const Size& rSiz) { m_aMaxObjSize=rSiz; }
377
378 // For the View! to display sane numbers in the status bar: Default is mm.
379 void SetUIUnit(FieldUnit eUnit);
380 FieldUnit GetUIUnit() const { return m_eUIUnit; }
381 // The scale of the drawing. Default 1/1.
382 void SetUIScale(const Fraction& rScale);
383 const Fraction& GetUIScale() const { return m_aUIScale; }
384 // Setting both simultaneously performs a little better
385 void SetUIUnit(FieldUnit eUnit, const Fraction& rScale);
386
387 static OUString GetUnitString(FieldUnit eUnit);
388 OUString GetMetricString(tools::Long nVal, bool bNoUnitChars = false, sal_Int32 nNumDigits = -1) const;
389 static OUString GetAngleString(Degree100 nAngle);
390 static OUString GetPercentString(const Fraction& rVal);
391
392 // RecalcPageNums is ordinarily only called by the Page.
393 bool IsPagNumsDirty() const { return m_bPagNumsDirty; };
394 bool IsMPgNumsDirty() const { return m_bMPgNumsDirty; };
395 void RecalcPageNums(bool bMaster);
396 // After the Insert the Page belongs to the SdrModel.
397 virtual void InsertPage(SdrPage* pPage, sal_uInt16 nPos=0xFFFF);
398 virtual void DeletePage(sal_uInt16 nPgNum);
399 // Remove means transferring ownership to the caller (opposite of Insert)
400 virtual rtl::Reference<SdrPage> RemovePage(sal_uInt16 nPgNum);
401 virtual void MovePage(sal_uInt16 nPgNum, sal_uInt16 nNewPos);
402 const SdrPage* GetPage(sal_uInt16 nPgNum) const;
403 SdrPage* GetPage(sal_uInt16 nPgNum);
404 sal_uInt16 GetPageCount() const;
405 virtual void PageListChanged();
406
407 // Masterpages
408 virtual void InsertMasterPage(SdrPage* pPage, sal_uInt16 nPos=0xFFFF);
409 void DeleteMasterPage(sal_uInt16 nPgNum);
410 // Remove means transferring ownership to the caller (opposite of Insert)
411 virtual rtl::Reference<SdrPage> RemoveMasterPage(sal_uInt16 nPgNum);
412 void MoveMasterPage(sal_uInt16 nPgNum, sal_uInt16 nNewPos);
413 const SdrPage* GetMasterPage(sal_uInt16 nPgNum) const;
414 SdrPage* GetMasterPage(sal_uInt16 nPgNum);
415 sal_uInt16 GetMasterPageCount() const;
416 virtual void MasterPageListChanged();
417
418 // modified flag. Is set automatically when something changes on the Pages
419 // symbol objects. You need to reset it yourself, however, e.g. on Save().
420 bool IsChanged() const { return mbChanged; }
421 virtual void SetChanged(bool bFlg = true);
422
423 // If set to sal_True, graphics from graphics objects will:
424 // - not be loaded immediately when loading a document,
425 // but only once they are needed (e.g. displayed).
426 // - be pruned from memory if they are not needed.
427 // For that to work, override the virtual method GetDocumentStream().
428 // Default=FALSE. Flag is not persistent.
429 bool IsSwapGraphics() const { return m_bSwapGraphics; }
430 void SetSwapGraphics();
431
432 // Text frames without filling can be select with a mouse click by default (sal_False).
433 // With this flag set to true you can hit them only in the area in which text is to be
434 // found.
435 bool IsPickThroughTransparentTextFrames() const { return m_bTransparentTextFrames; }
436 void SetPickThroughTransparentTextFrames(bool bOn) { m_bTransparentTextFrames=bOn; }
437
438 // Can the model be changed at all?
439 // Is only evaluated by the possibility methods of the View.
440 // Direct manipulations on the model, ... do not respect this flag.
441 // Override this and return the appropriate ReadOnly status
442 // of the files, i.e. true or false. (Method is called multiple
443 // times, so use one flag only!)
444 virtual bool IsReadOnly() const;
445 void SetReadOnly(bool bYes);
446
447 // Mixing two SdrModels. Mind that rSourceModel is not const.
448 // The pages will not be copied but moved, when inserted.
449 // rSourceModel may very well be empty afterwards.
450 // nFirstPageNum,nLastPageNum: The pages to take from rSourceModel
451 // nDestPos..................: position to insert
452 // bMergeMasterPages.........: sal_True = needed MasterPages will be taken
453 // from rSourceModel
454 // sal_False= the MasterPageDescriptors of
455 // the pages of the rSourceModel will be
456 // mapped on the existing MasterPages.
457 // bUndo.....................: An undo action is generated for the merging.
458 // Undo is only for the target model, not for the
459 // rSourceModel.
460 // bTreadSourceAsConst.......: sal_True=the SourceModel will not be changed,
461 // so pages will be copied.
462 virtual void Merge(SdrModel& rSourceModel,
463 sal_uInt16 nFirstPageNum, sal_uInt16 nLastPageNum,
464 sal_uInt16 nDestPos,
465 bool bMergeMasterPages, bool bAllMasterPages,
466 bool bUndo = true, bool bTreadSourceAsConst = false);
467
468 // Behaves like Merge(SourceModel=DestModel,nFirst,nLast,nDest,sal_False,sal_False,bUndo,!bMoveNoCopy);
469 void CopyPages(sal_uInt16 nFirstPageNum, sal_uInt16 nLastPageNum,
470 sal_uInt16 nDestPos,
471 bool bUndo, bool bMoveNoCopy);
472
473 // BegUndo() / EndUndo() enables you to group arbitrarily many UndoActions
474 // arbitrarily deeply. As comment for the UndoAction the first BegUndo(String) of all
475 // nestings will be used.
476 // In that case the NotifyUndoActionHdl will be called on the last EndUndo().
477 // No UndoAction will be generated for an empty group.
478 // All direct modifications on the SdrModel do not create an UndoActions.
479 // Actions on the SdrView however do generate those.
480 void BegUndo(); // open Undo group
481 void BegUndo(const OUString& rComment); // open Undo group
482 void BegUndo(const OUString& rComment, const OUString& rObjDescr, SdrRepeatFunc eFunc); // open Undo group
483 void EndUndo(); // close Undo group
484 void AddUndo(std::unique_ptr<SdrUndoAction> pUndo);
485 sal_uInt16 GetUndoBracketLevel() const { return m_nUndoLevel; }
486 // only after the first BegUndo or before the last EndUndo:
487 void SetUndoComment(const OUString& rComment);
488 void SetUndoComment(const OUString& rComment, const OUString& rObjDescr);
489
490 // The Undo management is only done if NotifyUndoAction-Handler is not set.
491 // Default is 16. Minimal MaxUndoActionCount is 1.
492 void SetMaxUndoActionCount(sal_uInt32 nCount);
493 void ClearUndoBuffer();
494
495 bool HasUndoActions() const;
496 bool HasRedoActions() const;
497 void Undo();
498 void Redo();
499 void Repeat(SfxRepeatTarget&);
500
501 // The application can set a handler here which collects the UndoActions einsammelt.
502 // The handler has the following signature:
503 // void NotifyUndoActionHdl(SfxUndoAction* pUndoAction);
504 // When calling the handler ownership is transferred;
505 // The UndoAction belongs to the Handler, not the SdrModel.
506 void SetNotifyUndoActionHdl(const std::function<void(std::unique_ptr<SdrUndoAction>)>& rLink) { m_aUndoLink=rLink; }
507
510 void SetSdrUndoManager( SfxUndoManager* pUndoManager );
511 SfxUndoManager* GetSdrUndoManager() const;
512
516 void SetSdrUndoFactory( SdrUndoFactory* pUndoFactory );
517
520 SdrUndoFactory& GetSdrUndoFactory() const;
521
522 // Accessor methods for Palettes, Lists and Tables
523 // FIXME: this badly needs re-factoring...
525 void SetPropertyList( XPropertyListRef const & p ) { maProperties[ p->Type() ] = p; }
526
527 // friendlier helpers
535
536 // The DrawingEngine only references the StyleSheetPool, whoever
537 // made it needs to delete it.
538 SfxStyleSheetBasePool* GetStyleSheetPool() const { return mxStyleSheetPool.get(); }
539 void SetStyleSheetPool(SfxStyleSheetBasePool* pPool) { mxStyleSheetPool=pPool; }
540
541 void setTheme(std::shared_ptr<model::Theme> const& pTheme);
542 std::shared_ptr<model::Theme> const& getTheme() const;
543
544 void SetStarDrawPreviewMode(bool bPreview);
545 bool IsStarDrawPreviewMode() const { return m_bStarDrawPreviewMode; }
546
547 bool GetDisableTextEditUsesCommonUndoManager() const { return mbDisableTextEditUsesCommonUndoManager; }
548 void SetDisableTextEditUsesCommonUndoManager(bool bNew) { mbDisableTextEditUsesCommonUndoManager = bNew; }
549
550 css::uno::Reference< css::uno::XInterface > const & getUnoModel();
551 void setUnoModel( const css::uno::Reference< css::uno::XInterface >& xModel );
552
553 // these functions are used by the api to disable repaints during a
554 // set of api calls.
555 bool isLocked() const { return mbModelLocked; }
556 void setLock( bool bLock );
557
558 void SetForbiddenCharsTable( const std::shared_ptr<SvxForbiddenCharactersTable>& xForbiddenChars );
559 const std::shared_ptr<SvxForbiddenCharactersTable>& GetForbiddenCharsTable() const { return mpForbiddenCharactersTable;}
560
561 void SetCharCompressType( CharCompressType nType );
562 CharCompressType GetCharCompressType() const { return mnCharCompressType; }
563
564 void SetKernAsianPunctuation( bool bEnabled );
565 bool IsKernAsianPunctuation() const { return mbKernAsianPunctuation; }
566
567 void SetAddExtLeading( bool bEnabled );
568 bool IsAddExtLeading() const { return mbAddExtLeading; }
569
570 void SetCompatibilityFlag(SdrCompatibilityFlag eFlag, bool bEnabled);
572 bool GetCompatibilityFlag(SdrCompatibilityFlag eFlag) const;
573
574 void ReformatAllTextObjects();
575
576 std::unique_ptr<SdrOutliner> createOutliner( OutlinerMode nOutlinerMode );
577 void disposeOutliner( std::unique_ptr<SdrOutliner> pOutliner );
578
579 bool IsWriter() const { return m_bIsWriter; }
580
581 // Used as a fallback in *::ReadUserDataSequence() to process common properties
582 void ReadUserDataSequenceValue(const css::beans::PropertyValue *pValue);
583 void WriteUserDataSequence(css::uno::Sequence < css::beans::PropertyValue >& rValues);
584
586 virtual SvxNumType GetPageNumType() const;
587
590 static void MigrateItemSet( const SfxItemSet* pSourceSet, SfxItemSet* pDestSet, SdrModel* pNewModel );
591
592 bool IsInDestruction() const { return mbInDestruction;}
593
594 static const css::uno::Sequence< sal_Int8 >& getUnoTunnelId();
595
599 void EnableUndo( bool bEnable );
600
604 bool IsUndoEnabled() const;
605
606 // used to prevent object name change during page move
607 bool DoesMakePageObjectsNamesUnique() const { return mbMakePageObjectsNamesUnique; }
608 void DoMakePageObjectsNamesUnique(bool bDo) { mbMakePageObjectsNamesUnique = bDo; }
609
610 virtual sal_Int32 getImagePreferredDPI() const { return 0; }
611
612 virtual void dumpAsXml(xmlTextWriterPtr pWriter) const;
613
614 bool IsVOCInvalidationIsReliable() const { return mbVOCInvalidationIsReliable; }
615 void SetVOCInvalidationIsReliable(bool b) { mbVOCInvalidationIsReliable = b; }
616};
617
618/*
619 +-----------+
620 | SdrModel |
621 +--+------+-+
622 | +-----------+
623 +----+-----+ |
624 | ... | |
625 +----+---+ +----+---+ +-----+--------+
626 |SdrPage | |SdrPage | |SdrLayerAdmin |
627 +---+----+ +-+--+--++ +---+-------+--+
628 | | | | | +-------------------+
629 +----+----+ +-----+-----+ +-------+-------+
630 | ... | | ... | | ... |
631+---+---+ +---+---+ +----+----+ +----+----+ +-----+------+ +------+-----+
632|SdrObj | |SdrObj | |SdrLayer | |SdrLayer | |SdrLayerSet | |SdrLayerSet |
633+-------+ +-------+ +---------+ +---------+ +------------+ +------------+
634This class: SdrModel is the head of the data models for the StarView Drawing Engine.
635
637
638/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
FPDF_PAGE mpPage
CharCompressType
bool mbChanged
const SdrPage * GetPage() const
Definition: svdmodel.hxx:131
const SdrPage * mpPage
Definition: svdmodel.hxx:123
SdrHintKind GetKind() const
Definition: svdmodel.hxx:133
const SdrObject * mpObj
Definition: svdmodel.hxx:122
const SdrObject * GetObject() const
Definition: svdmodel.hxx:132
SdrHintKind meHint
Definition: svdmodel.hxx:121
sfx2::LinkManager * m_pLinkManager
Definition: svdmodel.hxx:195
bool m_bStarDrawPreviewMode
Definition: svdmodel.hxx:211
bool m_bIsWriter
Definition: svdmodel.hxx:200
int m_nUIUnitDecimalMark
Definition: svdmodel.hxx:182
bool IsPagNumsDirty() const
Definition: svdmodel.hxx:393
bool m_bPagNumsDirty
Definition: svdmodel.hxx:204
VclPtr< OutputDevice > m_pRefOutDev
Definition: svdmodel.hxx:191
bool IsKernAsianPunctuation() const
Definition: svdmodel.hxx:565
std::function< void(std::unique_ptr< SdrUndoAction >)> m_aUndoLink
Definition: svdmodel.hxx:175
bool isLocked() const
Definition: svdmodel.hxx:555
XBitmapListRef GetBitmapList() const
Definition: svdmodel.hxx:531
::comphelper::IEmbeddedHelper * GetPersist() const
Definition: svdmodel.hxx:355
CharCompressType mnCharCompressType
Definition: svdmodel.hxx:227
sal_uInt16 m_nDefaultTabulator
Definition: svdmodel.hxx:214
void SetLinkManager(sfx2::LinkManager *pLinkMgr)
Definition: svdmodel.hxx:353
void setHandoutPageCount(sal_uInt16 nHandoutPageCount)
Definition: svdmodel.hxx:238
sal_uInt16 mnHandoutPageCount
Definition: svdmodel.hxx:228
bool IsPickThroughTransparentTextFrames() const
Definition: svdmodel.hxx:435
std::unique_ptr< SdrOutlinerCache > mpOutlinerCache
Definition: svdmodel.hxx:223
void SetNotifyUndoActionHdl(const std::function< void(std::unique_ptr< SdrUndoAction >)> &rLink)
Definition: svdmodel.hxx:506
bool IsPasteResize() const
Definition: svdmodel.hxx:273
css::uno::Reference< css::uno::XInterface > mxUnoModel
Definition: svdmodel.hxx:264
std::unique_ptr< SdrModelImpl > mpImpl
Definition: svdmodel.hxx:226
SfxStyleSheet * GetDefaultStyleSheet() const
Definition: svdmodel.hxx:345
sal_uInt16 GetDefaultTabulator() const
Definition: svdmodel.hxx:341
bool m_bMPgNumsDirty
Definition: svdmodel.hxx:205
bool AreControlsThemed()
Definition: svdmodel.hxx:272
XDashListRef GetDashList() const
Definition: svdmodel.hxx:528
bool IsMPgNumsDirty() const
Definition: svdmodel.hxx:394
std::unique_ptr< SdrUndoGroup > m_pCurrentUndoGroup
Definition: svdmodel.hxx:198
std::unique_ptr< SdrOutliner > m_pChainingOutliner
Definition: svdmodel.hxx:189
std::unique_ptr< SdrLayerAdmin > m_pLayerAdmin
Definition: svdmodel.hxx:184
bool mbDisableTextEditUsesCommonUndoManager
Definition: svdmodel.hxx:212
bool m_bTransportContainer
Definition: svdmodel.hxx:206
void SetVOCInvalidationIsReliable(bool b)
Definition: svdmodel.hxx:615
o3tl::enumarray< XPropertyListType, XPropertyListRef > maProperties
Definition: svdmodel.hxx:235
Fraction m_aUIScale
Definition: svdmodel.hxx:179
MapUnit m_eObjUnit
Definition: svdmodel.hxx:177
Size m_aMaxObjSize
Definition: svdmodel.hxx:176
void SetDefaultStyleSheet(SfxStyleSheet *pDefSS)
Definition: svdmodel.hxx:346
XGradientListRef GetGradientList() const
Definition: svdmodel.hxx:534
XPatternListRef GetPatternList() const
Definition: svdmodel.hxx:532
sfx2::LinkManager * GetLinkManager()
Definition: svdmodel.hxx:352
bool IsWriter() const
Definition: svdmodel.hxx:579
SfxStyleSheet * GetDefaultStyleSheetForSdrGrafObjAndSdrOle2Obj() const
Definition: svdmodel.hxx:349
bool m_bThemedControls
Definition: svdmodel.hxx:201
MapUnit GetScaleUnit() const
Definition: svdmodel.hxx:371
bool IsChanged() const
Definition: svdmodel.hxx:420
bool operator==(const SdrModel &rCmpModel) const =delete
bool IsStarDrawPreviewMode() const
Definition: svdmodel.hxx:545
sal_uInt16 GetUndoBracketLevel() const
Definition: svdmodel.hxx:485
void SetPersist(::comphelper::IEmbeddedHelper *p)
Definition: svdmodel.hxx:356
bool m_bTransparentTextFrames
Definition: svdmodel.hxx:208
void SetMaxObjSize(const Size &rSiz)
Definition: svdmodel.hxx:376
bool DoesMakePageObjectsNamesUnique() const
Definition: svdmodel.hxx:607
XLineEndListRef GetLineEndList() const
Definition: svdmodel.hxx:533
SfxStyleSheet * mpDefaultStyleSheetForSdrGrafObjAndSdrOle2Obj
Definition: svdmodel.hxx:194
bool mbVOCInvalidationIsReliable
Definition: svdmodel.hxx:213
bool IsAddExtLeading() const
Definition: svdmodel.hxx:568
std::vector< rtl::Reference< SdrPage > > maMasterPages
Definition: svdmodel.hxx:173
const SfxItemPool & GetItemPool() const
Definition: svdmodel.hxx:318
const Size & GetMaxObjSize() const
Definition: svdmodel.hxx:375
virtual sal_Int32 getImagePreferredDPI() const
Definition: svdmodel.hxx:610
bool IsInDestruction() const
Definition: svdmodel.hxx:592
OUString m_aUIUnitStr
Definition: svdmodel.hxx:180
bool m_bPasteResize
Definition: svdmodel.hxx:210
SfxStyleSheet * m_pDefaultStyleSheet
Definition: svdmodel.hxx:193
bool IsVOCInvalidationIsReliable() const
Definition: svdmodel.hxx:614
void SetStyleSheetPool(SfxStyleSheetBasePool *pPool)
Definition: svdmodel.hxx:539
virtual SVX_DLLPRIVATE bool IsCreatingDataObj() const
Definition: svdmodel.hxx:270
bool mbInDestruction
Definition: svdmodel.hxx:232
XColorListRef GetColorList() const
Definition: svdmodel.hxx:530
bool m_bReadOnly
Definition: svdmodel.hxx:207
bool mbAddExtLeading
Definition: svdmodel.hxx:231
bool GetDisableTextEditUsesCommonUndoManager() const
Definition: svdmodel.hxx:547
void SetPickThroughTransparentTextFrames(bool bOn)
Definition: svdmodel.hxx:436
bool mbModelLocked
Definition: svdmodel.hxx:229
rtl::Reference< SfxItemPool > m_pItemPool
Definition: svdmodel.hxx:185
CharCompressType GetCharCompressType() const
Definition: svdmodel.hxx:562
FieldUnit GetUIUnit() const
Definition: svdmodel.hxx:380
std::unique_ptr< SdrOutliner > m_pDrawOutliner
Definition: svdmodel.hxx:187
void DoMakePageObjectsNamesUnique(bool bDo)
Definition: svdmodel.hxx:608
SfxItemPool & GetItemPool()
Definition: svdmodel.hxx:319
void operator=(const SdrModel &rSrcModel)=delete
XHatchListRef GetHatchList() const
Definition: svdmodel.hxx:529
SfxStyleSheetBasePool * GetStyleSheetPool() const
Definition: svdmodel.hxx:538
void SetPasteResize(bool bOn)
Definition: svdmodel.hxx:274
void SetDisableTextEditUsesCommonUndoManager(bool bNew)
Definition: svdmodel.hxx:548
const std::shared_ptr< SvxForbiddenCharactersTable > & GetForbiddenCharsTable() const
Definition: svdmodel.hxx:559
bool mbUndoEnabled
Definition: svdmodel.hxx:202
OutputDevice * GetRefDevice() const
Definition: svdmodel.hxx:334
sal_uInt32 m_nMaxUndoCount
Definition: svdmodel.hxx:215
void SetDefaultStyleSheetForSdrGrafObjAndSdrOle2Obj(SfxStyleSheet *pDefSS)
Definition: svdmodel.hxx:350
void SetPropertyList(XPropertyListRef const &p)
Definition: svdmodel.hxx:525
std::deque< std::unique_ptr< SfxUndoAction > > m_aUndoStack
Definition: svdmodel.hxx:196
Fraction m_aUIUnitFact
Definition: svdmodel.hxx:181
std::vector< rtl::Reference< SdrPage > > maPages
Definition: svdmodel.hxx:174
rtl::Reference< SfxStyleSheetBasePool > mxStyleSheetPool
Definition: svdmodel.hxx:192
SdrLayerAdmin & GetLayerAdmin()
Definition: svdmodel.hxx:316
SdrModel(SfxItemPool *pPool=nullptr, ::comphelper::IEmbeddedHelper *pPers=nullptr, bool bDisablePropertyFiles=false)
std::deque< std::unique_ptr< SfxUndoAction > > m_aRedoStack
Definition: svdmodel.hxx:197
const Fraction & GetUIScale() const
Definition: svdmodel.hxx:383
bool IsSwapGraphics() const
Definition: svdmodel.hxx:429
std::unique_ptr< TextChain > m_pTextChain
Definition: svdmodel.hxx:217
std::unordered_set< SdrObject * > maAllIncarnatedObjects
Definition: svdmodel.hxx:170
bool m_bSwapGraphics
Definition: svdmodel.hxx:209
SdrModel(const SdrModel &rSrcModel)=delete
const SdrLayerAdmin & GetLayerAdmin() const
Definition: svdmodel.hxx:315
sal_uInt16 getHandoutPageCount() const
Definition: svdmodel.hxx:237
comphelper::IEmbeddedHelper * m_pEmbeddedHelper
Definition: svdmodel.hxx:186
SdrOutliner & GetHitTestOutliner() const
Definition: svdmodel.hxx:323
sal_uInt16 m_nUndoLevel
Definition: svdmodel.hxx:199
bool mbKernAsianPunctuation
Definition: svdmodel.hxx:230
const XPropertyListRef & GetPropertyList(XPropertyListType t) const
Definition: svdmodel.hxx:524
bool IsTransportContainer() const
Definition: svdmodel.hxx:271
std::shared_ptr< SvxForbiddenCharactersTable > mpForbiddenCharactersTable
Definition: svdmodel.hxx:221
FieldUnit m_eUIUnit
Definition: svdmodel.hxx:178
std::unique_ptr< SdrOutliner > m_pHitTestOutliner
Definition: svdmodel.hxx:188
sal_Int32 mnDefTextHgt
Definition: svdmodel.hxx:190
bool mbChanged
Definition: svdmodel.hxx:203
Abstract DrawObject.
Definition: svdobj.hxx:260
A SdrPage contains exactly one SdrObjList and a description of the physical page dimensions (size / m...
Definition: svdpage.hxx:379
Abstract base class (ABC) for all UndoActions of DrawingEngine.
Definition: svdundo.hxx:61
The SdrUndoFactory can be set and retrieved from the SdrModel.
Definition: svdundo.hxx:740
Aggregation of arbitrarily many UndoActions to a single UndoAction.
Definition: svdundo.hxx:93
reference_type * get() const
static XBitmapListRef AsBitmapList(rtl::Reference< XPropertyList > const &plist)
Definition: xtable.hxx:381
static XLineEndListRef AsLineEndList(rtl::Reference< XPropertyList > const &plist)
Definition: xtable.hxx:387
static XDashListRef AsDashList(rtl::Reference< XPropertyList > const &plist)
Definition: xtable.hxx:372
static XColorListRef AsColorList(rtl::Reference< XPropertyList > const &plist)
Definition: xtable.hxx:378
static XGradientListRef AsGradientList(rtl::Reference< XPropertyList > const &plist)
Definition: xtable.hxx:390
static XHatchListRef AsHatchList(rtl::Reference< XPropertyList > const &plist)
Definition: xtable.hxx:375
static XPatternListRef AsPatternList(rtl::Reference< XPropertyList > const &plist)
Definition: xtable.hxx:384
SdrCompatibilityFlag
SdrCompatibilityFlags that are implemented in SdrModelImpl.
Definition: compatflags.hxx:12
OUString GetUnitString(tools::Long nVal_100, FieldUnit eFieldUnit, sal_Unicode cSep)
Definition: dlgunit.hxx:27
float u
constexpr OUStringLiteral IsReadOnly(u"IsReadOnly")
struct _xmlTextWriter * xmlTextWriterPtr
FieldUnit
void * p
MapUnit
SvGenericNameContainerMapImpl maProperties
class SvxPropertySetInfoPool
long Long
static bool bInit
Definition: objfac3d.cxx:30
OutlinerMode
constexpr const sal_Unicode DEGREE_CHAR
Definition: svdmodel.hxx:99
SdrHintKind
Definition: svdmodel.hxx:103
void impAddIncarnatedSdrObjectToSdrModel(SdrObject &rSdrObject, SdrModel &rSdrModel)
Definition: svdobj.cxx:336
void impRemoveIncarnatedSdrObjectToSdrModel(SdrObject &rSdrObject, SdrModel &rSdrModel)
Definition: svdobj.cxx:340
SdrRepeatFunc
Definition: svdtypes.hxx:66
#define SVX_DLLPRIVATE
Definition: svxdllapi.h:30
#define SVXCORE_DLLPUBLIC
Definition: svxdllapi.h:35
SvxNumType
sal_uInt16 sal_Unicode
XPropertyListType t
Definition: xtable.cxx:371
XPropertyListType
Definition: xtable.hxx:131