diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-07-01 15:21:33 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-07-01 15:21:33 +0000 |
commit | 1d61493a62f3b7416258642547ea8d005680650d (patch) | |
tree | 57d58c345fd1f91e0492629d13de7866afa23627 /sc/inc/document.hxx | |
parent | 6d6d1986419ffe72c132b22c36f83d0a67483e88 (diff) |
INTEGRATION: CWS dr62 (1.112.18); FILE MERGED
2008/06/13 07:41:41 iha 1.112.18.1: #i82614# Copy sheet with scatter chart to new document may result in wrong data
Diffstat (limited to 'sc/inc/document.hxx')
-rw-r--r-- | sc/inc/document.hxx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx index 8bf2570bf2f8..32dfc7d1b9cb 100644 --- a/sc/inc/document.hxx +++ b/sc/inc/document.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: document.hxx,v $ - * $Revision: 1.112 $ + * $Revision: 1.113 $ * * This file is part of OpenOffice.org. * @@ -42,6 +42,7 @@ #include "brdcst.hxx" #include "tabopparams.hxx" #include "grammar.hxx" +#include <com/sun/star/chart2/XChartDocument.hpp> #include <memory> #include <map> @@ -496,6 +497,11 @@ SC_DLLPUBLIC ScDBCollection* GetDBCollection() const; SdrObject* GetObjectAtPoint( SCTAB nTab, const Point& rPos ); BOOL HasChartAtPoint( SCTAB nTab, const Point& rPos, String* pName = NULL ); + + ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartDocument > GetChartByName( const String& rChartName ); + void GetChartRanges( const String& rChartName, ::std::vector< ScRangeList >& rRanges, ScDocument* pSheetNameDoc ); + void SetChartRanges( const String& rChartName, const ::std::vector< ScRangeList >& rRanges ); + void UpdateChartArea( const String& rChartName, const ScRange& rNewArea, BOOL bColHeaders, BOOL bRowHeaders, BOOL bAdd ); void UpdateChartArea( const String& rChartName, |