office-gobmx/cui/source/tabpages/tabline.cxx

263 lines
8.9 KiB
C++
Raw Normal View History

/* -*- 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.
*
* 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>
#include <svx/dialogs.hrc>
2009-10-30 18:36:06 -05:00
#define _SVX_TABLINE_CXX
#include <cuires.hrc>
2009-10-30 18:36:06 -05:00
#include "tabline.hrc"
#include "cuitabarea.hxx"
#include "cuitabline.hxx"
#include "dlgname.hxx"
#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,
sal_Bool bHasObj
2009-10-30 18:36:06 -05:00
) :
SfxTabDialog ( pParent, CUI_RES( RID_SVXDLG_LINE ), pAttr ),
2009-10-30 18:36:06 -05:00
pDrawModel ( pModel ),
pObj ( pSdrObj ),
rOutAttrs ( *pAttr ),
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 ),
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 ),
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();
if( mpNewColorList != pDrawModel->GetColorList() )
2009-10-30 18:36:06 -05:00
{
pDrawModel->SetPropertyList( static_cast<XPropertyList *>(mpNewColorList.get()) );
2009-10-30 18:36:06 -05:00
if ( pShell )
pShell->PutItem( SvxColorListItem( mpNewColorList, SID_COLOR_TABLE ) );
pColorList = pDrawModel->GetColorList();
2009-10-30 18:36:06 -05:00
}
if( pNewDashList != pDrawModel->GetDashList() )
{
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() )
{
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 ) );
}
if( mnColorListState & CT_MODIFIED )
2009-10-30 18:36:06 -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 )
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() );
}
// -----------------------------------------------------------------------
IMPL_LINK_NOARG_INLINE_START(SvxLineTabDialog, CancelHdlImpl)
2009-10-30 18:36:06 -05:00
{
SavePalettes();
EndDialog( RET_CANCEL );
return 0;
}
IMPL_LINK_NOARG_INLINE_END(SvxLineTabDialog, CancelHdlImpl)
2009-10-30 18:36:06 -05:00
// -----------------------------------------------------------------------
void SvxLineTabDialog::PageCreated( sal_uInt16 nId, SfxTabPage &rPage )
2009-10-30 18:36:06 -05:00
{
switch( nId )
{
case RID_SVXPAGE_LINE:
( (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();
( (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:
{
( (SvxShadowTabPage&) rPage ).SetColorList( pColorList );
2009-10-30 18:36:06 -05:00
( (SvxShadowTabPage&) rPage ).SetPageType( nPageType );
( (SvxShadowTabPage&) rPage ).SetDlgType( nDlgType );
( (SvxShadowTabPage&) rPage ).SetAreaTP( &mbAreaTP );
( (SvxShadowTabPage&) rPage ).SetColorChgd( &mnColorListState );
2009-10-30 18:36:06 -05:00
( (SvxShadowTabPage&) rPage ).Construct();
}
break;
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */