diff options
author | Henry Castro <hcastro@collabora.com> | 2016-04-20 13:52:31 -0400 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-04-21 13:48:33 +0000 |
commit | 1a74c6333a79ccf0579b33ebc42ce2ccc23ccadb (patch) | |
tree | 61dee187e9588e9ba65066e6196dc584413d26ba /sc/inc | |
parent | 4779f443e9a58e3bd9ec7668796a877ef2362d99 (diff) |
lokit: add getPartHash
In the tiled rendering case, the slides, no matter
if it is inserted or deleted, the part names always return
sequential names i.e. Slide 1, Slide 2, ..., Slide N.
However the client side needs to know what slides had been
deleted or inserted, so it is necessary to send the hash codes.
Change-Id: I0e9caeec660c3e42dd9f751bdce7690f9ad365a1
Reviewed-on: https://gerrit.libreoffice.org/24267
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/document.hxx | 1 | ||||
-rw-r--r-- | sc/inc/docuno.hxx | 3 | ||||
-rw-r--r-- | sc/inc/table.hxx | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx index c0eeb188c76e..958ffc46f842 100644 --- a/sc/inc/document.hxx +++ b/sc/inc/document.hxx @@ -638,6 +638,7 @@ public: SC_DLLPUBLIC void SetVisibleTab(SCTAB nTab) { nVisibleTab = nTab; } SC_DLLPUBLIC bool HasTable( SCTAB nTab ) const; + SC_DLLPUBLIC bool GetHashCode( SCTAB nTab, sal_Int64& rHashCode) const; SC_DLLPUBLIC bool GetName( SCTAB nTab, OUString& rName ) const; SC_DLLPUBLIC bool GetCodeName( SCTAB nTab, OUString& rName ) const; SC_DLLPUBLIC bool SetCodeName( SCTAB nTab, const OUString& rName ); diff --git a/sc/inc/docuno.hxx b/sc/inc/docuno.hxx index f0ac91e6dffa..80ab14d95950 100644 --- a/sc/inc/docuno.hxx +++ b/sc/inc/docuno.hxx @@ -375,6 +375,9 @@ public: /// @see vcl::ITiledRenderable::getPartName(). virtual OUString getPartName(int nPart) override; + /// @see vcl::ITiledRenderable::getPartHash(). + virtual OUString getPartHash( int nPart ) override; + /// @see vcl::ITiledRenderable::initializeForTiledRendering(). virtual void initializeForTiledRendering(const css::uno::Sequence<css::beans::PropertyValue>& rArguments) override; diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx index 57075d8a5d7f..f9fff87de97a 100644 --- a/sc/inc/table.hxx +++ b/sc/inc/table.hxx @@ -295,6 +295,8 @@ public: void SetLink( ScLinkMode nMode, const OUString& rDoc, const OUString& rFlt, const OUString& rOpt, const OUString& rTab, sal_uLong nRefreshDelay ); + sal_Int64 GetHashCode () const; + void GetName( OUString& rName ) const; void SetName( const OUString& rNewName ); |