bump product version to 6.4.0.3
[LibreOffice.git] / sd / source / ui / func / fulinend.cxx
blob8d3886a6be4d45630d6559947db8fb9c1a6cc275
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 const SdrObject* pNewObj;
61 SdrObjectUniquePtr pConvPolyObj;
63 if( dynamic_cast< const SdrPathObj *>( pObj ) != nullptr )
65 pNewObj = pObj;
67 else
69 SdrObjTransformInfoRec aInfoRec;
70 pObj->TakeObjInfo( aInfoRec );
72 if( aInfoRec.bCanConvToPath &&
73 pObj->GetObjInventor() == SdrInventor::Default &&
74 pObj->GetObjIdentifier() != OBJ_GRUP )
75 // bCanConvToPath is sal_True for group objects,
76 // but it crashes on ConvertToPathObj()!
78 pConvPolyObj = pObj->ConvertToPolyObj( true, false );
79 pNewObj = pConvPolyObj.get();
81 if( !pNewObj || dynamic_cast< const SdrPathObj *>( pNewObj ) == nullptr )
82 return; // Cancel, additional security, but it does not help
83 // for group objects
85 else return; // Cancel
88 const ::basegfx::B2DPolyPolygon aPolyPolygon = static_cast<const SdrPathObj*>(pNewObj)->GetPathPoly();
90 // Delete the created poly-object
91 pConvPolyObj.reset();
93 XLineEndListRef pLineEndList = mpDoc->GetLineEndList();
95 OUString aNewName( SdResId( STR_LINEEND ) );
96 OUString aDesc( SdResId( STR_DESC_LINEEND ) );
97 OUString aName;
99 long nCount = pLineEndList->Count();
100 long j = 1;
101 bool bDifferent = false;
103 while( !bDifferent )
105 aName = aNewName + " " + OUString::number(j++);
106 bDifferent = true;
107 for( long i = 0; i < nCount && bDifferent; i++ )
109 if( aName == pLineEndList->GetLineEnd( i )->GetName() )
110 bDifferent = false;
114 SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
115 ScopedVclPtr<AbstractSvxNameDialog> pDlg( pFact->CreateSvxNameDialog( nullptr, aName, aDesc ) );
117 pDlg->SetEditHelpId( HID_SD_NAMEDIALOG_LINEEND );
119 if( pDlg->Execute() != RET_OK )
120 return;
122 pDlg->GetName( aName );
123 bDifferent = true;
125 for( long i = 0; i < nCount && bDifferent; i++ )
127 if( aName == pLineEndList->GetLineEnd( i )->GetName() )
128 bDifferent = false;
131 if( bDifferent )
133 pLineEndList->Insert(std::make_unique<XLineEndEntry>(aPolyPolygon, aName));
135 else
137 std::unique_ptr<weld::MessageDialog> xWarn(Application::CreateMessageDialog(mpWindow ? mpWindow->GetFrameWeld() : nullptr,
138 VclMessageType::Warning, VclButtonsType::Ok,
139 SdResId(STR_WARN_NAME_DUPLICATE)));
140 xWarn->run();
144 void FuLineEnd::Activate()
148 void FuLineEnd::Deactivate()
152 } // end of namespace sd
154 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */