xref: /aoo42x/main/offapi/com/sun/star/media/ZoomLevel.idl (revision cdf0e10c)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27#ifndef __com_sun_star_media_ZoomLevel_idl__
28#define __com_sun_star_media_ZoomLevel_idl__
29
30module com {  module sun {  module star {  module media {
31
32
33enum ZoomLevel
34{
35	/** specifies that the video window itself is not available at all,
36        e.g. in cases of pure audio playback
37	 */
38    NOT_AVAILABLE,
39
40    //-------------------------------------------------------------------------
41
42	/** specifies that the video should be displayed with
43        its original size
44	 */
45    ORIGINAL,
46
47    //-------------------------------------------------------------------------
48
49	/** specifies that the video should be zoomed to window size
50	 */
51    FIT_TO_WINDOW,
52
53	//-------------------------------------------------------------------------
54
55	/** specifies that the video should be zoomed to window size
56        with using a fixed aspect ratio
57	 */
58    FIT_TO_WINDOW_FIXED_ASPECT,
59
60	//-------------------------------------------------------------------------
61
62	/** specifies that the video should be displayed in fullscreen mode,
63        if available
64	 */
65    FULLSCREEN,
66
67	//-------------------------------------------------------------------------
68
69	/** specifies that the video should be zoomed to a factor of 1:4
70	 */
71    ZOOM_1_TO_4,
72
73	//-------------------------------------------------------------------------
74
75	/** specifies that the video should be zoomed to a factor of 1:2
76	 */
77    ZOOM_1_TO_2,
78
79	//-------------------------------------------------------------------------
80
81	/** specifies that the video should be zoomed to a factor of 2:1
82	 */
83    ZOOM_2_TO_1,
84
85	//-------------------------------------------------------------------------
86
87	/** specifies that the video should be zoomed to a factor of 4:1
88	 */
89    ZOOM_4_TO_1
90};
91
92}; }; }; };
93
94#endif
95