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 _E3D_DRAGMT3D_HXX
21 #define _E3D_DRAGMT3D_HXX
23 #include <svx/svddrgmt.hxx>
24 #include <svx/view3d.hxx>
25 #include <basegfx/polygon/b3dpolypolygon.hxx>
26 #include <vcl/timer.hxx>
27 #include <basegfx/matrix/b3dhommatrix.hxx>
29 /*************************************************************************
31 |* Parameters for the interaction of a 3D object
33 \************************************************************************/
34 class E3dDragMethodUnit
38 basegfx::B3DPolyPolygon maWireframePoly
;
39 basegfx::B3DHomMatrix maDisplayTransform
;
40 basegfx::B3DHomMatrix maInvDisplayTransform
;
41 basegfx::B3DHomMatrix maInitTransform
;
42 basegfx::B3DHomMatrix maTransform
;
43 sal_Int32 mnStartAngle
;
44 sal_Int32 mnLastAngle
;
50 maInvDisplayTransform(),
58 /*************************************************************************
60 |* Derivative of SdrDragMethod for 3D objects
62 \************************************************************************/
64 class E3dDragMethod
: public SdrDragMethod
67 ::std::vector
< E3dDragMethodUnit
> maGrp
;
68 E3dDragConstraint meConstraint
;
70 Rectangle maFullBound
;
78 const SdrMarkList
& rMark
,
79 E3dDragConstraint eConstr
= E3DDRAG_CONSTR_XYZ
,
80 sal_Bool bFull
= sal_False
);
82 virtual void TakeSdrDragComment(String
& rStr
) const;
83 virtual bool BeginSdrDrag();
84 virtual void MoveSdrDrag(const Point
& rPnt
);
85 virtual void CancelSdrDrag();
86 virtual bool EndSdrDrag(bool bCopy
);
88 E3dView
& Get3DView() { return (E3dView
&)getSdrDragView(); }
90 // for migration from XOR to overlay
91 virtual void CreateOverlayGeometry(::sdr::overlay::OverlayManager
& rOverlayManager
);
95 /*************************************************************************
97 |* Derivative of SdrDragMethod for spinning 3D objects
99 \************************************************************************/
101 class E3dDragRotate
: public E3dDragMethod
103 basegfx::B3DPoint maGlobalCenter
;
109 const SdrMarkList
& rMark
,
110 E3dDragConstraint eConstr
= E3DDRAG_CONSTR_XYZ
,
111 sal_Bool bFull
= sal_False
);
113 virtual void MoveSdrDrag(const Point
& rPnt
);
114 virtual Pointer
GetSdrDragPointer() const;
118 /*************************************************************************
120 |* Derivative of SdrDragMethod for moving 3D sub-objects
122 \************************************************************************/
124 class E3dDragMove
: public E3dDragMethod
126 SdrHdlKind meWhatDragHdl
;
133 const SdrMarkList
& rMark
,
134 SdrHdlKind eDrgHdl
= HDL_MOVE
,
135 E3dDragConstraint eConstr
= E3DDRAG_CONSTR_XYZ
,
136 sal_Bool bFull
= sal_False
);
138 virtual void MoveSdrDrag(const Point
& rPnt
);
139 virtual Pointer
GetSdrDragPointer() const;
143 #endif // _E3D_DRAGMT3D_HXX
145 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */