Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 :
21 : #include "fuconarc.hxx"
22 : #include <svx/svdpagv.hxx>
23 : #include <svx/svdocirc.hxx>
24 : #include <sfx2/request.hxx>
25 : #include <svl/intitem.hxx>
26 : #include <svl/aeitem.hxx>
27 : #include <sfx2/dispatch.hxx>
28 : #include <svx/svdobj.hxx>
29 : #include <sfx2/viewfrm.hxx>
30 :
31 :
32 : #include <svx/svxids.hrc>
33 : #include <math.h>
34 :
35 : #include "app.hrc"
36 : #include "Window.hxx"
37 : #include "drawdoc.hxx"
38 : #include "res_bmp.hrc"
39 : #include "View.hxx"
40 : #include "ViewShell.hxx"
41 : #include "ViewShellBase.hxx"
42 : #include "ToolBarManager.hxx"
43 :
44 : #include <svx/sxciaitm.hxx>
45 :
46 : namespace sd {
47 :
48 0 : TYPEINIT1( FuConstructArc, FuConstruct );
49 :
50 : /*************************************************************************
51 : |*
52 : |* Konstruktor
53 : |*
54 : \************************************************************************/
55 :
56 0 : FuConstructArc::FuConstructArc (
57 : ViewShell* pViewSh,
58 : ::sd::Window* pWin,
59 : ::sd::View* pView,
60 : SdDrawDocument* pDoc,
61 : SfxRequest& rReq )
62 0 : : FuConstruct( pViewSh, pWin, pView, pDoc, rReq )
63 : {
64 0 : }
65 :
66 0 : FunctionReference FuConstructArc::Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq, bool bPermanent )
67 : {
68 : FuConstructArc* pFunc;
69 0 : FunctionReference xFunc( pFunc = new FuConstructArc( pViewSh, pWin, pView, pDoc, rReq ) );
70 0 : xFunc->DoExecute(rReq);
71 0 : pFunc->SetPermanent(bPermanent);
72 0 : return xFunc;
73 : }
74 :
75 0 : void FuConstructArc::DoExecute( SfxRequest& rReq )
76 : {
77 0 : FuConstruct::DoExecute( rReq );
78 :
79 0 : mpViewShell->GetViewShellBase().GetToolBarManager()->SetToolBar(
80 : ToolBarManager::TBG_FUNCTION,
81 0 : ToolBarManager::msDrawingObjectToolBar);
82 :
83 0 : const SfxItemSet *pArgs = rReq.GetArgs ();
84 :
85 0 : if (pArgs)
86 : {
87 0 : SFX_REQUEST_ARG (rReq, pCenterX, SfxUInt32Item, ID_VAL_CENTER_X, sal_False);
88 0 : SFX_REQUEST_ARG (rReq, pCenterY, SfxUInt32Item, ID_VAL_CENTER_Y, sal_False);
89 0 : SFX_REQUEST_ARG (rReq, pAxisX, SfxUInt32Item, ID_VAL_AXIS_X, sal_False);
90 0 : SFX_REQUEST_ARG (rReq, pAxisY, SfxUInt32Item, ID_VAL_AXIS_Y, sal_False);
91 0 : SFX_REQUEST_ARG (rReq, pPhiStart, SfxUInt32Item, ID_VAL_ANGLESTART, sal_False);
92 0 : SFX_REQUEST_ARG (rReq, pPhiEnd, SfxUInt32Item, ID_VAL_ANGLEEND, sal_False);
93 :
94 0 : Rectangle aNewRectangle (pCenterX->GetValue () - pAxisX->GetValue () / 2,
95 0 : pCenterY->GetValue () - pAxisY->GetValue () / 2,
96 0 : pCenterX->GetValue () + pAxisX->GetValue () / 2,
97 0 : pCenterY->GetValue () + pAxisY->GetValue () / 2);
98 :
99 0 : Activate(); // Setzt aObjKind
100 : SdrCircObj* pNewCircle =
101 0 : new SdrCircObj((SdrObjKind) mpView->GetCurrentObjIdentifier(),
102 : aNewRectangle,
103 0 : (long) (pPhiStart->GetValue () * 10.0),
104 0 : (long) (pPhiEnd->GetValue () * 10.0));
105 0 : SdrPageView *pPV = mpView->GetSdrPageView();
106 :
107 0 : mpView->InsertObjectAtView(pNewCircle, *pPV, SDRINSERT_SETDEFLAYER);
108 : }
109 0 : }
110 :
111 : /*************************************************************************
112 : |*
113 : |* MouseButtonDown-event
114 : |*
115 : \************************************************************************/
116 :
117 0 : sal_Bool FuConstructArc::MouseButtonDown( const MouseEvent& rMEvt )
118 : {
119 0 : sal_Bool bReturn = FuConstruct::MouseButtonDown( rMEvt );
120 :
121 0 : if ( rMEvt.IsLeft() && !mpView->IsAction() )
122 : {
123 0 : Point aPnt( mpWindow->PixelToLogic( rMEvt.GetPosPixel() ) );
124 0 : mpWindow->CaptureMouse();
125 0 : sal_uInt16 nDrgLog = sal_uInt16 ( mpWindow->PixelToLogic(Size(DRGPIX,0)).Width() );
126 0 : mpView->BegCreateObj(aPnt, (OutputDevice*) NULL, nDrgLog);
127 :
128 0 : SdrObject* pObj = mpView->GetCreateObj();
129 :
130 0 : if (pObj)
131 : {
132 0 : SfxItemSet aAttr(mpDoc->GetPool());
133 0 : SetStyleSheet(aAttr, pObj);
134 :
135 0 : pObj->SetMergedItemSet(aAttr);
136 : }
137 :
138 0 : bReturn = sal_True;
139 : }
140 0 : return bReturn;
141 : }
142 :
143 : /*************************************************************************
144 : |*
145 : |* MouseMove-event
146 : |*
147 : \************************************************************************/
148 :
149 0 : sal_Bool FuConstructArc::MouseMove( const MouseEvent& rMEvt )
150 : {
151 0 : return FuConstruct::MouseMove(rMEvt);
152 : }
153 :
154 : /*************************************************************************
155 : |*
156 : |* MouseButtonUp-event
157 : |*
158 : \************************************************************************/
159 :
160 0 : sal_Bool FuConstructArc::MouseButtonUp( const MouseEvent& rMEvt )
161 : {
162 0 : sal_Bool bReturn = sal_False;
163 0 : sal_Bool bCreated = sal_False;
164 :
165 0 : if ( mpView->IsCreateObj() && rMEvt.IsLeft() )
166 : {
167 0 : sal_uLong nCount = mpView->GetSdrPageView()->GetObjList()->GetObjCount();
168 :
169 0 : if (mpView->EndCreateObj(SDRCREATE_NEXTPOINT) )
170 : {
171 0 : if (nCount != mpView->GetSdrPageView()->GetObjList()->GetObjCount())
172 : {
173 0 : bCreated = sal_True;
174 : }
175 : }
176 :
177 0 : bReturn = sal_True;
178 : }
179 :
180 0 : bReturn = FuConstruct::MouseButtonUp (rMEvt) || bReturn;
181 :
182 0 : if (!bPermanent && bCreated)
183 0 : mpViewShell->GetViewFrame()->GetDispatcher()->Execute(SID_OBJECT_SELECT, SFX_CALLMODE_ASYNCHRON);
184 :
185 0 : return bReturn;
186 : }
187 :
188 : /*************************************************************************
189 : |*
190 : |* Tastaturereignisse bearbeiten
191 : |*
192 : |* Wird ein KeyEvent bearbeitet, so ist der Return-Wert sal_True, andernfalls
193 : |* sal_False.
194 : |*
195 : \************************************************************************/
196 :
197 0 : sal_Bool FuConstructArc::KeyInput(const KeyEvent& rKEvt)
198 : {
199 0 : sal_Bool bReturn = FuConstruct::KeyInput(rKEvt);
200 0 : return(bReturn);
201 : }
202 :
203 : /*************************************************************************
204 : |*
205 : |* Function aktivieren
206 : |*
207 : \************************************************************************/
208 :
209 0 : void FuConstructArc::Activate()
210 : {
211 : SdrObjKind aObjKind;
212 :
213 0 : switch( nSlotId )
214 : {
215 : case SID_DRAW_ARC :
216 : case SID_DRAW_CIRCLEARC:
217 : {
218 0 : aObjKind = OBJ_CARC;
219 : }
220 0 : break;
221 :
222 : case SID_DRAW_PIE :
223 : case SID_DRAW_PIE_NOFILL :
224 : case SID_DRAW_CIRCLEPIE :
225 : case SID_DRAW_CIRCLEPIE_NOFILL:
226 : {
227 0 : aObjKind = OBJ_SECT;
228 : }
229 0 : break;
230 :
231 : case SID_DRAW_ELLIPSECUT :
232 : case SID_DRAW_ELLIPSECUT_NOFILL:
233 : case SID_DRAW_CIRCLECUT :
234 : case SID_DRAW_CIRCLECUT_NOFILL :
235 : {
236 0 : aObjKind = OBJ_CCUT;
237 : }
238 0 : break;
239 :
240 : default:
241 : {
242 0 : aObjKind = OBJ_CARC;
243 : }
244 0 : break;
245 : }
246 :
247 0 : mpView->SetCurrentObj((sal_uInt16)aObjKind);
248 :
249 0 : FuConstruct::Activate();
250 0 : }
251 :
252 : /*************************************************************************
253 : |*
254 : |* Function deaktivieren
255 : |*
256 : \************************************************************************/
257 :
258 0 : void FuConstructArc::Deactivate()
259 : {
260 0 : FuConstruct::Deactivate();
261 0 : }
262 :
263 0 : SdrObject* FuConstructArc::CreateDefaultObject(const sal_uInt16 nID, const Rectangle& rRectangle)
264 : {
265 :
266 : SdrObject* pObj = SdrObjFactory::MakeNewObject(
267 0 : mpView->GetCurrentObjInventor(), mpView->GetCurrentObjIdentifier(),
268 0 : 0L, mpDoc);
269 :
270 0 : if(pObj)
271 : {
272 0 : if(pObj->ISA(SdrCircObj))
273 : {
274 0 : Rectangle aRect(rRectangle);
275 :
276 0 : if(SID_DRAW_ARC == nID ||
277 : SID_DRAW_CIRCLEARC == nID ||
278 : SID_DRAW_CIRCLEPIE == nID ||
279 : SID_DRAW_CIRCLEPIE_NOFILL == nID ||
280 : SID_DRAW_CIRCLECUT == nID ||
281 : SID_DRAW_CIRCLECUT_NOFILL == nID)
282 : {
283 : // force quadratic
284 0 : ImpForceQuadratic(aRect);
285 : }
286 :
287 0 : pObj->SetLogicRect(aRect);
288 :
289 0 : SfxItemSet aAttr(mpDoc->GetPool());
290 0 : aAttr.Put(SdrCircStartAngleItem(9000));
291 0 : aAttr.Put(SdrCircEndAngleItem(0));
292 :
293 0 : if(SID_DRAW_PIE_NOFILL == nID ||
294 : SID_DRAW_CIRCLEPIE_NOFILL == nID ||
295 : SID_DRAW_ELLIPSECUT_NOFILL == nID ||
296 : SID_DRAW_CIRCLECUT_NOFILL == nID)
297 : {
298 0 : aAttr.Put(XFillStyleItem(XFILL_NONE));
299 : }
300 :
301 0 : pObj->SetMergedItemSet(aAttr);
302 : }
303 : else
304 : {
305 : OSL_FAIL("Object is NO circle object");
306 : }
307 : }
308 :
309 0 : return pObj;
310 : }
311 :
312 : } // end of namespace sd
313 :
314 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|