fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / avmedia / source / win / window.hxx
blobf0f82b5b0136eafb639384e5bf07cdc7621c43d9
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_AVMEDIA_SOURCE_WIN_WINDOW_HXX
21 #define INCLUDED_AVMEDIA_SOURCE_WIN_WINDOW_HXX
23 #include "wincommon.hxx"
24 #include <cppuhelper/interfacecontainer.h>
26 #include "com/sun/star/media/XPlayerWindow.hpp"
28 struct IVideoWindow;
30 namespace avmedia { namespace win {
33 // - Window -
36 class Player;
38 class Window : public ::cppu::WeakImplHelper2 < ::com::sun::star::media::XPlayerWindow,
39 ::com::sun::star::lang::XServiceInfo >
41 public:
43 Window( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& rxMgr,
44 Player& rPlayer );
45 ~Window();
47 bool create( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments );
48 void processGraphEvent();
49 void updatePointer();
51 // XPlayerWindow
52 virtual void SAL_CALL update( ) throw (::com::sun::star::uno::RuntimeException);
53 virtual sal_Bool SAL_CALL setZoomLevel( ::com::sun::star::media::ZoomLevel ZoomLevel ) throw (::com::sun::star::uno::RuntimeException);
54 virtual ::com::sun::star::media::ZoomLevel SAL_CALL getZoomLevel( ) throw (::com::sun::star::uno::RuntimeException);
55 virtual void SAL_CALL setPointerType( sal_Int32 nPointerType ) throw (::com::sun::star::uno::RuntimeException);
57 // XWindow
58 virtual void SAL_CALL setPosSize( sal_Int32 X, sal_Int32 Y, sal_Int32 Width, sal_Int32 Height, sal_Int16 Flags ) throw (::com::sun::star::uno::RuntimeException);
59 virtual ::com::sun::star::awt::Rectangle SAL_CALL getPosSize( ) throw (::com::sun::star::uno::RuntimeException);
60 virtual void SAL_CALL setVisible( sal_Bool Visible ) throw (::com::sun::star::uno::RuntimeException);
61 virtual void SAL_CALL setEnable( sal_Bool Enable ) throw (::com::sun::star::uno::RuntimeException);
62 virtual void SAL_CALL setFocus( ) throw (::com::sun::star::uno::RuntimeException);
63 virtual void SAL_CALL addWindowListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
64 virtual void SAL_CALL removeWindowListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
65 virtual void SAL_CALL addFocusListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFocusListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
66 virtual void SAL_CALL removeFocusListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFocusListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
67 virtual void SAL_CALL addKeyListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XKeyListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
68 virtual void SAL_CALL removeKeyListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XKeyListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
69 virtual void SAL_CALL addMouseListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XMouseListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
70 virtual void SAL_CALL removeMouseListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XMouseListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
71 virtual void SAL_CALL addMouseMotionListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XMouseMotionListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
72 virtual void SAL_CALL removeMouseMotionListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XMouseMotionListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
73 virtual void SAL_CALL addPaintListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XPaintListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
74 virtual void SAL_CALL removePaintListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XPaintListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
76 // XComponent
77 virtual void SAL_CALL dispose( ) throw (::com::sun::star::uno::RuntimeException);
78 virtual void SAL_CALL addEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
79 virtual void SAL_CALL removeEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& aListener ) throw (::com::sun::star::uno::RuntimeException);
81 // XServiceInfo
82 virtual OUString SAL_CALL getImplementationName( ) throw (::com::sun::star::uno::RuntimeException);
83 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException);
84 virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException);
86 public:
88 void fireMousePressedEvent( const ::com::sun::star::awt::MouseEvent& rEvt );
89 void fireMouseReleasedEvent( const ::com::sun::star::awt::MouseEvent& rEvt );
90 void fireMouseMovedEvent( const ::com::sun::star::awt::MouseEvent& rEvt );
91 void fireKeyPressedEvent( const ::com::sun::star::awt::KeyEvent& rEvt );
92 void fireKeyReleasedEvent( const ::com::sun::star::awt::KeyEvent& rEvt );
93 void fireSetFocusEvent( const ::com::sun::star::awt::FocusEvent& rEvt );
95 private:
97 ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > mxMgr;
99 ::osl::Mutex maMutex;
100 ::cppu::OMultiTypeInterfaceContainerHelper maListeners;
101 ::com::sun::star::media::ZoomLevel meZoomLevel;
102 Player& mrPlayer;
103 int mnFrameWnd;
104 int mnParentWnd;
105 int mnPointerType;
107 void ImplLayoutVideoWindow();
110 } // namespace win
111 } // namespace avmedia
113 #endif // INCLUDED_AVMEDIA_SOURCE_WIN_WINDOW_HXX
115 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */