~ubuntu-branches/ubuntu/trusty/totem/trusty-proposed

« back to all changes in this revision

Viewing changes to browser-plugin/idl/totemINarrowSpacePlayer.idl

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette, Josselin Mouette, Loic Minier, Sjoerd Simons
  • Date: 2008-09-10 15:38:34 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080910153834-kxne946nj2b5squf
Tags: 2.22.2-4
[ Josselin Mouette ]
* Change the recommends on g-c-c to one on g-s-d. Also move it to
  totem-plugins, which is the package providing the media keys
  functionality.
* Change the depends on dbus to dbus-x11.

[ Loic Minier ]
* Let totem-gstreamer recommend gnome-app-install for easy codec
  installation.

[ Josselin Mouette ]
* 02_flv.patch: the canonical MIME type for Flash videos is 
  video/x-flv, not video/flv. Closes: #486468.

[ Sjoerd Simons ]
* 30_fix_youtube_plugin.patch: Set the server as a keyword argument to be
  compatible with both old and new versions of python-gdata. Fixes searching
  for youtube videos
* debian/control.in: Fix double Recommend field for totem-gstreamer

[ Josselin Mouette ]
* rules: rally disable the vala plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
#include "nsISupports.idl"
23
23
 
24
 
[scriptable, uuid(8e4f5790-23bc-4597-a083-2ec1cc2d72ab)]
 
24
[scriptable, uuid(e2f9b616-3ea9-4487-b8b2-561892009f95)]
 
25
 
 
26
/* Original documentation at:
 
27
 * http://developer.apple.com/documentation/QuickTime/REF/QT41_HTML/QT41WhatsNew-72.html */
 
28
 
25
29
interface totemINarrowSpacePlayer : nsISupports {
 
30
  /* Movie Commands */
26
31
  void Play ();
 
32
  void Stop ();
27
33
  void Rewind ();
28
 
  void Stop ();
 
34
  void Step (in long count);
 
35
  void ShowDefaultView ();
 
36
  void GoPreviousNode ();
 
37
 
 
38
  /* Movie Properties */
 
39
  void SetRate (in float rate);
 
40
  float GetRate ();
 
41
 
 
42
  void SetTime (in unsigned long time);
 
43
  unsigned long GetTime ();
 
44
 
 
45
  void SetVolume (in unsigned long volume);
 
46
  unsigned long GetVolume ();
 
47
 
 
48
  void SetMovieName (in AUTF8String movieName);
 
49
  AUTF8String GetMovieName ();
 
50
 
 
51
  void SetMovieID (in unsigned long movieID);
 
52
  unsigned long GetMovieID ();
 
53
 
 
54
  void SetStartTime (in unsigned long time);
 
55
  unsigned long GetStartTime ();
 
56
 
 
57
  void SetEndTime (in unsigned long time);
 
58
  unsigned long GetEndTime ();
 
59
 
 
60
  void SetBgColor (in ACString color);
 
61
  ACString GetBgColor ();
 
62
 
 
63
  void SetIsLooping (in boolean loop);
 
64
  boolean GetIsLooping ();
 
65
 
 
66
  void SetLoopIsPalindrome (in boolean loop);
 
67
  boolean GetLoopIsPalindrome ();
 
68
 
 
69
  boolean GetMute ();
 
70
  void SetMute (in boolean mute);
 
71
 
 
72
  void SetPlayEveryFrame (in boolean playAll);
 
73
  boolean GetPlayEveryFrame ();
 
74
 
 
75
  void SetAutoPlay (in boolean autoPlay);
 
76
  boolean GetAutoPlay ();
 
77
 
 
78
  void SetControllerVisible (in boolean visible);
 
79
  boolean GetControllerVisible ();
 
80
 
 
81
  void SetHREF (in AUTF8String url);
 
82
  AUTF8String GetHREF ();
 
83
 
 
84
  void SetTarget (in AUTF8String target);
 
85
  AUTF8String GetTarget ();
 
86
 
 
87
  void SetQTNEXTUrl (in unsigned long index, in AUTF8String url);
 
88
  AUTF8String GetQTNEXTUrl (in unsigned long index);
 
89
 
 
90
  void SetHotspotUrl (in unsigned long hotspotID, in AUTF8String url);
 
91
  AUTF8String GetHotspotUrl (in unsigned long hotspotID);
 
92
 
 
93
  void SetHotspotTarget (in unsigned long hotspotID, in AUTF8String target);
 
94
  AUTF8String GetHotspotTarget (in unsigned long hotspotID);
 
95
 
 
96
  void SetURL (in AUTF8String url);
 
97
  AUTF8String GetURL ();
 
98
 
 
99
  void SetKioskMode (in boolean kioskMode);
 
100
  boolean GetKioskMode ();
 
101
 
 
102
  unsigned long GetDuration ();
 
103
  unsigned long GetMaxTimeLoaded ();
 
104
  unsigned long GetTimeScale ();
 
105
  unsigned long GetMovieSize ();
 
106
  unsigned long GetMaxBytesLoaded ();
 
107
 
 
108
  void SetMatrix (in ACString matrix);
 
109
  ACString GetMatrix ();
 
110
  
 
111
  void SetRectangle (in ACString rect);
 
112
  ACString GetRectangle ();
 
113
 
 
114
  void SetLanguage (in ACString language);
 
115
  ACString GetLanguage ();
 
116
 
 
117
  ACString GetMIMEType ();
 
118
  AUTF8String GetUserData (in ACString type);
 
119
 
 
120
  /* Track Properties */
 
121
  unsigned long GetTrackCount ();
 
122
  AUTF8String GetTrackName (in unsigned long index);
 
123
  ACString GetTrackType (in unsigned long index);
 
124
  boolean GetTrackEnabled (in unsigned long index);
 
125
  void SetTrackEnabled (in unsigned long index, in boolean enabled);
 
126
 
 
127
  /* Sprite Track Properties */
 
128
  void SetSpriteTrackVariable (in unsigned long trackIndex,
 
129
                               in unsigned long variableIndex,
 
130
                               in ACString value);
 
131
  ACString GetSpriteTrackVariable (in unsigned long trackIndex,
 
132
                                   in unsigned long variableIndex);
 
133
 
 
134
  /* QuickTime VR Movie Properties */
 
135
  boolean GetIsVRMovie ();
 
136
 
 
137
  void SetPanAngle (in float angle);
 
138
  float GetPanAngle ();
 
139
 
 
140
  void SetTiltAngle (in float angle);
 
141
  float GetTiltAngle ();
 
142
 
 
143
  void SetFieldOfView (in float fov);
 
144
  float GetFieldOfView ();
 
145
 
 
146
  unsigned long GetNodeCount ();
 
147
  unsigned long GetNodeID ();
 
148
  void SetNodeID (in unsigned long id);
 
149
 
 
150
  /* Plugin Properties */
 
151
  ACString GetPluginVersion ();
 
152
  ACString GetPluginStatus ();
 
153
 
 
154
  boolean GetResetPropertiesOnReload ();
 
155
  void SetResetPropertiesOnReload (in boolean reset);
 
156
 
 
157
  /* QuickTime Properties */
 
158
  ACString GetQuickTimeVersion ();
 
159
  ACString GetQuickTimeLanguage ();
 
160
  unsigned long GetQuickTimeConnectionSpeed ();
 
161
  boolean GetIsQuickTimeRegistered ();
 
162
  ACString GetComponentVersion (in ACString type,
 
163
                                in ACString subType,
 
164
                                in ACString manufacturer);
29
165
};