bump product version to 6.3.0.0.beta1
[LibreOffice.git] / sd / source / ui / func / fulinend.cxx
blob6f9df0b160283fbe5ce43a11fbc5f600c4167821
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 SdrObject* pConvPolyObj = nullptr;
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 pNewObj = pConvPolyObj = pObj->ConvertToPolyObj( true, false );
80 if( !pNewObj || dynamic_cast< const SdrPathObj *>( pNewObj ) == nullptr )
81 return; // Cancel, additional security, but it does not help
82 // for group objects
84 else return; // Cancel
87 const ::basegfx::B2DPolyPolygon aPolyPolygon = static_cast<const SdrPathObj*>(pNewObj)->GetPathPoly();
89 // Delete the created poly-object
90 SdrObject::Free( pConvPolyObj );
92 XLineEndListRef pLineEndList = mpDoc->GetLineEndList();
94 OUString aNewName( SdResId( STR_LINEEND ) );
95 OUString aDesc( SdResId( STR_DESC_LINEEND ) );
96 OUString aName;
98 long nCount = pLineEndList->Count();
99 long j = 1;
100 bool bDifferent = false;
102 while( !bDifferent )
104 aName = aNewName + " " + OUString::number(j++);
105 bDifferent = true;
106 for( long i = 0; i < nCount && bDifferent; i++ )
108 if( aName == pLineEndList->GetLineEnd( i )->GetName() )
109 bDifferent = false;
113 SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
114 ScopedVclPtr<AbstractSvxNameDialog> pDlg( pFact->CreateSvxNameDialog( nullptr, aName, aDesc ) );
116 pDlg->SetEditHelpId( HID_SD_NAMEDIALOG_LINEEND );
118 if( pDlg->Execute() != RET_OK )
119 return;
121 pDlg->GetName( aName );
122 bDifferent = true;
124 for( long i = 0; i < nCount && bDifferent; i++ )
126 if( aName == pLineEndList->GetLineEnd( i )->GetName() )
127 bDifferent = false;
130 if( bDifferent )
132 pLineEndList->Insert(std::make_unique<XLineEndEntry>(aPolyPolygon, aName));
134 else
136 std::unique_ptr<weld::MessageDialog> xWarn(Application::CreateMessageDialog(mpWindow ? mpWindow->GetFrameWeld() : nullptr,
137 VclMessageType::Warning, VclButtonsType::Ok,
138 SdResId(STR_WARN_NAME_DUPLICATE)));
139 xWarn->run();
143 void FuLineEnd::Activate()
147 void FuLineEnd::Deactivate()
151 } // end of namespace sd
153 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */