diff options
Diffstat (limited to 'sd/source/ui/framework/factories/FullScreenPane.hxx')
-rw-r--r-- | sd/source/ui/framework/factories/FullScreenPane.hxx | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sd/source/ui/framework/factories/FullScreenPane.hxx b/sd/source/ui/framework/factories/FullScreenPane.hxx index 480c191c0..8b68f8f48 100644 --- a/sd/source/ui/framework/factories/FullScreenPane.hxx +++ b/sd/source/ui/framework/factories/FullScreenPane.hxx @@ -35,6 +35,7 @@ #include "FrameWindowPane.hxx" #include <com/sun/star/frame/XLayoutManager.hpp> #include <com/sun/star/uno/XComponentContext.hpp> +#include <vcl/vclevent.hxx> #include <boost/scoped_ptr.hpp> namespace css = ::com::sun::star; @@ -69,6 +70,26 @@ public: virtual void SAL_CALL disposing (void); + //----- XPane ------------------------------------------------------------- + + virtual sal_Bool SAL_CALL isVisible (void) + throw (cssu::RuntimeException); + + virtual void SAL_CALL setVisible (sal_Bool bIsVisible) + throw (cssu::RuntimeException); + + virtual cssu::Reference<css::accessibility::XAccessible> SAL_CALL getAccessible (void) + throw (cssu::RuntimeException); + + virtual void SAL_CALL setAccessible ( + const cssu::Reference<css::accessibility::XAccessible>& rxAccessible) + throw (cssu::RuntimeException); + + + //------------------------------------------------------------------------- + + DECL_LINK(WindowEventHandler, VclWindowEvent*); + protected: virtual ::com::sun::star::uno::Reference<com::sun::star::rendering::XCanvas> CreateCanvas (void) |