diff options
author | SJacobi <Sven-Jacobi@gmx.de> | 2013-03-11 13:29:47 +0100 |
---|---|---|
committer | Cédric Bosdonnat <cedric.bosdonnat@free.fr> | 2013-03-11 15:45:38 +0100 |
commit | a09e0137c11ce47f7d4fc598b19d18a7d8951bf1 (patch) | |
tree | 7bd05ed0881d4a2f3cebce2c20c68003d2ee53bb /oox/inc | |
parent | 8933f19100adbf9f2601db0f3ac67dd3b1887ef7 (diff) |
pptx import:supporting FilterData properties:PageRange and ImportNotesPages
Change-Id: I9da8455bb10e93f1ae6c4894d4f15ff7fbcdfa07
Diffstat (limited to 'oox/inc')
-rw-r--r-- | oox/inc/oox/core/filterbase.hxx | 4 | ||||
-rw-r--r-- | oox/inc/oox/ppt/presentationfragmenthandler.hxx | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/oox/inc/oox/core/filterbase.hxx b/oox/inc/oox/core/filterbase.hxx index 171ae5f7d76b..5f47ea9fcef2 100644 --- a/oox/inc/oox/core/filterbase.hxx +++ b/oox/inc/oox/core/filterbase.hxx @@ -32,6 +32,7 @@ #include <com/sun/star/lang/XServiceInfo.hpp> #include <cppuhelper/basemutex.hxx> #include <cppuhelper/implbase5.hxx> +#include <comphelper/sequenceashashmap.hxx> #include "oox/helper/binarystreambase.hxx" #include "oox/helper/storagebase.hxx" #include "oox/dllapi.h" @@ -140,6 +141,9 @@ public: const ::com::sun::star::uno::Reference< ::com::sun::star::task::XStatusIndicator >& getStatusIndicator() const; + /** Returns the FilterData */ + ::comphelper::SequenceAsHashMap& getFilterData() const; + /** Returns the media descriptor. */ ::comphelper::MediaDescriptor& getMediaDescriptor() const; diff --git a/oox/inc/oox/ppt/presentationfragmenthandler.hxx b/oox/inc/oox/ppt/presentationfragmenthandler.hxx index 694336894ea5..bb9488437266 100644 --- a/oox/inc/oox/ppt/presentationfragmenthandler.hxx +++ b/oox/inc/oox/ppt/presentationfragmenthandler.hxx @@ -48,6 +48,9 @@ protected: const oox::ppt::SlidePersistPtr pPersist ); private: + + void importSlide(sal_uInt32 nSlide, sal_Bool bFirstSlide, sal_Bool bImportNotes); + std::vector< rtl::OUString > maSlideMasterVector; std::vector< rtl::OUString > maSlidesVector; std::vector< rtl::OUString > maNotesMasterVector; |