summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/media
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-07-13 11:01:17 +0000
committerOliver Bolte <obo@openoffice.org>2006-07-13 11:01:17 +0000
commit2dca591db9dcd8bad135e3a301102b4ef610d9b0 (patch)
treeb7d7914dc1b8b79d6d481ee5d8a239b12fcb3efc /offapi/com/sun/star/media
parent4271e3553e5753476d822de2616a94af95454b35 (diff)
INTEGRATION: CWS jsc8 (1.3.126); FILE MERGED
2006/06/09 07:00:26 jsc 1.3.126.1: #i65749# insert comments
Diffstat (limited to 'offapi/com/sun/star/media')
-rw-r--r--offapi/com/sun/star/media/XPlayerWindow.idl21
1 files changed, 16 insertions, 5 deletions
diff --git a/offapi/com/sun/star/media/XPlayerWindow.idl b/offapi/com/sun/star/media/XPlayerWindow.idl
index d79d83c369da..f9e88c884a80 100644
--- a/offapi/com/sun/star/media/XPlayerWindow.idl
+++ b/offapi/com/sun/star/media/XPlayerWindow.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: XPlayerWindow.idl,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 02:20:50 $
+ * last change: $Author: obo $ $Date: 2006-07-13 12:01:17 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -44,16 +44,27 @@
module com { module sun { module star { module media {
-/**
+/** interacts with the media player window
*/
interface XPlayerWindow : ::com::sun::star::awt::XWindow
{
+ /** redraws the player window
+ */
void update();
- boolean setZoomLevel( [in] ::com::sun::star::media::ZoomLevel ZoomLevel );
+ /** changes the zoom of the media played by the window.
+ */
+ boolean setZoomLevel( [in] ZoomLevel ZoomLevel );
- ::com::sun::star::media::ZoomLevel getZoomLevel();
+ /** gets the current media ratio.
+ */
+ ZoomLevel getZoomLevel();
+ /** changes the pointer for the player window.
+
+ @param SystemPointerType
+ a <type>com::sun::star::awt::SystemPointerType</type>
+ */
void setPointerType( [in] long SystemPointerType );
};