/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include #include #include #include #include #include #include #include #include #include #include SvxLineTabDialog::SvxLineTabDialog ( vcl::Window* pParent, const SfxItemSet* pAttr, SdrModel* pModel, const SdrObject* pSdrObj, bool bHasObj ) : SfxTabDialog ( pParent , "LineDialog" , "cui/ui/linedialog.ui" , pAttr ), m_nLineTabPage(0), m_nShadowTabPage(0), m_nStyleTabPage(0), m_nEndTabPage(0), pDrawModel ( pModel ), pObj ( pSdrObj ), rOutAttrs ( *pAttr ), pColorList ( pModel->GetColorList() ), mpNewColorList ( pModel->GetColorList() ), pDashList ( pModel->GetDashList() ), pNewDashList ( pModel->GetDashList() ), pLineEndList ( pModel->GetLineEndList() ), pNewLineEndList ( pModel->GetLineEndList() ), bObjSelected ( bHasObj ), nLineEndListState( ChangeType::NONE ), nDashListState( ChangeType::NONE ), mnColorListState( ChangeType::NONE ), nPageType( PageType::Area ), // We use it here primarily to get the right attributes with FillItemSet nPosDashLb( 0 ), nPosLineEndLb( 0 ) { bool bLineOnly = false; if( pObj && pObj->GetObjInventor() == SdrInventor::Default ) { switch( pObj->GetObjIdentifier() ) { case OBJ_LINE: case OBJ_PLIN: case OBJ_PATHLINE: case OBJ_FREELINE: case OBJ_MEASURE: case OBJ_EDGE: bLineOnly = true; break; default: break; } } m_nLineTabPage = AddTabPage( "RID_SVXPAGE_LINE", SvxLineTabPage::Create, nullptr); if( bLineOnly ) m_nShadowTabPage = AddTabPage( "RID_SVXPAGE_SHADOW", SvxShadowTabPage::Create, nullptr ); else RemoveTabPage( "RID_SVXPAGE_SHADOW" ); m_nStyleTabPage = AddTabPage( "RID_SVXPAGE_LINE_DEF", SvxLineDefTabPage::Create, nullptr); m_nEndTabPage = AddTabPage( "RID_SVXPAGE_LINEEND_DEF", SvxLineEndDefTabPage::Create, nullptr); CancelButton& rBtnCancel = GetCancelButton(); rBtnCancel.SetClickHdl( LINK( this, SvxLineTabDialog, CancelHdlImpl ) ); } void SvxLineTabDialog::SavePalettes() { SfxObjectShell* pShell = SfxObjectShell::Current(); if( mpNewColorList != pDrawModel->GetColorList() ) { pDrawModel->SetPropertyList( static_cast(mpNewColorList.get()) ); if ( pShell ) pShell->PutItem( SvxColorListItem( mpNewColorList, SID_COLOR_TABLE ) ); pColorList = pDrawModel->GetColorList(); } if( pNewDashList != pDrawModel->GetDashList() ) { pDrawModel->SetPropertyList( static_cast(pNewDashList.get()) ); if ( pShell ) pShell->PutItem( SvxDashListItem( pNewDashList, SID_DASH_LIST ) ); pDashList = pDrawModel->GetDashList(); } if( pNewLineEndList != pDrawModel->GetLineEndList() ) { pDrawModel->SetPropertyList( static_cast(pNewLineEndList.get()) ); if ( pShell ) pShell->PutItem( SvxLineEndListItem( pNewLineEndList, SID_LINEEND_LIST ) ); pLineEndList = pDrawModel->GetLineEndList(); } // Save the tables when they have been changed OUString aPalettePath(SvtPathOptions().GetPalettePath()); OUString aPath; sal_Int32 nIndex = 0; do { aPath = aPalettePath.getToken(0, ';', nIndex); } while (nIndex >= 0); if( nDashListState & ChangeType::MODIFIED ) { pDashList->SetPath( aPath ); pDashList->Save(); // Notify ToolBoxControls if ( pShell ) pShell->PutItem( SvxDashListItem( pDashList, SID_DASH_LIST ) ); } if( nLineEndListState & ChangeType::MODIFIED ) { pLineEndList->SetPath( aPath ); pLineEndList->Save(); // Notify ToolBoxControls if ( pShell ) pShell->PutItem( SvxLineEndListItem( pLineEndList, SID_LINEEND_LIST ) ); } if( mnColorListState & ChangeType::MODIFIED ) { pColorList->SetPath( aPath ); pColorList->Save(); // Notify ToolBoxControls if ( pShell ) pShell->PutItem( SvxColorListItem( pColorList, SID_COLOR_TABLE ) ); } } short SvxLineTabDialog::Ok() { SavePalettes(); // We return RET_OK if at least one TabPage in FillItemSet() returns sal_True. // We do this by default at the moment. return SfxTabDialog::Ok(); } IMPL_LINK_NOARG(SvxLineTabDialog, CancelHdlImpl, Button*, void) { SavePalettes(); EndDialog(); } void SvxLineTabDialog::PageCreated( sal_uInt16 nId, SfxTabPage &rPage ) { if( nId == m_nLineTabPage) { static_cast(rPage).SetColorList( pColorList ); static_cast(rPage).SetDashList( pDashList ); static_cast(rPage).SetLineEndList( pLineEndList ); static_cast(rPage).SetDlgType( 0 ); static_cast(rPage).SetPageType( nPageType ); static_cast(rPage).SetPosDashLb( &nPosDashLb ); static_cast(rPage).SetPosLineEndLb( &nPosLineEndLb ); static_cast(rPage).SetDashChgd( &nDashListState ); static_cast(rPage).SetLineEndChgd( &nLineEndListState ); static_cast(rPage).SetObjSelected( bObjSelected ); static_cast(rPage).Construct(); static_cast(rPage).SetColorChgd( &mnColorListState ); // ActivatePage() is not called the first time static_cast(rPage).ActivatePage( rOutAttrs ); } else if(nId == m_nStyleTabPage) { static_cast(rPage).SetDashList( pDashList ); static_cast(rPage).SetDlgType( 0 ); static_cast(rPage).SetPageType( &nPageType ); static_cast(rPage).SetPosDashLb( &nPosDashLb ); static_cast(rPage).SetDashChgd( &nDashListState ); static_cast(rPage).Construct(); } else if(nId == m_nEndTabPage) { static_cast(rPage).SetLineEndList( pLineEndList ); static_cast(rPage).SetPolyObj( pObj ); static_cast(rPage).SetDlgType( 0 ); static_cast(rPage).SetPageType( &nPageType ); static_cast(rPage).SetPosLineEndLb( &nPosLineEndLb ); static_cast(rPage).SetLineEndChgd( &nLineEndListState ); static_cast(rPage).Construct(); } else if (nId == m_nShadowTabPage) { static_cast(rPage).SetColorList( pColorList ); static_cast(rPage).SetPageType( nPageType ); static_cast(rPage).SetDlgType( 0 ); static_cast(rPage).SetColorChgd( &mnColorListState ); } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */