1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_SVX_SVDCRTV_HXX
21 #define INCLUDED_SVX_SVDCRTV_HXX
23 #include <svx/svddrgv.hxx>
24 #include <svx/svxdllapi.h>
27 class XLineAttrSetItem
;
28 class XFillAttrSetItem
;
30 class SdrObjConnection
;
32 class ImplConnectMarkerOverlay
;
33 class ImpSdrCreateViewExtraData
;
35 class SVX_DLLPUBLIC SdrCreateView
: public SdrDragView
37 friend class SdrPageView
;
40 SdrObject
* pCurrentCreate
; // The currently being created object
41 SdrPageView
* pCreatePV
; // Here, the creation is started
42 std::unique_ptr
<ImplConnectMarkerOverlay
> mpCoMaOverlay
;
44 // for migrating stuff from XOR, use ImpSdrCreateViewExtraData ATM to not need to
45 // compile the apps all the time
46 std::unique_ptr
<ImpSdrCreateViewExtraData
> mpCreateViewExtraData
;
48 PointerStyle aCurrentCreatePointer
;
50 sal_Int32 nAutoCloseDistPix
;
51 sal_Int32 nFreeHandMinDistPix
;
52 SdrInventor nCurrentInvent
; // set the current ones
53 sal_uInt16 nCurrentIdent
; // Obj for re-creating
55 bool b1stPointAsCenter
: 1;
56 bool bUseIncompatiblePathCreateInterface
: 1;
58 void ImpClearConnectMarker();
61 SVX_DLLPRIVATE
void ImpClearVars();
64 bool ImpBegCreateObj(SdrInventor nInvent
, sal_uInt16 nIdent
, const Point
& rPnt
, OutputDevice
* pOut
,
65 sal_Int16 nMinMov
, const tools::Rectangle
& rLogRect
, SdrObject
* pPreparedFactoryObject
);
67 void ShowCreateObj(/*OutputDevice* pOut, bool bFull*/);
68 void HideCreateObj(/*OutputDevice* pOut, bool bFull*/);
72 // #i71538# make constructors of SdrView sub-components protected to avoid incomplete incarnations which may get casted to SdrView
77 virtual ~SdrCreateView() override
;
80 virtual bool IsAction() const override
;
81 virtual void MovAction(const Point
& rPnt
) override
;
82 virtual void EndAction() override
;
83 virtual void BckAction() override
;
84 virtual void BrkAction() override
;
85 virtual void TakeActionRect(tools::Rectangle
& rRect
) const override
;
87 virtual bool MouseMove(const MouseEvent
& rMEvt
, OutputDevice
* pWin
) override
;
89 void SetMeasureLayer(const OUString
& rName
) { maMeasureLayer
=rName
; }
91 // If the MeasureLayer is not set (empty string), then use the active layer for measuring.
92 void SetEditMode(SdrViewEditMode eMode
) { SdrDragView::SetEditMode(eMode
); CheckEdgeMode(); }
93 void SetEditMode(bool bOn
=true) { SdrDragView::SetEditMode(bOn
); CheckEdgeMode(); }
94 void SetCreateMode(bool bOn
=true) { SdrDragView::SetCreateMode(bOn
); CheckEdgeMode(); }
95 void SetGluePointEditMode(bool bOn
=true) { SdrDragView::SetGluePointEditMode(bOn
); CheckEdgeMode(); }
97 // Determine whether a text tool is activated
98 bool IsTextTool() const;
100 // Determine whether an object connector tool activated
101 bool IsEdgeTool() const;
103 // Determine whether a measurement tool activated
104 bool IsMeasureTool() const;
106 void SetCurrentObj(sal_uInt16 nIdent
, SdrInventor nInvent
=SdrInventor::Default
);
107 void TakeCurrentObj(sal_uInt16
& nIdent
, SdrInventor
& nInvent
) const { nInvent
=nCurrentInvent
; nIdent
=nCurrentIdent
; }
108 SdrInventor
GetCurrentObjInventor() const { return nCurrentInvent
; }
109 sal_uInt16
GetCurrentObjIdentifier() const { return nCurrentIdent
; }
111 // Beginning the regular Create
112 bool BegCreateObj(const Point
& rPnt
, OutputDevice
* pOut
=nullptr, short nMinMov
=-3);
113 bool BegCreatePreparedObject(const Point
& rPnt
, sal_Int16 nMinMov
, SdrObject
* pPreparedFactoryObject
);
114 void MovCreateObj(const Point
& rPnt
);
115 bool EndCreateObj(SdrCreateCmd eCmd
);
116 void BckCreateObj(); // go back one polygon point
118 bool IsCreateObj() const { return pCurrentCreate
!=nullptr; }
119 SdrObject
* GetCreateObj() const { return pCurrentCreate
; }
121 /// Setup layer (eg. foreground / background) of the given object.
122 static void SetupObjLayer(const SdrPageView
* pPageView
, const OUString
& aActiveLayer
, SdrObject
* pObj
);
124 // BegCreateCaptionObj() creates a SdrCaptionObj (legend item).
125 // rObjSiz is the initial size of the legend text frame.
126 // Only the length of the tip is dragged
127 bool BegCreateCaptionObj(const Point
& rPnt
, const Size
& rObjSiz
, OutputDevice
* pOut
=nullptr, short nMinMov
=-3);
129 // Create a circle/rectangle/text frame with the first Point being
130 // the center of the object instead of the upper-left corner.
131 // Persistent flag. Default = FALSE.
132 bool IsCreate1stPointAsCenter() const { return b1stPointAsCenter
; }
133 void SetCreate1stPointAsCenter(bool bOn
) { b1stPointAsCenter
= bOn
; }
136 sal_uInt16
GetAutoCloseDistPix() const { return sal_uInt16(nAutoCloseDistPix
); }
138 // Setting for the minimum distance in pixels between 2 bezier points when
139 // creating a freehand line.
140 // Default = 10 Pixel
141 sal_uInt16
GetFreeHandMinDistPix() const { return sal_uInt16(nFreeHandMinDistPix
); }
143 // FIXME: Whoever wants to keep the Create Interface for the PathObj which is
144 // incompatible with the rest of the Create functionality of SvDraw, needs
145 // to set the following flag. It affects the following object types:
146 // OBJ_POLY, OBJ_PLIN, OBJ_PATHLINE, OBJ_PATHFILL
148 // This flag should be regarded as temporary. The affected applications should
150 // Default = sal_False;
151 bool IsUseIncompatiblePathCreateInterface() const { return bUseIncompatiblePathCreateInterface
; }
152 void SetUseIncompatiblePathCreateInterface(bool bOn
) { bUseIncompatiblePathCreateInterface
= bOn
; }
153 void SetConnectMarker(const SdrObjConnection
& rCon
);
154 void HideConnectMarker();
156 // Attributes of the object that is in the process of being created
157 /* new interface src537 */
158 void GetAttributes(SfxItemSet
& rTargetSet
, bool bOnlyHardAttr
) const;
160 bool SetAttributes(const SfxItemSet
& rSet
, bool bReplaceAll
);
161 SfxStyleSheet
* GetStyleSheet() const; // SfxStyleSheet* GetStyleSheet(bool& rOk) const;
162 void SetStyleSheet(SfxStyleSheet
* pStyleSheet
, bool bDontRemoveHardAttr
);
165 #endif // INCLUDED_SVX_SVDCRTV_HXX
167 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */