xref: /trunk/main/sw/source/ui/ribbar/conarc.cxx (revision 372e31e89293e47e50e18ac4e33b09a09d178637)
1efeef26fSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3efeef26fSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4efeef26fSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5efeef26fSAndrew Rist  * distributed with this work for additional information
6efeef26fSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7efeef26fSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8efeef26fSAndrew Rist  * "License"); you may not use this file except in compliance
9efeef26fSAndrew Rist  * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir  *
11efeef26fSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir  *
13efeef26fSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14efeef26fSAndrew Rist  * software distributed under the License is distributed on an
15efeef26fSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16efeef26fSAndrew Rist  * KIND, either express or implied.  See the License for the
17efeef26fSAndrew Rist  * specific language governing permissions and limitations
18efeef26fSAndrew Rist  * under the License.
19cdf0e10cSrcweir  *
20efeef26fSAndrew Rist  *************************************************************/
21efeef26fSAndrew Rist 
22cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
23cdf0e10cSrcweir #include "precompiled_sw.hxx"
24cdf0e10cSrcweir 
25cdf0e10cSrcweir #include <svx/svdobj.hxx>
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #include "view.hxx"
28cdf0e10cSrcweir #include "edtwin.hxx"
29cdf0e10cSrcweir #include "wrtsh.hxx"
30cdf0e10cSrcweir #include "drawbase.hxx"
31cdf0e10cSrcweir #include "conarc.hxx"
32cdf0e10cSrcweir 
33cdf0e10cSrcweir /*************************************************************************
34*372e31e8Smseidel |* C'Tor
35cdf0e10cSrcweir \************************************************************************/
36cdf0e10cSrcweir 
ConstArc(SwWrtShell * pWrtShell,SwEditWin * pEditWin,SwView * pSwView)37cdf0e10cSrcweir ConstArc::ConstArc(SwWrtShell* pWrtShell, SwEditWin* pEditWin, SwView* pSwView)
38cdf0e10cSrcweir     : SwDrawBase(pWrtShell, pEditWin, pSwView), nAnzButUp(0)
39cdf0e10cSrcweir {
40cdf0e10cSrcweir }
41cdf0e10cSrcweir 
42cdf0e10cSrcweir /*************************************************************************
43cdf0e10cSrcweir |* MouseButtonDown-event
44cdf0e10cSrcweir \************************************************************************/
45cdf0e10cSrcweir 
MouseButtonDown(const MouseEvent & rMEvt)46cdf0e10cSrcweir sal_Bool ConstArc::MouseButtonDown( const MouseEvent& rMEvt )
47cdf0e10cSrcweir {
48cdf0e10cSrcweir     sal_Bool bReturn;
49cdf0e10cSrcweir 
50cdf0e10cSrcweir     if ((bReturn = SwDrawBase::MouseButtonDown(rMEvt)) == sal_True)
51cdf0e10cSrcweir     {
52cdf0e10cSrcweir         if (!nAnzButUp)
53cdf0e10cSrcweir             aStartPnt = m_pWin->PixelToLogic(rMEvt.GetPosPixel());
54cdf0e10cSrcweir     }
55cdf0e10cSrcweir     return (bReturn);
56cdf0e10cSrcweir }
57cdf0e10cSrcweir 
58cdf0e10cSrcweir /*************************************************************************
59cdf0e10cSrcweir |* MouseButtonUp-event
60cdf0e10cSrcweir \************************************************************************/
61cdf0e10cSrcweir 
MouseButtonUp(const MouseEvent & rMEvt)62cdf0e10cSrcweir sal_Bool ConstArc::MouseButtonUp( const MouseEvent& rMEvt )
63cdf0e10cSrcweir {
64cdf0e10cSrcweir     sal_Bool bReturn = sal_False;
65cdf0e10cSrcweir 
66cdf0e10cSrcweir     if ((m_pSh->IsDrawCreate() || m_pWin->IsDrawAction()) && rMEvt.IsLeft())
67cdf0e10cSrcweir     {
68cdf0e10cSrcweir         Point aPnt(m_pWin->PixelToLogic(rMEvt.GetPosPixel()));
69cdf0e10cSrcweir         if (!nAnzButUp && aPnt == aStartPnt)
70cdf0e10cSrcweir         {
71cdf0e10cSrcweir             SwDrawBase::MouseButtonUp(rMEvt);
72cdf0e10cSrcweir             bReturn = sal_True;
73cdf0e10cSrcweir         }
74cdf0e10cSrcweir         else
75cdf0e10cSrcweir         {   nAnzButUp++;
76cdf0e10cSrcweir 
77*372e31e8Smseidel             if (nAnzButUp == 3) // Arc generation completed
78cdf0e10cSrcweir             {
79cdf0e10cSrcweir                 SwDrawBase::MouseButtonUp(rMEvt);
80cdf0e10cSrcweir                 nAnzButUp = 0;
81cdf0e10cSrcweir                 bReturn = sal_True;
82cdf0e10cSrcweir             }
83cdf0e10cSrcweir             else
84cdf0e10cSrcweir                 m_pSh->EndCreate(SDRCREATE_NEXTPOINT);
85cdf0e10cSrcweir         }
86cdf0e10cSrcweir     }
87cdf0e10cSrcweir /*  else if ( pView->IsCreateObj() && rMEvt.IsRight() )
88cdf0e10cSrcweir     {
89cdf0e10cSrcweir         pView->EndCreateObj( SDRCREATE_FORCEEND );
90cdf0e10cSrcweir         bReturn = sal_True;
91cdf0e10cSrcweir     }*/
92cdf0e10cSrcweir 
93cdf0e10cSrcweir     return (bReturn);
94cdf0e10cSrcweir }
95cdf0e10cSrcweir 
96cdf0e10cSrcweir /*************************************************************************
97*372e31e8Smseidel |* activate function
98cdf0e10cSrcweir \************************************************************************/
99cdf0e10cSrcweir 
Activate(const sal_uInt16 nSlotId)100cdf0e10cSrcweir void ConstArc::Activate(const sal_uInt16 nSlotId)
101cdf0e10cSrcweir {
102cdf0e10cSrcweir     switch (nSlotId)
103cdf0e10cSrcweir     {
104cdf0e10cSrcweir         case SID_DRAW_ARC:
105cdf0e10cSrcweir             m_pWin->SetSdrDrawMode(OBJ_CARC);
106cdf0e10cSrcweir             break;
107cdf0e10cSrcweir         case SID_DRAW_PIE:
108cdf0e10cSrcweir             m_pWin->SetSdrDrawMode(OBJ_SECT);
109cdf0e10cSrcweir             break;
110cdf0e10cSrcweir         case SID_DRAW_CIRCLECUT:
111cdf0e10cSrcweir             m_pWin->SetSdrDrawMode(OBJ_CCUT);
112cdf0e10cSrcweir             break;
113cdf0e10cSrcweir         default:
114cdf0e10cSrcweir             m_pWin->SetSdrDrawMode(OBJ_NONE);
115cdf0e10cSrcweir             break;
116cdf0e10cSrcweir     }
117cdf0e10cSrcweir 
118cdf0e10cSrcweir     SwDrawBase::Activate(nSlotId);
119cdf0e10cSrcweir }
120cdf0e10cSrcweir 
121cdf0e10cSrcweir /*************************************************************************
122*372e31e8Smseidel |* deactivate function
123cdf0e10cSrcweir \************************************************************************/
124cdf0e10cSrcweir 
Deactivate()125cdf0e10cSrcweir void ConstArc::Deactivate()
126cdf0e10cSrcweir {
127cdf0e10cSrcweir     nAnzButUp = 0;
128cdf0e10cSrcweir 
129cdf0e10cSrcweir     SwDrawBase::Deactivate();
130cdf0e10cSrcweir }
131cdf0e10cSrcweir 
132*372e31e8Smseidel /* vim: set noet sw=4 ts=4: */
133