sbIOSDControlService.idl
Go to the documentation of this file.
1 /*
2  *=BEGIN SONGBIRD GPL
3  *
4  * This file is part of the Songbird web player.
5  *
6  * Copyright(c) 2005-2009 POTI, Inc.
7  * http://www.songbirdnest.com
8  *
9  * This file may be licensed under the terms of of the
10  * GNU General Public License Version 2 (the ``GPL'').
11  *
12  * Software distributed under the License is distributed
13  * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
14  * express or implied. See the GPL for the specific language
15  * governing rights and limitations.
16  *
17  * You should have received a copy of the GPL along with this
18  * program. If not, go to http://www.gnu.org/licenses/gpl.html
19  * or write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21  *
22  *=END SONGBIRD GPL
23  */
24 
25 #include "nsISupports.idl"
26 
27 
28 //==============================================================================
29 //
30 // @interface sbIOSDControlService
31 // @brief This interface provides on-screen-display controls for video
32 // playback. This service also provides hiding and showing options
33 // for the OSD controls.
34 //
35 //==============================================================================
36 
37 [scriptable, uuid(6AE76963-92E6-4A70-9964-F545181E31FE)]
39 {
40  //
41  // @brief Inform the OSD service that a video window is opening. This method
42  // should be called whenever a video window opens in order to display
43  // OSD controls for the service.
44  // @param aVideoWindow The video window that is opening.
45  //
46  void onVideoWindowOpened(in nsISupports aVideoWindow);
47 
48  //
49  // @brief Inform the OSD service that a video window is closing. If this
50  // method is not invoked when a window closes, the OSD controls will
51  // remain open.
52  //
54 
55  //
56  // @brief Inform the OSD service that the main video window has resized.
57  //
58  void onVideoWindowResized();
59 
60  //
61  // @brief Inform the OSD service that the main video window has gone into
62  // fullscreen mode.
63  //
64  void onVideoWindowFullscreenChanged(in boolean aFullscreen);
65 
66  //
67  // @brief Constants for transitions when hiding or showing the OSD controls.
68  //
69  const unsigned long TRANSITION_NONE = 0;
70  const unsigned long TRANSITION_FADE = 1;
71 
72  //
73  // @brief Hides the OSD controls from showing on top of the video window.
74  // @param aTransitionType A transition option for hiding the controls.
75  //
76  void hideOSDControls([optional] in unsigned long aTransitionType);
77 
78  //
79  // @brief Show the OSD controls on top of the video window.
80  // @param aTransitionType A transition option for showing the controls.
81  //
82  void showOSDControls([optional] in unsigned long aTransitionType);
83 };
84 
void hideOSDControls([optional] in unsigned long aTransitionType)
var uuid
void onVideoWindowFullscreenChanged(in boolean aFullscreen)
void onVideoWindowOpened(in nsISupports aVideoWindow)
void showOSDControls([optional] in unsigned long aTransitionType)
const unsigned long TRANSITION_NONE
const unsigned long TRANSITION_FADE