diff options
Diffstat (limited to 'sc/inc/cellsuno.hxx')
-rw-r--r-- | sc/inc/cellsuno.hxx | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/sc/inc/cellsuno.hxx b/sc/inc/cellsuno.hxx index fdf1c2816e1d..98ef58e9ae02 100644 --- a/sc/inc/cellsuno.hxx +++ b/sc/inc/cellsuno.hxx @@ -108,11 +108,12 @@ class SvxBoxInfoItem; class SvxItemPropertySet; class SvxUnoText; class ScDocument; -class SfxBroadcaster; class SfxHint; class SfxItemPropertyMap; class SfxItemPropertySet; struct SfxItemPropertyMapEntry; +class ScTableRowsObj; +class SolarMutexGuard; namespace editeng { class SvxBorderLine; } @@ -607,6 +608,14 @@ public: virtual OUString SAL_CALL getImplementationName() override; virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override; virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override; + + rtl::Reference< ScCellRangeObj > + getScCellRangeByPosition( sal_Int32 nLeft, sal_Int32 nTop, + sal_Int32 nRight, sal_Int32 nBottom ); + rtl::Reference< ScTableRowsObj > + getScRowsByPosition( SolarMutexGuard& rGuard, sal_Int32 nLeft, sal_Int32 nTop, + sal_Int32 nRight, sal_Int32 nBottom ); + rtl::Reference< ScTableRowsObj > getScRows(); }; //! really derive cell from range? |