2003-10-06 08:58:36 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 20:08:57 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2003-10-06 08:58:36 +00:00
|
|
|
*
|
2008-04-10 20:08:57 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2003-10-06 08:58:36 +00:00
|
|
|
*
|
2008-04-10 20:08:57 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2003-10-06 08:58:36 +00:00
|
|
|
*
|
2008-04-10 20:08:57 +00:00
|
|
|
* $RCSfile: LegendHelper.hxx,v $
|
|
|
|
* $Revision: 1.8 $
|
2003-10-06 08:58:36 +00:00
|
|
|
*
|
2008-04-10 20:08:57 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2003-10-06 08:58:36 +00:00
|
|
|
*
|
2008-04-10 20:08:57 +00: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.
|
2003-10-06 08:58:36 +00:00
|
|
|
*
|
2008-04-10 20:08:57 +00: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).
|
2003-10-06 08:58:36 +00:00
|
|
|
*
|
2008-04-10 20:08:57 +00: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.
|
2003-10-06 08:58:36 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#ifndef _CHART2_TOOLS_LEGENDHELPER_HXX
|
|
|
|
#define _CHART2_TOOLS_LEGENDHELPER_HXX
|
|
|
|
|
|
|
|
// header for class OUString
|
|
|
|
#include <rtl/ustring.hxx>
|
2004-01-26 08:13:31 +00:00
|
|
|
#include <com/sun/star/chart2/XLegend.hpp>
|
|
|
|
#include <com/sun/star/chart2/XDiagram.hpp>
|
2007-05-22 17:18:23 +00:00
|
|
|
#include <com/sun/star/frame/XModel.hpp>
|
|
|
|
#include <com/sun/star/uno/XComponentContext.hpp>
|
|
|
|
|
2003-10-06 08:58:36 +00:00
|
|
|
//.............................................................................
|
|
|
|
namespace chart
|
|
|
|
{
|
|
|
|
//.............................................................................
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
*/
|
|
|
|
|
|
|
|
class LegendHelper
|
|
|
|
{
|
|
|
|
public:
|
2003-10-08 16:40:39 +00:00
|
|
|
static ::com::sun::star::uno::Reference<
|
2004-01-26 08:13:31 +00:00
|
|
|
::com::sun::star::chart2::XLegend >
|
2003-10-08 16:40:39 +00:00
|
|
|
getLegend( const ::com::sun::star::uno::Reference<
|
2007-05-22 17:18:23 +00:00
|
|
|
::com::sun::star::frame::XModel >& xModel
|
|
|
|
, const ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::uno::XComponentContext >& xContext = 0
|
|
|
|
, bool bCreate = false );
|
2003-11-04 16:18:23 +00:00
|
|
|
|
2007-05-22 17:18:23 +00:00
|
|
|
/** returns <FALSE/>, if either there is no legend at the diagram, or there
|
|
|
|
is a legend which has a "Show" property of value <FALSE/>. Otherwise,
|
|
|
|
<TRUE/> is returned.
|
2003-11-04 16:18:23 +00:00
|
|
|
*/
|
2007-05-22 17:18:23 +00:00
|
|
|
static bool hasLegend( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDiagram > & xDiagram );
|
2003-10-06 08:58:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//.............................................................................
|
|
|
|
} //namespace chart
|
|
|
|
//.............................................................................
|
|
|
|
#endif
|