Get the style color and number just once
[LibreOffice.git] / sd / source / ui / func / fulinend.cxx
blob629c18935023b4b94f4ce7f8c037296834d7e960
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 <fulinend.hxx>
21 #include <svx/xtable.hxx>
22 #include <svx/svxdlg.hxx>
23 #include <svx/svdobj.hxx>
24 #include <svx/svdopath.hxx>
25 #include <vcl/svapp.hxx>
26 #include <vcl/weld.hxx>
28 #include <strings.hrc>
29 #include <helpids.h>
30 #include <sdresid.hxx>
31 #include <drawdoc.hxx>
32 #include <View.hxx>
33 #include <Window.hxx>
34 #include <memory>
36 namespace sd {
39 FuLineEnd::FuLineEnd(ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView,
40 SdDrawDocument* pDoc, SfxRequest& rReq)
41 : FuPoor(pViewSh, pWin, pView, pDoc, rReq)
45 rtl::Reference<FuPoor> FuLineEnd::Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq )
47 rtl::Reference<FuPoor> xFunc( new FuLineEnd( pViewSh, pWin, pView, pDoc, rReq ) );
48 xFunc->DoExecute(rReq);
49 return xFunc;
52 void FuLineEnd::DoExecute( SfxRequest& )
54 const SdrMarkList& rMarkList = mpView->GetMarkedObjectList();
56 if( rMarkList.GetMarkCount() != 1 )
57 return;
59 const SdrObject* pObj = rMarkList.GetMark(0)->GetMarkedSdrObj();
60 assert(pObj);
61 const SdrObject* pNewObj;
62 rtl::Reference<SdrObject> pConvPolyObj;
64 if( dynamic_cast< const SdrPathObj *>( pObj ) != nullptr )
66 pNewObj = pObj;
68 else
70 SdrObjTransformInfoRec aInfoRec;
71 pObj->TakeObjInfo( aInfoRec );
73 if( aInfoRec.bCanConvToPath &&
74 pObj->GetObjInventor() == SdrInventor::Default &&
75 pObj->GetObjIdentifier() != SdrObjKind::Group )
76 // bCanConvToPath is sal_True for group objects,
77 // but it crashes on ConvertToPathObj()!
79 pConvPolyObj = pObj->ConvertToPolyObj( true, false );
80 pNewObj = pConvPolyObj.get();
82 if( !pNewObj || dynamic_cast< const SdrPathObj *>( pNewObj ) == nullptr )
83 return; // Cancel, additional security, but it does not help
84 // for group objects
86 else return; // Cancel
89 const ::basegfx::B2DPolyPolygon aPolyPolygon = static_cast<const SdrPathObj*>(pNewObj)->GetPathPoly();
91 // Delete the created poly-object
92 pConvPolyObj.clear();
94 XLineEndListRef pLineEndList = mpDoc->GetLineEndList();
96 OUString aNewName( SdResId( STR_LINEEND ) );
97 OUString aDesc( SdResId( STR_DESC_LINEEND ) );
98 OUString aName;
100 ::tools::Long nCount = pLineEndList->Count();
101 ::tools::Long j = 1;
102 bool bDifferent = false;
104 while( !bDifferent )
106 aName = aNewName + " " + OUString::number(j++);
107 bDifferent = true;
108 for( ::tools::Long i = 0; i < nCount && bDifferent; i++ )
110 if( aName == pLineEndList->GetLineEnd( i )->GetName() )
111 bDifferent = false;
115 SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
116 ScopedVclPtr<AbstractSvxNameDialog> pDlg( pFact->CreateSvxNameDialog( nullptr, aName, aDesc ) );
118 pDlg->SetEditHelpId( HID_SD_NAMEDIALOG_LINEEND );
120 if( pDlg->Execute() != RET_OK )
121 return;
123 aName = pDlg->GetName();
124 bDifferent = true;
126 for( ::tools::Long i = 0; i < nCount && bDifferent; i++ )
128 if( aName == pLineEndList->GetLineEnd( i )->GetName() )
129 bDifferent = false;
132 if( bDifferent )
134 pLineEndList->Insert(std::make_unique<XLineEndEntry>(aPolyPolygon, aName));
136 else
138 std::unique_ptr<weld::MessageDialog> xWarn(Application::CreateMessageDialog(mpWindow ? mpWindow->GetFrameWeld() : nullptr,
139 VclMessageType::Warning, VclButtonsType::Ok,
140 SdResId(STR_WARN_NAME_DUPLICATE)));
141 xWarn->run();
145 void FuLineEnd::Activate()
149 void FuLineEnd::Deactivate()
153 } // end of namespace sd
155 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */