tdf#151073 - enable firebird for appstore build w/o experimental mode
[LibreOffice.git] / include / svx / svdcrtv.hxx
blob12a291c2332889e537bdf6ed8fba3749b5e10650
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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>
25 #include <memory>
27 class XLineAttrSetItem;
28 class XFillAttrSetItem;
29 class SdrEdgeObj;
30 class SdrObjConnection;
32 class ImplConnectMarkerOverlay;
33 class ImpSdrCreateViewExtraData;
35 class SVXCORE_DLLPUBLIC SdrCreateView : public SdrDragView
37 friend class SdrPageView;
39 protected:
40 rtl::Reference<SdrObject> mpCurrentCreate; // The currently being created object
41 SdrPageView* mpCreatePV; // 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 maCurrentCreatePointer;
50 sal_Int32 mnAutoCloseDistPix;
51 sal_Int32 mnFreeHandMinDistPix;
52 SdrInventor mnCurrentInvent; // set the current ones
53 SdrObjKind mnCurrentIdent; // Obj for re-creating
55 bool mb1stPointAsCenter : 1;
56 bool mbUseIncompatiblePathCreateInterface : 1;
58 void ImpClearConnectMarker();
60 protected:
61 bool ImpBegCreateObj(SdrInventor nInvent, SdrObjKind nIdent, const Point& rPnt, OutputDevice* pOut,
62 sal_Int16 nMinMov, const tools::Rectangle& rLogRect, SdrObject* pPreparedFactoryObject);
64 void ShowCreateObj(/*OutputDevice* pOut, bool bFull*/);
65 void HideCreateObj(/*OutputDevice* pOut, bool bFull*/);
66 bool CheckEdgeMode();
68 protected:
69 // #i71538# make constructors of SdrView sub-components protected to avoid incomplete incarnations which may get casted to SdrView
70 SdrCreateView(
71 SdrModel& rSdrModel,
72 OutputDevice* pOut);
74 virtual ~SdrCreateView() override;
76 public:
77 virtual bool IsAction() const override;
78 virtual void MovAction(const Point& rPnt) override;
79 virtual void EndAction() override;
80 virtual void BckAction() override;
81 virtual void BrkAction() override;
82 virtual void TakeActionRect(tools::Rectangle& rRect) const override;
84 virtual bool MouseMove(const MouseEvent& rMEvt, OutputDevice* pWin) override;
86 void SetMeasureLayer(const OUString& rName) { maMeasureLayer=rName; }
88 // If the MeasureLayer is not set (empty string), then use the active layer for measuring.
89 void SetEditMode(SdrViewEditMode eMode) { SdrDragView::SetEditMode(eMode); CheckEdgeMode(); }
90 void SetEditMode(bool bOn=true) { SdrDragView::SetEditMode(bOn); CheckEdgeMode(); }
91 void SetCreateMode(bool bOn=true) { SdrDragView::SetCreateMode(bOn); CheckEdgeMode(); }
92 void SetGluePointEditMode(bool bOn=true) { SdrDragView::SetGluePointEditMode(bOn); CheckEdgeMode(); }
94 // Determine whether a text tool is activated
95 bool IsTextTool() const;
97 // Determine whether an object connector tool activated
98 bool IsEdgeTool() const;
100 // Determine whether a measurement tool activated
101 bool IsMeasureTool() const;
103 void SetCurrentObj(SdrObjKind nIdent, SdrInventor nInvent=SdrInventor::Default);
104 void TakeCurrentObj(SdrObjKind& nIdent, SdrInventor& nInvent) const
106 nInvent = mnCurrentInvent;
107 nIdent = mnCurrentIdent;
109 SdrInventor GetCurrentObjInventor() const { return mnCurrentInvent; }
110 SdrObjKind GetCurrentObjIdentifier() const { return mnCurrentIdent; }
112 // Beginning the regular Create
113 bool BegCreateObj(const Point& rPnt, OutputDevice* pOut=nullptr, short nMinMov=-3);
114 bool BegCreatePreparedObject(const Point& rPnt, sal_Int16 nMinMov, SdrObject* pPreparedFactoryObject);
115 void MovCreateObj(const Point& rPnt);
116 bool EndCreateObj(SdrCreateCmd eCmd);
117 void BckCreateObj(); // go back one polygon point
118 void BrkCreateObj();
119 bool IsCreateObj() const { return mpCurrentCreate != nullptr; }
120 SdrObject* GetCreateObj() const { return mpCurrentCreate.get(); }
122 /// Setup layer (eg. foreground / background) of the given object.
123 static void SetupObjLayer(const SdrPageView* pPageView, const OUString& aActiveLayer, SdrObject* pObj);
125 // BegCreateCaptionObj() creates a SdrCaptionObj (legend item).
126 // rObjSiz is the initial size of the legend text frame.
127 // Only the length of the tip is dragged
128 bool BegCreateCaptionObj(const Point& rPnt, const Size& rObjSiz, OutputDevice* pOut=nullptr, short nMinMov=-3);
130 // Create a circle/rectangle/text frame with the first Point being
131 // the center of the object instead of the upper-left corner.
132 // Persistent flag. Default = FALSE.
133 bool IsCreate1stPointAsCenter() const { return mb1stPointAsCenter; }
134 void SetCreate1stPointAsCenter(bool bOn) { mb1stPointAsCenter = bOn; }
136 // Default = 5 Pixel
137 sal_uInt16 GetAutoCloseDistPix() const { return sal_uInt16(mnAutoCloseDistPix); }
139 // Setting for the minimum distance in pixels between 2 bezier points when
140 // creating a freehand line.
141 // Default = 10 Pixel
142 sal_uInt16 GetFreeHandMinDistPix() const { return sal_uInt16(mnFreeHandMinDistPix); }
144 // FIXME: Whoever wants to keep the Create Interface for the PathObj which is
145 // incompatible with the rest of the Create functionality of SvDraw, needs
146 // to set the following flag. It affects the following object types:
147 // OBJ_POLY, OBJ_PLIN, OBJ_PATHLINE, OBJ_PATHFILL
149 // This flag should be regarded as temporary. The affected applications should
150 // be changed soon.
151 // Default = sal_False;
152 bool IsUseIncompatiblePathCreateInterface() const { return mbUseIncompatiblePathCreateInterface; }
153 void SetUseIncompatiblePathCreateInterface(bool bOn) { mbUseIncompatiblePathCreateInterface = bOn; }
154 void SetConnectMarker(const SdrObjConnection& rCon);
155 void HideConnectMarker();
157 // Attributes of the object that is in the process of being created
158 /* new interface src537 */
159 void GetAttributes(SfxItemSet& rTargetSet, bool bOnlyHardAttr) const;
161 bool SetAttributes(const SfxItemSet& rSet, bool bReplaceAll);
162 SfxStyleSheet* GetStyleSheet() const; // SfxStyleSheet* GetStyleSheet(bool& rOk) const;
163 void SetStyleSheet(SfxStyleSheet* pStyleSheet, bool bDontRemoveHardAttr);
166 #endif // INCLUDED_SVX_SVDCRTV_HXX
168 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */