update dev300-m58
[ooovba.git] / chart2 / source / tools / ChartViewHelper.cxx
blob55e804257c89a6a37906d589109affafe78c1846
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: ChartViewHelper.cxx,v $
10 * $Revision: 1.3 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_chart2.hxx"
34 #include "ChartViewHelper.hxx"
35 #include "macros.hxx"
36 #include "servicenames.hxx"
38 // header for define DBG_ASSERT
39 #include <tools/debug.hxx>
40 #include <com/sun/star/lang/XComponent.hpp>
41 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
42 #include <com/sun/star/util/XModifyListener.hpp>
44 //.............................................................................
45 namespace chart
47 //.............................................................................
48 using namespace ::com::sun::star;
49 using ::com::sun::star::uno::Reference;
51 //static
52 void ChartViewHelper::setViewToDirtyState( const uno::Reference< frame::XModel >& xChartModel )
54 try
56 uno::Reference< lang::XMultiServiceFactory > xFact( xChartModel, uno::UNO_QUERY );
57 if( xFact.is() )
59 Reference< util::XModifyListener > xModifyListener(
60 xFact->createInstance( CHART_VIEW_SERVICE_NAME ), uno::UNO_QUERY );
61 if( xModifyListener.is() )
63 lang::EventObject aEvent( Reference< lang::XComponent >( xChartModel, uno::UNO_QUERY ) );
64 xModifyListener->modified( aEvent );
68 catch( uno::Exception & ex )
70 ASSERT_EXCEPTION( ex );
73 //.............................................................................
74 } //namespace chart
75 //.............................................................................