diff options
Diffstat (limited to 'sd/source/ui/inc/DrawController.hxx')
-rw-r--r-- | sd/source/ui/inc/DrawController.hxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sd/source/ui/inc/DrawController.hxx b/sd/source/ui/inc/DrawController.hxx index 4a839b0ba7ed..680684734dba 100644 --- a/sd/source/ui/inc/DrawController.hxx +++ b/sd/source/ui/inc/DrawController.hxx @@ -40,6 +40,7 @@ #include <memory> #include <vector> #include <boost/scoped_ptr.hpp> +#include <com/sun/star/drawing/XLayer.hpp> namespace sd { @@ -92,6 +93,8 @@ public: PROPERTY_ZOOMVALUE = 7, PROPERTY_VIEWOFFSET = 8, PROPERTY_DRAWVIEWMODE = 9 + ,PROPERTY_UPDATEACC = 10 + ,PROPERTY_PAGE_CHANGE = 11 }; /** Create a new DrawController object for the given ViewShellBase. @@ -137,6 +140,12 @@ public: switch. */ void BroadcastContextChange (void) const; + void NotifyAccUpdate(); + void fireChangeLayer( ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XLayer>* pCurrentLayer ) throw(); + // change the parameter to int + //void fireSwitchCurrentPage( String pageName) throw(); + void fireSwitchCurrentPage( sal_Int32 pageIndex) throw(); + ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XLayer>* mpCurrentLayer; /** Return a pointer to the ViewShellBase object that the DrawController is connected to. |