2010-10-12 08:57:08 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2009-10-30 18:36:06 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2009-10-30 18:36:06 -05:00
|
|
|
*
|
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
|
|
*
|
|
|
|
* This file is part of OpenOffice.org.
|
|
|
|
*
|
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include <tools/shl.hxx>
|
|
|
|
#include <vcl/msgbox.hxx>
|
|
|
|
#include <unotools/pathoptions.hxx>
|
|
|
|
#include <sfx2/app.hxx>
|
|
|
|
#include <sfx2/objsh.hxx>
|
2009-11-02 13:49:14 -06:00
|
|
|
#include <svx/dialogs.hrc>
|
2009-10-30 18:36:06 -05:00
|
|
|
|
|
|
|
#define _SVX_TABLINE_CXX
|
2009-11-02 13:49:14 -06:00
|
|
|
#include <cuires.hrc>
|
2009-10-30 18:36:06 -05:00
|
|
|
#include "tabline.hrc"
|
|
|
|
|
|
|
|
#include "cuitabarea.hxx"
|
|
|
|
#include "cuitabline.hxx"
|
|
|
|
#include "dlgname.hxx"
|
2009-11-02 13:49:14 -06:00
|
|
|
#include <dialmgr.hxx>
|
2009-10-30 18:36:06 -05:00
|
|
|
#include <svx/svdmodel.hxx>
|
|
|
|
#include <svx/xtable.hxx>
|
|
|
|
#include "svx/drawitem.hxx"
|
|
|
|
|
|
|
|
SvxLineTabDialog::SvxLineTabDialog
|
|
|
|
(
|
|
|
|
Window* pParent,
|
|
|
|
const SfxItemSet* pAttr,
|
|
|
|
SdrModel* pModel,
|
|
|
|
const SdrObject* pSdrObj,
|
2011-01-14 05:41:27 -06:00
|
|
|
sal_Bool bHasObj
|
2009-10-30 18:36:06 -05:00
|
|
|
) :
|
|
|
|
|
2009-11-02 13:49:14 -06:00
|
|
|
SfxTabDialog ( pParent, CUI_RES( RID_SVXDLG_LINE ), pAttr ),
|
2009-10-30 18:36:06 -05:00
|
|
|
pDrawModel ( pModel ),
|
|
|
|
pObj ( pSdrObj ),
|
|
|
|
rOutAttrs ( *pAttr ),
|
2011-09-26 16:00:40 -05:00
|
|
|
pColorList ( pModel->GetColorList() ),
|
|
|
|
mpNewColorList ( pModel->GetColorList() ),
|
2009-10-30 18:36:06 -05:00
|
|
|
pDashList ( pModel->GetDashList() ),
|
|
|
|
pNewDashList ( pModel->GetDashList() ),
|
|
|
|
pLineEndList ( pModel->GetLineEndList() ),
|
|
|
|
pNewLineEndList ( pModel->GetLineEndList() ),
|
|
|
|
bObjSelected ( bHasObj ),
|
|
|
|
nLineEndListState( CT_NONE ),
|
|
|
|
nDashListState( CT_NONE ),
|
2011-09-26 16:00:40 -05:00
|
|
|
mnColorListState( CT_NONE ),
|
2012-03-27 14:53:19 -05:00
|
|
|
nPageType( 0 ), // We use it here primarily to get the right attributes with FillItemSet
|
2009-10-30 18:36:06 -05:00
|
|
|
nDlgType( 0 ),
|
|
|
|
nPosDashLb( 0 ),
|
|
|
|
nPosLineEndLb( 0 ),
|
|
|
|
mnPos( 0 ),
|
2011-09-23 08:05:07 -05:00
|
|
|
mbAreaTP( sal_False )
|
2009-10-30 18:36:06 -05:00
|
|
|
{
|
|
|
|
FreeResource();
|
|
|
|
|
|
|
|
bool bLineOnly = false;
|
|
|
|
if( pObj && pObj->GetObjInventor() == SdrInventor )
|
|
|
|
{
|
|
|
|
switch( pObj->GetObjIdentifier() )
|
|
|
|
{
|
|
|
|
case OBJ_LINE:
|
|
|
|
case OBJ_PLIN:
|
|
|
|
case OBJ_PATHLINE:
|
|
|
|
case OBJ_FREELINE:
|
|
|
|
case OBJ_MEASURE:
|
|
|
|
case OBJ_EDGE:
|
|
|
|
bLineOnly = true;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
AddTabPage( RID_SVXPAGE_LINE, SvxLineTabPage::Create, 0);
|
|
|
|
if( bLineOnly )
|
|
|
|
AddTabPage( RID_SVXPAGE_SHADOW, SvxShadowTabPage::Create, 0 );
|
|
|
|
else
|
|
|
|
RemoveTabPage( RID_SVXPAGE_SHADOW );
|
|
|
|
|
|
|
|
AddTabPage( RID_SVXPAGE_LINE_DEF, SvxLineDefTabPage::Create, 0);
|
|
|
|
AddTabPage( RID_SVXPAGE_LINEEND_DEF, SvxLineEndDefTabPage::Create, 0);
|
|
|
|
|
|
|
|
SetCurPageId( RID_SVXPAGE_LINE );
|
|
|
|
|
|
|
|
CancelButton& rBtnCancel = GetCancelButton();
|
|
|
|
rBtnCancel.SetClickHdl( LINK( this, SvxLineTabDialog, CancelHdlImpl ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
SvxLineTabDialog::~SvxLineTabDialog()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SvxLineTabDialog::SavePalettes()
|
|
|
|
{
|
|
|
|
SfxObjectShell* pShell = SfxObjectShell::Current();
|
2011-09-26 16:00:40 -05:00
|
|
|
if( mpNewColorList != pDrawModel->GetColorList() )
|
2009-10-30 18:36:06 -05:00
|
|
|
{
|
2011-09-26 16:00:40 -05:00
|
|
|
pDrawModel->SetPropertyList( static_cast<XPropertyList *>(mpNewColorList.get()) );
|
2009-10-30 18:36:06 -05:00
|
|
|
if ( pShell )
|
2011-09-26 16:00:40 -05:00
|
|
|
pShell->PutItem( SvxColorListItem( mpNewColorList, SID_COLOR_TABLE ) );
|
|
|
|
pColorList = pDrawModel->GetColorList();
|
2009-10-30 18:36:06 -05:00
|
|
|
}
|
|
|
|
if( pNewDashList != pDrawModel->GetDashList() )
|
|
|
|
{
|
2011-09-23 08:05:07 -05:00
|
|
|
pDrawModel->SetPropertyList( static_cast<XPropertyList *>(pNewDashList.get()) );
|
2009-10-30 18:36:06 -05:00
|
|
|
if ( pShell )
|
|
|
|
pShell->PutItem( SvxDashListItem( pNewDashList, SID_DASH_LIST ) );
|
|
|
|
pDashList = pDrawModel->GetDashList();
|
|
|
|
}
|
|
|
|
if( pNewLineEndList != pDrawModel->GetLineEndList() )
|
|
|
|
{
|
2011-09-23 08:05:07 -05:00
|
|
|
pDrawModel->SetPropertyList( static_cast<XPropertyList *>(pNewLineEndList.get()) );
|
2009-10-30 18:36:06 -05:00
|
|
|
if ( pShell )
|
|
|
|
pShell->PutItem( SvxLineEndListItem( pNewLineEndList, SID_LINEEND_LIST ) );
|
|
|
|
pLineEndList = pDrawModel->GetLineEndList();
|
|
|
|
}
|
|
|
|
|
2012-03-27 14:53:19 -05:00
|
|
|
// Save the tables when they have been changed
|
2009-10-30 18:36:06 -05:00
|
|
|
|
|
|
|
const String aPath( SvtPathOptions().GetPalettePath() );
|
|
|
|
|
|
|
|
if( nDashListState & CT_MODIFIED )
|
|
|
|
{
|
|
|
|
pDashList->SetPath( aPath );
|
|
|
|
pDashList->Save();
|
|
|
|
|
2012-03-27 14:53:19 -05:00
|
|
|
// Notify ToolBoxControls
|
2009-10-30 18:36:06 -05:00
|
|
|
if ( pShell )
|
|
|
|
pShell->PutItem( SvxDashListItem( pDashList, SID_DASH_LIST ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( nLineEndListState & CT_MODIFIED )
|
|
|
|
{
|
|
|
|
pLineEndList->SetPath( aPath );
|
|
|
|
pLineEndList->Save();
|
|
|
|
|
2012-03-27 14:53:19 -05:00
|
|
|
// Notify ToolBoxControls
|
2009-10-30 18:36:06 -05:00
|
|
|
if ( pShell )
|
|
|
|
pShell->PutItem( SvxLineEndListItem( pLineEndList, SID_LINEEND_LIST ) );
|
|
|
|
}
|
|
|
|
|
2011-09-26 16:00:40 -05:00
|
|
|
if( mnColorListState & CT_MODIFIED )
|
2009-10-30 18:36:06 -05:00
|
|
|
{
|
2011-09-26 16:00:40 -05:00
|
|
|
pColorList->SetPath( aPath );
|
|
|
|
pColorList->Save();
|
2009-10-30 18:36:06 -05:00
|
|
|
|
2012-03-27 14:53:19 -05:00
|
|
|
// Notify ToolBoxControls
|
2009-10-30 18:36:06 -05:00
|
|
|
if ( pShell )
|
2011-09-26 16:00:40 -05:00
|
|
|
pShell->PutItem( SvxColorListItem( pColorList, SID_COLOR_TABLE ) );
|
2009-10-30 18:36:06 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
short SvxLineTabDialog::Ok()
|
|
|
|
{
|
|
|
|
SavePalettes();
|
|
|
|
|
2012-03-27 14:53:19 -05:00
|
|
|
// We return RET_OK if at least one TabPage in FillItemSet() returns sal_True.
|
|
|
|
// We do this by default at the moment.
|
2009-10-30 18:36:06 -05:00
|
|
|
return( SfxTabDialog::Ok() );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2012-03-01 11:00:32 -06:00
|
|
|
IMPL_LINK_NOARG_INLINE_START(SvxLineTabDialog, CancelHdlImpl)
|
2009-10-30 18:36:06 -05:00
|
|
|
{
|
|
|
|
SavePalettes();
|
|
|
|
|
|
|
|
EndDialog( RET_CANCEL );
|
|
|
|
return 0;
|
|
|
|
}
|
2012-03-01 11:00:32 -06:00
|
|
|
IMPL_LINK_NOARG_INLINE_END(SvxLineTabDialog, CancelHdlImpl)
|
2009-10-30 18:36:06 -05:00
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2011-01-14 05:41:27 -06:00
|
|
|
void SvxLineTabDialog::PageCreated( sal_uInt16 nId, SfxTabPage &rPage )
|
2009-10-30 18:36:06 -05:00
|
|
|
{
|
|
|
|
switch( nId )
|
|
|
|
{
|
|
|
|
case RID_SVXPAGE_LINE:
|
2011-09-26 16:00:40 -05:00
|
|
|
( (SvxLineTabPage&) rPage ).SetColorList( pColorList );
|
2009-10-30 18:36:06 -05:00
|
|
|
( (SvxLineTabPage&) rPage ).SetDashList( pDashList );
|
|
|
|
( (SvxLineTabPage&) rPage ).SetLineEndList( pLineEndList );
|
2011-02-08 01:48:59 -06:00
|
|
|
( (SvxLineTabPage&) rPage ).SetDlgType( nDlgType );
|
|
|
|
( (SvxLineTabPage&) rPage ).SetPageType( nPageType );
|
2009-10-30 18:36:06 -05:00
|
|
|
( (SvxLineTabPage&) rPage ).SetPosDashLb( &nPosDashLb );
|
|
|
|
( (SvxLineTabPage&) rPage ).SetPosLineEndLb( &nPosLineEndLb );
|
|
|
|
( (SvxLineTabPage&) rPage ).SetDashChgd( &nDashListState );
|
|
|
|
( (SvxLineTabPage&) rPage ).SetLineEndChgd( &nLineEndListState );
|
|
|
|
( (SvxLineTabPage&) rPage ).SetObjSelected( bObjSelected );
|
|
|
|
( (SvxLineTabPage&) rPage ).Construct();
|
2011-09-26 16:00:40 -05:00
|
|
|
( (SvxLineTabPage&) rPage ).SetColorChgd( &mnColorListState );
|
2012-03-27 14:53:19 -05:00
|
|
|
// ActivatePage() is not called the first time
|
2009-10-30 18:36:06 -05:00
|
|
|
( (SvxLineTabPage&) rPage ).ActivatePage( rOutAttrs );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RID_SVXPAGE_LINE_DEF:
|
|
|
|
( (SvxLineDefTabPage&) rPage ).SetDashList( pDashList );
|
|
|
|
( (SvxLineDefTabPage&) rPage ).SetDlgType( &nDlgType );
|
|
|
|
( (SvxLineDefTabPage&) rPage ).SetPageType( &nPageType );
|
|
|
|
( (SvxLineDefTabPage&) rPage ).SetPosDashLb( &nPosDashLb );
|
|
|
|
( (SvxLineDefTabPage&) rPage ).SetDashChgd( &nDashListState );
|
|
|
|
( (SvxLineDefTabPage&) rPage ).SetObjSelected( bObjSelected );
|
|
|
|
( (SvxLineDefTabPage&) rPage ).Construct();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RID_SVXPAGE_LINEEND_DEF:
|
|
|
|
( (SvxLineEndDefTabPage&) rPage ).SetLineEndList( pLineEndList );
|
|
|
|
( (SvxLineEndDefTabPage&) rPage ).SetPolyObj( pObj );
|
|
|
|
( (SvxLineEndDefTabPage&) rPage ).SetDlgType( &nDlgType );
|
|
|
|
( (SvxLineEndDefTabPage&) rPage ).SetPageType( &nPageType );
|
|
|
|
( (SvxLineEndDefTabPage&) rPage ).SetPosLineEndLb( &nPosLineEndLb );
|
|
|
|
( (SvxLineEndDefTabPage&) rPage ).SetLineEndChgd( &nLineEndListState );
|
|
|
|
( (SvxLineEndDefTabPage&) rPage ).SetObjSelected( bObjSelected );
|
|
|
|
( (SvxLineEndDefTabPage&) rPage ).Construct();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RID_SVXPAGE_SHADOW:
|
|
|
|
{
|
2011-09-26 16:00:40 -05:00
|
|
|
( (SvxShadowTabPage&) rPage ).SetColorList( pColorList );
|
2009-10-30 18:36:06 -05:00
|
|
|
( (SvxShadowTabPage&) rPage ).SetPageType( nPageType );
|
|
|
|
( (SvxShadowTabPage&) rPage ).SetDlgType( nDlgType );
|
|
|
|
( (SvxShadowTabPage&) rPage ).SetAreaTP( &mbAreaTP );
|
2011-09-26 16:00:40 -05:00
|
|
|
( (SvxShadowTabPage&) rPage ).SetColorChgd( &mnColorListState );
|
2009-10-30 18:36:06 -05:00
|
|
|
( (SvxShadowTabPage&) rPage ).Construct();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-12 08:57:08 -05:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|