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 "BezierObjectBar.hxx"
22 : #include <sfx2/app.hxx>
23 : #include <sfx2/msg.hxx>
24 :
25 : #include <sfx2/viewfrm.hxx>
26 : #include <sfx2/objface.hxx>
27 :
28 : #include <svx/svxids.hrc>
29 : #include <svl/eitem.hxx>
30 : #include <sfx2/request.hxx>
31 : #include <svx/svdopath.hxx>
32 : #include <svl/aeitem.hxx>
33 : #include <svx/svdundo.hxx>
34 : #include <sfx2/dispatch.hxx>
35 :
36 :
37 : #include "sdresid.hxx"
38 :
39 :
40 :
41 : #include "res_bmp.hrc"
42 : #include "glob.hrc"
43 : #include "strings.hrc"
44 :
45 : #include "DrawDocShell.hxx"
46 : #include "ViewShell.hxx"
47 : #include "Window.hxx"
48 : #include "drawview.hxx"
49 : #include "drawdoc.hxx"
50 : #include "fusel.hxx"
51 : #include "fuconbez.hxx"
52 :
53 :
54 : using namespace sd;
55 : #define BezierObjectBar
56 : #include "sdslots.hxx"
57 :
58 : namespace sd {
59 :
60 : /*************************************************************************
61 : |*
62 : |* Standardinterface deklarieren (Die Slotmap darf nicht leer sein)
63 : |*
64 : \************************************************************************/
65 :
66 :
67 :
68 9 : SFX_IMPL_INTERFACE(BezierObjectBar, ::SfxShell, SdResId(STR_BEZIEROBJECTBARSHELL))
69 : {
70 3 : }
71 :
72 0 : TYPEINIT1(BezierObjectBar, ::SfxShell);
73 :
74 : /*************************************************************************
75 : |*
76 : |* Standard-Konstruktor
77 : |*
78 : \************************************************************************/
79 :
80 0 : BezierObjectBar::BezierObjectBar(
81 : ViewShell* pSdViewShell,
82 : ::sd::View* pSdView)
83 : : SfxShell(pSdViewShell->GetViewShell()),
84 : mpView(pSdView),
85 0 : mpViewSh(pSdViewShell)
86 : {
87 0 : DrawDocShell* pDocShell = mpViewSh->GetDocSh();
88 0 : SetPool(&pDocShell->GetPool());
89 0 : SetUndoManager(pDocShell->GetUndoManager());
90 0 : SetRepeatTarget(mpView);
91 :
92 0 : SetHelpId( SD_IF_SDDRAWBEZIEROBJECTBAR );
93 0 : }
94 :
95 : /*************************************************************************
96 : |*
97 : |* Destruktor
98 : |*
99 : \************************************************************************/
100 :
101 0 : BezierObjectBar::~BezierObjectBar()
102 : {
103 0 : SetRepeatTarget(NULL);
104 0 : }
105 :
106 :
107 : /*************************************************************************
108 : |*
109 : |* Status der Attribut-Items
110 : |*
111 : \************************************************************************/
112 :
113 0 : void BezierObjectBar::GetAttrState(SfxItemSet& rSet)
114 : {
115 0 : SfxItemSet aAttrSet( mpView->GetDoc().GetPool() );
116 0 : mpView->GetAttributes( aAttrSet );
117 0 : rSet.Put(aAttrSet, sal_False); // <- sal_False, damit DontCare-Status uebernommen wird
118 :
119 0 : FunctionReference xFunc( mpViewSh->GetCurrentFunction() );
120 :
121 0 : if(xFunc.is())
122 : {
123 0 : if(xFunc->ISA(FuSelection))
124 : {
125 0 : sal_uInt16 nEditMode = static_cast<FuSelection*>(xFunc.get())->GetEditMode();
126 0 : rSet.Put(SfxBoolItem(nEditMode, sal_True));
127 : }
128 0 : else if (xFunc->ISA(FuConstructBezierPolygon))
129 : {
130 0 : sal_uInt16 nEditMode = static_cast<FuConstructBezierPolygon*>(xFunc.get())->GetEditMode();
131 0 : rSet.Put(SfxBoolItem(nEditMode, sal_True));
132 : }
133 : }
134 :
135 0 : if(!mpView->IsMoveAllowed() || !mpView->IsResizeAllowed())
136 : {
137 : // #i77187# if object is move and/or size protected, do not allow point editing at all
138 0 : rSet.DisableItem(SID_BEZIER_MOVE);
139 0 : rSet.DisableItem(SID_BEZIER_INSERT);
140 :
141 0 : rSet.DisableItem(SID_BEZIER_DELETE);
142 0 : rSet.DisableItem(SID_BEZIER_CUTLINE);
143 0 : rSet.DisableItem(SID_BEZIER_CONVERT);
144 :
145 0 : rSet.DisableItem(SID_BEZIER_EDGE);
146 0 : rSet.DisableItem(SID_BEZIER_SMOOTH);
147 0 : rSet.DisableItem(SID_BEZIER_SYMMTR);
148 :
149 0 : rSet.DisableItem(SID_BEZIER_CLOSE);
150 :
151 0 : rSet.DisableItem(SID_BEZIER_ELIMINATE_POINTS);
152 : }
153 : else
154 : {
155 0 : IPolyPolygonEditorController* pIPPEC = 0;
156 0 : if( mpView->GetMarkedObjectList().GetMarkCount() )
157 0 : pIPPEC = mpView;
158 : else
159 0 : pIPPEC = dynamic_cast< IPolyPolygonEditorController* >( mpView->getSmartTags().getSelected().get() );
160 :
161 0 : if ( !pIPPEC || !pIPPEC->IsRipUpAtMarkedPointsPossible())
162 : {
163 0 : rSet.DisableItem(SID_BEZIER_CUTLINE);
164 : }
165 0 : if (!pIPPEC || !pIPPEC->IsDeleteMarkedPointsPossible())
166 : {
167 0 : rSet.DisableItem(SID_BEZIER_DELETE);
168 : }
169 0 : if (!pIPPEC || !pIPPEC->IsSetMarkedSegmentsKindPossible())
170 : {
171 0 : rSet.DisableItem(SID_BEZIER_CONVERT);
172 : }
173 : else
174 : {
175 0 : SdrPathSegmentKind eSegm = pIPPEC->GetMarkedSegmentsKind();
176 0 : switch (eSegm)
177 : {
178 0 : case SDRPATHSEGMENT_DONTCARE: rSet.InvalidateItem(SID_BEZIER_CONVERT); break;
179 0 : case SDRPATHSEGMENT_LINE : rSet.Put(SfxBoolItem(SID_BEZIER_CONVERT,sal_False)); break; // Button reingedrueckt = Kurve
180 0 : case SDRPATHSEGMENT_CURVE : rSet.Put(SfxBoolItem(SID_BEZIER_CONVERT,sal_True)); break;
181 0 : default: break;
182 : }
183 : }
184 0 : if (!pIPPEC || !pIPPEC->IsSetMarkedPointsSmoothPossible())
185 : {
186 0 : rSet.DisableItem(SID_BEZIER_EDGE);
187 0 : rSet.DisableItem(SID_BEZIER_SMOOTH);
188 0 : rSet.DisableItem(SID_BEZIER_SYMMTR);
189 : }
190 : else
191 : {
192 0 : SdrPathSmoothKind eSmooth = pIPPEC->GetMarkedPointsSmooth();
193 0 : switch (eSmooth)
194 : {
195 0 : case SDRPATHSMOOTH_DONTCARE : break;
196 0 : case SDRPATHSMOOTH_ANGULAR : rSet.Put(SfxBoolItem(SID_BEZIER_EDGE, sal_True)); break;
197 0 : case SDRPATHSMOOTH_ASYMMETRIC: rSet.Put(SfxBoolItem(SID_BEZIER_SMOOTH,sal_True)); break;
198 0 : case SDRPATHSMOOTH_SYMMETRIC : rSet.Put(SfxBoolItem(SID_BEZIER_SYMMTR,sal_True)); break;
199 : }
200 : }
201 0 : if (!pIPPEC || !pIPPEC->IsOpenCloseMarkedObjectsPossible())
202 : {
203 0 : rSet.DisableItem(SID_BEZIER_CLOSE);
204 : }
205 : else
206 : {
207 0 : SdrObjClosedKind eClose = pIPPEC->GetMarkedObjectsClosedState();
208 0 : switch (eClose)
209 : {
210 0 : case SDROBJCLOSED_DONTCARE: rSet.InvalidateItem(SID_BEZIER_CLOSE); break;
211 0 : case SDROBJCLOSED_OPEN : rSet.Put(SfxBoolItem(SID_BEZIER_CLOSE,sal_False)); break;
212 0 : case SDROBJCLOSED_CLOSED : rSet.Put(SfxBoolItem(SID_BEZIER_CLOSE,sal_True)); break;
213 0 : default: break;
214 : }
215 : }
216 :
217 0 : if(pIPPEC == mpView)
218 0 : rSet.Put(SfxBoolItem(SID_BEZIER_ELIMINATE_POINTS, mpView->IsEliminatePolyPoints()));
219 : else
220 0 : rSet.DisableItem( SID_BEZIER_ELIMINATE_POINTS ); // only works for views
221 0 : }
222 0 : }
223 :
224 :
225 : /*************************************************************************
226 : |*
227 : |* Bearbeitung der SfxRequests
228 : |*
229 : \************************************************************************/
230 :
231 0 : void BezierObjectBar::Execute(SfxRequest& rReq)
232 : {
233 0 : sal_uInt16 nSId = rReq.GetSlot();
234 :
235 0 : switch (nSId)
236 : {
237 : case SID_BEZIER_CUTLINE:
238 : case SID_BEZIER_CONVERT:
239 : case SID_BEZIER_DELETE:
240 : case SID_BEZIER_EDGE:
241 : case SID_BEZIER_SMOOTH:
242 : case SID_BEZIER_SYMMTR:
243 : case SID_BEZIER_CLOSE:
244 : {
245 0 : const SdrMarkList& rMarkList = mpView->GetMarkedObjectList();
246 :
247 0 : IPolyPolygonEditorController* pIPPEC = 0;
248 0 : if( rMarkList.GetMarkCount() )
249 0 : pIPPEC = mpView;
250 : else
251 0 : pIPPEC = dynamic_cast< IPolyPolygonEditorController* >( mpView->getSmartTags().getSelected().get() );
252 :
253 0 : if( pIPPEC && !mpView->IsAction())
254 : {
255 0 : switch (nSId)
256 : {
257 : case SID_BEZIER_DELETE:
258 0 : pIPPEC->DeleteMarkedPoints();
259 0 : break;
260 :
261 : case SID_BEZIER_CUTLINE:
262 0 : pIPPEC->RipUpAtMarkedPoints();
263 0 : break;
264 :
265 : case SID_BEZIER_CONVERT:
266 : {
267 0 : pIPPEC->SetMarkedSegmentsKind(SDRPATHSEGMENT_TOGGLE);
268 0 : break;
269 : }
270 :
271 : case SID_BEZIER_EDGE:
272 : case SID_BEZIER_SMOOTH:
273 : case SID_BEZIER_SYMMTR:
274 : {
275 : SdrPathSmoothKind eKind;
276 :
277 0 : switch (nSId)
278 : {
279 : default:
280 0 : case SID_BEZIER_EDGE: eKind = SDRPATHSMOOTH_ANGULAR; break;
281 0 : case SID_BEZIER_SMOOTH: eKind = SDRPATHSMOOTH_ASYMMETRIC; break;
282 0 : case SID_BEZIER_SYMMTR: eKind = SDRPATHSMOOTH_SYMMETRIC; break;
283 : }
284 :
285 0 : pIPPEC->SetMarkedPointsSmooth(eKind);
286 0 : break;
287 : }
288 :
289 : case SID_BEZIER_CLOSE:
290 : {
291 0 : SdrPathObj* pPathObj = (SdrPathObj*) rMarkList.GetMark(0)->GetMarkedSdrObj();
292 0 : const bool bUndo = mpView->IsUndoEnabled();
293 0 : if( bUndo )
294 0 : mpView->BegUndo(String(SdResId(STR_UNDO_BEZCLOSE)));
295 :
296 0 : mpView->UnmarkAllPoints();
297 :
298 0 : if( bUndo )
299 0 : mpView->AddUndo(mpView->GetModel()->GetSdrUndoFactory().CreateUndoGeoObject(*pPathObj));
300 :
301 0 : pPathObj->ToggleClosed();
302 :
303 0 : if( bUndo )
304 0 : mpView->EndUndo();
305 0 : break;
306 : }
307 : }
308 : }
309 :
310 0 : if( (pIPPEC == mpView) && !mpView->AreObjectsMarked() )
311 0 : mpViewSh->GetViewFrame()->GetDispatcher()->Execute(SID_OBJECT_SELECT, SFX_CALLMODE_ASYNCHRON);
312 :
313 0 : rReq.Ignore();
314 : }
315 0 : break;
316 :
317 : case SID_BEZIER_ELIMINATE_POINTS:
318 : {
319 0 : mpView->SetEliminatePolyPoints(!mpView->IsEliminatePolyPoints());
320 0 : Invalidate(SID_BEZIER_ELIMINATE_POINTS);
321 0 : rReq.Done();
322 : }
323 0 : break;
324 :
325 : case SID_BEZIER_MOVE:
326 : case SID_BEZIER_INSERT:
327 : {
328 0 : FunctionReference xFunc( mpViewSh->GetCurrentFunction() );
329 :
330 0 : if(xFunc.is())
331 : {
332 0 : if(xFunc->ISA(FuSelection))
333 : {
334 0 : static_cast<FuSelection*>(xFunc.get())->SetEditMode(rReq.GetSlot());
335 : }
336 0 : else if(xFunc->ISA(FuConstructBezierPolygon))
337 : {
338 0 : static_cast<FuConstructBezierPolygon*>(xFunc.get())->SetEditMode(rReq.GetSlot());
339 : }
340 : }
341 :
342 0 : rReq.Ignore ();
343 : }
344 0 : break;
345 :
346 : default:
347 0 : break;
348 : }
349 :
350 0 : Invalidate();
351 0 : }
352 :
353 :
354 : } // end of namespace sd
355 :
356 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|