2007-05-22 12:14:05 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 15:02:25 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2007-05-22 12:14:05 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2007-05-22 12:14:05 -05:00
|
|
|
*
|
2008-04-10 15:02:25 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2007-05-22 12:14:05 -05:00
|
|
|
*
|
2008-04-10 15:02:25 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2007-05-22 12:14:05 -05:00
|
|
|
*
|
2008-04-10 15:02:25 -05:00
|
|
|
* 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.
|
2007-05-22 12:14:05 -05:00
|
|
|
*
|
2008-04-10 15:02:25 -05:00
|
|
|
* 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).
|
2007-05-22 12:14:05 -05:00
|
|
|
*
|
2008-04-10 15:02:25 -05:00
|
|
|
* 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.
|
2007-05-22 12:14:05 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#ifndef CHART2_CONFIG_COLOR_SCHEME_HXX
|
|
|
|
#define CHART2_CONFIG_COLOR_SCHEME_HXX
|
|
|
|
|
|
|
|
#include "ServiceMacros.hxx"
|
|
|
|
#include "ConfigItemListener.hxx"
|
2008-12-30 07:32:01 -06:00
|
|
|
#include "charttoolsdllapi.hxx"
|
2007-05-22 12:14:05 -05:00
|
|
|
#include <cppuhelper/implbase2.hxx>
|
|
|
|
#include <comphelper/uno3.hxx>
|
|
|
|
#include <com/sun/star/chart2/XColorScheme.hpp>
|
|
|
|
#include <com/sun/star/lang/XServiceInfo.hpp>
|
|
|
|
#include <com/sun/star/uno/XComponentContext.hpp>
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
|
|
|
|
namespace chart
|
|
|
|
{
|
2009-06-04 04:41:18 -05:00
|
|
|
|
|
|
|
OOO_DLLPUBLIC_CHARTTOOLS ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XColorScheme > createConfigColorScheme(
|
|
|
|
const ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::uno::XComponentContext > & xContext );
|
|
|
|
|
2007-05-22 12:14:05 -05:00
|
|
|
namespace impl
|
|
|
|
{
|
|
|
|
class ChartConfigItem;
|
|
|
|
}
|
|
|
|
|
2009-06-04 04:41:18 -05:00
|
|
|
class ConfigColorScheme :
|
2007-05-22 12:14:05 -05:00
|
|
|
public ConfigItemListener,
|
|
|
|
public ::cppu::WeakImplHelper2<
|
|
|
|
::com::sun::star::chart2::XColorScheme,
|
|
|
|
::com::sun::star::lang::XServiceInfo >
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit ConfigColorScheme(
|
|
|
|
const ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::uno::XComponentContext > & xContext );
|
2009-06-04 04:41:18 -05:00
|
|
|
SAL_DLLPRIVATE virtual ~ConfigColorScheme();
|
2007-05-22 12:14:05 -05:00
|
|
|
|
|
|
|
/// establish methods for factory instatiation
|
|
|
|
APPHELPER_SERVICE_FACTORY_HELPER( ConfigColorScheme )
|
|
|
|
/// declare XServiceInfo methods
|
|
|
|
APPHELPER_XSERVICEINFO_DECL()
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// ____ XColorScheme ____
|
2009-06-04 04:41:18 -05:00
|
|
|
SAL_DLLPRIVATE virtual ::sal_Int32 SAL_CALL getColorByIndex( ::sal_Int32 nIndex )
|
2007-05-22 12:14:05 -05:00
|
|
|
throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
// ____ ConfigItemListener ____
|
2009-06-04 04:41:18 -05:00
|
|
|
SAL_DLLPRIVATE virtual void notify( const ::rtl::OUString & rPropertyName );
|
2007-05-22 12:14:05 -05:00
|
|
|
|
|
|
|
private:
|
2009-06-04 04:41:18 -05:00
|
|
|
SAL_DLLPRIVATE void retrieveConfigColors();
|
2007-05-22 12:14:05 -05:00
|
|
|
|
|
|
|
// member variables
|
|
|
|
::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::uno::XComponentContext > m_xContext;
|
|
|
|
::std::auto_ptr< impl::ChartConfigItem > m_apChartConfigItem;
|
|
|
|
mutable ::com::sun::star::uno::Sequence< sal_Int64 > m_aColorSequence;
|
|
|
|
mutable sal_Int32 m_nNumberOfColors;
|
|
|
|
bool m_bNeedsUpdate;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace chart
|
|
|
|
|
|
|
|
// CHART2_CONFIG_COLOR_SCHEME_HXX
|
|
|
|
#endif
|