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 #include <svx/svxids.hrc>
21 #include <vcl/event.hxx>
26 #include <drawbase.hxx>
29 ConstArc::ConstArc(SwWrtShell
* pWrtShell
, SwEditWin
* pEditWin
, SwView
* pSwView
)
30 : SwDrawBase(pWrtShell
, pEditWin
, pSwView
)
35 bool ConstArc::MouseButtonDown(const MouseEvent
& rMEvt
)
37 bool bReturn
= SwDrawBase::MouseButtonDown(rMEvt
);
38 if (bReturn
&& !m_nButtonUpCount
)
39 m_aStartPoint
= m_pWin
->PixelToLogic(rMEvt
.GetPosPixel());
43 bool ConstArc::MouseButtonUp(const MouseEvent
& rMEvt
)
47 if ((m_pSh
->IsDrawCreate() || m_pWin
->IsDrawAction()) && rMEvt
.IsLeft())
49 Point
aPnt(m_pWin
->PixelToLogic(rMEvt
.GetPosPixel()));
50 if (!m_nButtonUpCount
&& aPnt
== m_aStartPoint
)
52 SwDrawBase::MouseButtonUp(rMEvt
);
59 if (m_nButtonUpCount
== 3) // Generating of circular arc finished
61 SwDrawBase::MouseButtonUp(rMEvt
);
66 m_pSh
->EndCreate(SdrCreateCmd::NextPoint
);
73 void ConstArc::Activate(const sal_uInt16 nSlotId
)
78 m_pWin
->SetSdrDrawMode(SdrObjKind::CircleArc
);
81 m_pWin
->SetSdrDrawMode(SdrObjKind::CircleSection
);
83 case SID_DRAW_CIRCLECUT
:
84 m_pWin
->SetSdrDrawMode(SdrObjKind::CircleCut
);
87 m_pWin
->SetSdrDrawMode(SdrObjKind::NONE
);
91 SwDrawBase::Activate(nSlotId
);
94 void ConstArc::Deactivate()
98 SwDrawBase::Deactivate();
101 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */