/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * 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 * * for a copy of the LGPLv3 License. * ************************************************************************/ #include "res_LegendPosition.hxx" #include "ResourceIds.hrc" #include "Strings.hrc" #include "res_LegendPosition_IDs.hrc" #include "ResId.hxx" #include "ChartModelHelper.hxx" #include "macros.hxx" #include "LegendHelper.hxx" #include #include #include //itemset stuff #include "chartview/ChartSfxItemIds.hxx" #include #include //............................................................................. namespace chart { //............................................................................. using namespace ::com::sun::star; using namespace ::com::sun::star::chart2; LegendPositionResources::LegendPositionResources( Window* pWindow ) : m_xCC() //unused in this scenario , m_aCbxShow( pWindow ) //unused in this scenario , m_aRbtLeft( pWindow, SchResId(RBT_LEFT) ) , m_aRbtRight( pWindow, SchResId(RBT_RIGHT) ) , m_aRbtTop( pWindow, SchResId(RBT_TOP) ) , m_aRbtBottom( pWindow, SchResId(RBT_BOTTOM) ) { m_aCbxShow.Check();//legend is assumed to be visible in this scenario impl_setRadioButtonToggleHdl(); } LegendPositionResources::LegendPositionResources( Window* pWindow, const uno::Reference< uno::XComponentContext >& xCC ) : m_xCC( xCC ) , m_aCbxShow( pWindow, SchResId(CBX_SHOWLEGEND) ) , m_aRbtLeft( pWindow, SchResId(RBT_LEFT) ) , m_aRbtRight( pWindow, SchResId(RBT_RIGHT) ) , m_aRbtTop( pWindow, SchResId(RBT_TOP) ) , m_aRbtBottom( pWindow, SchResId(RBT_BOTTOM) ) { m_aCbxShow.SetToggleHdl( LINK( this, LegendPositionResources, PositionEnableHdl ) ); impl_setRadioButtonToggleHdl(); m_aCbxShow.SetAccessibleRelationMemberOf(&m_aCbxShow); m_aRbtLeft.SetAccessibleRelationMemberOf(&m_aCbxShow); m_aRbtRight.SetAccessibleRelationMemberOf(&m_aCbxShow); m_aRbtTop.SetAccessibleRelationMemberOf(&m_aCbxShow); m_aRbtBottom.SetAccessibleRelationMemberOf(&m_aCbxShow); } void LegendPositionResources::impl_setRadioButtonToggleHdl() { m_aRbtLeft.SetToggleHdl( LINK( this, LegendPositionResources, PositionChangeHdl ) ); m_aRbtTop.SetToggleHdl( LINK( this, LegendPositionResources, PositionChangeHdl ) ); m_aRbtRight.SetToggleHdl( LINK( this, LegendPositionResources, PositionChangeHdl ) ); m_aRbtBottom.SetToggleHdl( LINK( this, LegendPositionResources, PositionChangeHdl ) ); } LegendPositionResources::~LegendPositionResources() { } void LegendPositionResources::writeToResources( const uno::Reference< frame::XModel >& xChartModel ) { try { uno::Reference< XDiagram > xDiagram = ChartModelHelper::findDiagram( xChartModel ); uno::Reference< beans::XPropertySet > xProp( xDiagram->getLegend(), uno::UNO_QUERY ); if( xProp.is() ) { //show sal_Bool bShowLegend = sal_False; xProp->getPropertyValue( C2U("Show") ) >>= bShowLegend; m_aCbxShow.Check( bShowLegend ); PositionEnableHdl(0); //position chart2::LegendPosition ePos; xProp->getPropertyValue( C2U( "AnchorPosition" )) >>= ePos; switch( ePos ) { case chart2::LegendPosition_LINE_START: m_aRbtLeft.Check(); break; case chart2::LegendPosition_LINE_END: m_aRbtRight.Check(); break; case chart2::LegendPosition_PAGE_START: m_aRbtTop.Check(); break; case chart2::LegendPosition_PAGE_END: m_aRbtBottom.Check(); break; case chart2::LegendPosition_CUSTOM: default: m_aRbtRight.Check(); break; } } } catch( const uno::Exception & ex ) { ASSERT_EXCEPTION( ex ); } } void LegendPositionResources::writeToModel( const ::com::sun::star::uno::Reference< frame::XModel >& xChartModel ) const { try { sal_Bool bShowLegend = static_cast(m_aCbxShow.IsChecked()); uno::Reference< beans::XPropertySet > xProp( LegendHelper::getLegend( xChartModel,m_xCC,bShowLegend ), uno::UNO_QUERY ); if( xProp.is() ) { //show xProp->setPropertyValue( C2U("Show"), uno::makeAny( bShowLegend )); //position chart2::LegendPosition eNewPos; ::com::sun::star::chart::ChartLegendExpansion eExp = ::com::sun::star::chart::ChartLegendExpansion_HIGH; if( m_aRbtLeft.IsChecked() ) eNewPos = chart2::LegendPosition_LINE_START; else if( m_aRbtRight.IsChecked() ) { eNewPos = chart2::LegendPosition_LINE_END; } else if( m_aRbtTop.IsChecked() ) { eNewPos = chart2::LegendPosition_PAGE_START; eExp = ::com::sun::star::chart::ChartLegendExpansion_WIDE; } else if( m_aRbtBottom.IsChecked() ) { eNewPos = chart2::LegendPosition_PAGE_END; eExp = ::com::sun::star::chart::ChartLegendExpansion_WIDE; } xProp->setPropertyValue( C2U( "AnchorPosition" ), uno::makeAny( eNewPos )); xProp->setPropertyValue( C2U( "Expansion" ), uno::makeAny( eExp )); xProp->setPropertyValue( C2U( "RelativePosition" ), uno::Any()); } } catch( const uno::Exception & ex ) { ASSERT_EXCEPTION( ex ); } } IMPL_LINK_NOARG(LegendPositionResources, PositionEnableHdl) { sal_Bool bEnable = m_aCbxShow.IsChecked(); m_aRbtLeft.Enable( bEnable ); m_aRbtTop.Enable( bEnable ); m_aRbtRight.Enable( bEnable ); m_aRbtBottom.Enable( bEnable ); m_aChangeLink.Call(NULL); return 0; } void LegendPositionResources::initFromItemSet( const SfxItemSet& rInAttrs ) { const SfxPoolItem* pPoolItem = NULL; if( rInAttrs.GetItemState( SCHATTR_LEGEND_POS, sal_True, &pPoolItem ) == SFX_ITEM_SET ) { sal_Int32 nLegendPosition = ((const SfxInt32Item*)pPoolItem)->GetValue(); switch( nLegendPosition ) { case chart2::LegendPosition_LINE_START: m_aRbtLeft.Check(sal_True); break; case chart2::LegendPosition_PAGE_START: m_aRbtTop.Check(sal_True); break; case chart2::LegendPosition_LINE_END: m_aRbtRight.Check(sal_True); break; case chart2::LegendPosition_PAGE_END: m_aRbtBottom.Check(sal_True); break; default: break; } } if( rInAttrs.GetItemState( SCHATTR_LEGEND_SHOW, sal_True, &pPoolItem ) == SFX_ITEM_SET ) { bool bShow = static_cast< const SfxBoolItem * >( pPoolItem )->GetValue(); m_aCbxShow.Check(bShow); } } void LegendPositionResources::writeToItemSet( SfxItemSet& rOutAttrs ) const { sal_Int32 nLegendPosition = chart2::LegendPosition_CUSTOM; if( m_aRbtLeft.IsChecked() ) nLegendPosition = chart2::LegendPosition_LINE_START; else if( m_aRbtTop.IsChecked() ) nLegendPosition = chart2::LegendPosition_PAGE_START; else if( m_aRbtRight.IsChecked() ) nLegendPosition = chart2::LegendPosition_LINE_END; else if( m_aRbtBottom.IsChecked() ) nLegendPosition = chart2::LegendPosition_PAGE_END; rOutAttrs.Put(SfxInt32Item(SCHATTR_LEGEND_POS, nLegendPosition )); rOutAttrs.Put( SfxBoolItem(SCHATTR_LEGEND_SHOW, m_aCbxShow.IsChecked()) ); } IMPL_LINK( LegendPositionResources, PositionChangeHdl, RadioButton*, pRadio ) { //for each radio click ther are coming two change events //first uncheck of previous button -> ignore that call //the second call gives the check of the new button if( pRadio && pRadio->IsChecked() ) m_aChangeLink.Call(NULL); return 0; } void LegendPositionResources::SetChangeHdl( const Link& rLink ) { m_aChangeLink = rLink; } void LegendPositionResources::SetAccessibleRelationMemberOf(Window* pMemberOf) { m_aRbtLeft.SetAccessibleRelationMemberOf(pMemberOf); m_aRbtRight.SetAccessibleRelationMemberOf(pMemberOf); m_aRbtTop.SetAccessibleRelationMemberOf(pMemberOf); m_aRbtBottom.SetAccessibleRelationMemberOf(pMemberOf); } //............................................................................. } //namespace chart //............................................................................. /* vim:set shiftwidth=4 softtabstop=4 expandtab: */