diff options
Diffstat (limited to 'sd/source/ui/inc')
-rw-r--r-- | sd/source/ui/inc/View.hxx | 3 | ||||
-rw-r--r-- | sd/source/ui/inc/fuinsert.hxx | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/sd/source/ui/inc/View.hxx b/sd/source/ui/inc/View.hxx index 8d211d0c3533..4e530e3f9227 100644 --- a/sd/source/ui/inc/View.hxx +++ b/sd/source/ui/inc/View.hxx @@ -40,6 +40,8 @@ class ImageMap; class Graphic; class SdrOutliner; +namespace avmedia { class PlayerListener; } + namespace sd { class DrawDocShell; @@ -268,6 +270,7 @@ protected: sal_Int8 mnAction; Idle maDropErrorIdle; Idle maDropInsertFileIdle; + rtl::Reference<avmedia::PlayerListener> mxDropMediaSizeListener; sal_uInt16 mnLockRedrawSmph; bool mbIsDropAllowed; diff --git a/sd/source/ui/inc/fuinsert.hxx b/sd/source/ui/inc/fuinsert.hxx index 0ad622df36b8..a2b33596162d 100644 --- a/sd/source/ui/inc/fuinsert.hxx +++ b/sd/source/ui/inc/fuinsert.hxx @@ -19,6 +19,7 @@ #pragma once +#include <config_features.h> #include "fupoor.hxx" namespace sd { @@ -101,6 +102,10 @@ private: ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq); + +#if HAVE_FEATURE_AVMEDIA + void InsertMediaURL(const OUString& rURL, const Size& rPrefSize, bool bLink); +#endif }; } // end of namespace sd |