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/fmglob.hxx>
26cdf0e10cSrcweir #include <svx/svdview.hxx>
27cdf0e10cSrcweir #include <svx/fmshell.hxx>
28cdf0e10cSrcweir
29cdf0e10cSrcweir #include "view.hxx"
30cdf0e10cSrcweir #include "edtwin.hxx"
31cdf0e10cSrcweir #include "wrtsh.hxx"
32cdf0e10cSrcweir #include "drawbase.hxx"
33cdf0e10cSrcweir #include "conform.hxx"
34cdf0e10cSrcweir
35cdf0e10cSrcweir extern sal_Bool bNoInterrupt; // in mainwn.cxx
36cdf0e10cSrcweir
37cdf0e10cSrcweir /*************************************************************************
38*372e31e8Smseidel |* C'Tor
39cdf0e10cSrcweir \************************************************************************/
40cdf0e10cSrcweir
ConstFormControl(SwWrtShell * pWrtShell,SwEditWin * pEditWin,SwView * pSwView)41cdf0e10cSrcweir ConstFormControl::ConstFormControl(SwWrtShell* pWrtShell, SwEditWin* pEditWin, SwView* pSwView) :
42cdf0e10cSrcweir SwDrawBase(pWrtShell, pEditWin, pSwView)
43cdf0e10cSrcweir {
44cdf0e10cSrcweir m_bInsForm = sal_True;
45cdf0e10cSrcweir }
46cdf0e10cSrcweir
47cdf0e10cSrcweir /*************************************************************************
48cdf0e10cSrcweir |* MouseButtonDown-event
49cdf0e10cSrcweir \************************************************************************/
50cdf0e10cSrcweir
MouseButtonDown(const MouseEvent & rMEvt)51cdf0e10cSrcweir sal_Bool ConstFormControl::MouseButtonDown(const MouseEvent& rMEvt)
52cdf0e10cSrcweir {
53cdf0e10cSrcweir sal_Bool bReturn = sal_False;
54cdf0e10cSrcweir
55cdf0e10cSrcweir SdrView *pSdrView = m_pSh->GetDrawView();
56cdf0e10cSrcweir
57cdf0e10cSrcweir pSdrView->SetOrtho(rMEvt.IsShift());
58cdf0e10cSrcweir pSdrView->SetAngleSnapEnabled(rMEvt.IsShift());
59cdf0e10cSrcweir
60cdf0e10cSrcweir if (rMEvt.IsMod2())
61cdf0e10cSrcweir {
62cdf0e10cSrcweir pSdrView->SetCreate1stPointAsCenter(sal_True);
63cdf0e10cSrcweir pSdrView->SetResizeAtCenter(sal_True);
64cdf0e10cSrcweir }
65cdf0e10cSrcweir else
66cdf0e10cSrcweir {
67cdf0e10cSrcweir pSdrView->SetCreate1stPointAsCenter(sal_False);
68cdf0e10cSrcweir pSdrView->SetResizeAtCenter(sal_False);
69cdf0e10cSrcweir }
70cdf0e10cSrcweir
71cdf0e10cSrcweir SdrViewEvent aVEvt;
72cdf0e10cSrcweir SdrHitKind eHit = pSdrView->PickAnything(rMEvt, SDRMOUSEBUTTONDOWN, aVEvt);
73cdf0e10cSrcweir
74cdf0e10cSrcweir // Nur neues Objekt, wenn nicht im Basismode (bzw reinem Selektionsmode)
75cdf0e10cSrcweir if (rMEvt.IsLeft() && !m_pWin->IsDrawAction() &&
76cdf0e10cSrcweir (eHit == SDRHIT_UNMARKEDOBJECT || eHit == SDRHIT_NONE || m_pSh->IsDrawCreate()))
77cdf0e10cSrcweir {
78cdf0e10cSrcweir bNoInterrupt = sal_True;
79cdf0e10cSrcweir m_pWin->CaptureMouse();
80cdf0e10cSrcweir
81cdf0e10cSrcweir m_pWin->SetPointer(Pointer(POINTER_DRAW_RECT));
82cdf0e10cSrcweir
83cdf0e10cSrcweir m_aStartPos = m_pWin->PixelToLogic(rMEvt.GetPosPixel());
84cdf0e10cSrcweir bReturn = m_pSh->BeginCreate( static_cast< sal_uInt16 >(m_pWin->GetSdrDrawMode()), FmFormInventor, m_aStartPos);
85cdf0e10cSrcweir
86cdf0e10cSrcweir if (bReturn)
87cdf0e10cSrcweir m_pWin->SetDrawAction(sal_True);
88cdf0e10cSrcweir }
89cdf0e10cSrcweir else
90cdf0e10cSrcweir bReturn = SwDrawBase::MouseButtonDown(rMEvt);
91cdf0e10cSrcweir
92cdf0e10cSrcweir return (bReturn);
93cdf0e10cSrcweir }
94cdf0e10cSrcweir
95cdf0e10cSrcweir /*************************************************************************
96*372e31e8Smseidel |* activate function
97cdf0e10cSrcweir \************************************************************************/
98cdf0e10cSrcweir
Activate(const sal_uInt16 nSlotId)99cdf0e10cSrcweir void ConstFormControl::Activate(const sal_uInt16 nSlotId)
100cdf0e10cSrcweir {
101cdf0e10cSrcweir m_pWin->SetSdrDrawMode( static_cast<SdrObjKind>(nSlotId) );
102cdf0e10cSrcweir SwDrawBase::Activate(nSlotId);
103cdf0e10cSrcweir m_pSh->GetDrawView()->SetCurrentObj(nSlotId);
104cdf0e10cSrcweir
105cdf0e10cSrcweir m_pWin->SetPointer(Pointer(POINTER_DRAW_RECT));
106cdf0e10cSrcweir }
107cdf0e10cSrcweir
CreateDefaultObject()108cdf0e10cSrcweir void ConstFormControl::CreateDefaultObject()
109cdf0e10cSrcweir {
110cdf0e10cSrcweir Point aStartPos(GetDefaultCenterPos());
111cdf0e10cSrcweir Point aEndPos(aStartPos);
112cdf0e10cSrcweir aStartPos.X() -= 2 * MM50;
113cdf0e10cSrcweir aStartPos.Y() -= MM50;
114cdf0e10cSrcweir aEndPos.X() += 2 * MM50;
115cdf0e10cSrcweir aEndPos.Y() += MM50;
116cdf0e10cSrcweir
117cdf0e10cSrcweir if(!m_pSh->HasDrawView())
118cdf0e10cSrcweir m_pSh->MakeDrawView();
119cdf0e10cSrcweir
120cdf0e10cSrcweir SdrView *pSdrView = m_pSh->GetDrawView();
121cdf0e10cSrcweir pSdrView->SetDesignMode(sal_True);
122cdf0e10cSrcweir m_pSh->BeginCreate( static_cast< sal_uInt16 >(m_pWin->GetSdrDrawMode()), FmFormInventor, aStartPos);
123cdf0e10cSrcweir m_pSh->MoveCreate(aEndPos);
124cdf0e10cSrcweir m_pSh->EndCreate(SDRCREATE_FORCEEND);
125cdf0e10cSrcweir }
126cdf0e10cSrcweir
127*372e31e8Smseidel /* vim: set noet sw=4 ts=4: */
128