~walkerlee/totem/pre-interview

« back to all changes in this revision

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

Tags: 2.24.3-3
* totem-mozilla.docs: ship README.browser-plugin which explains how to 
  disable the plugin for some MIME types.
* rules: remove the hack that only let totem-xine support VCDs and 
  DVDs, now that GStreamer supports them. Closes: #370789.
* 01_fake_keypresses.patch: new patch. Completely disable the broken 
  XTEST code that generates fake keypresses. Closes: #500330.
* 90_autotools.patch: regenerated.
* Build-depend on nautilus 2.22 to be sure to build the extension for 
  the correct version.
* totem-xine depends on libxine1-x.
* Standards version is 3.8.1.
* Upload to unstable.
* 04_tracker_build.patch: new patch, stolen upstream. Fix build with 
  latest tracker version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *  Copyright © 2006-2008, Bastien Nocera <hadess@hadess.net
3
 
 *
4
 
 *  This library is free software; you can redistribute it and/or
5
 
 *  modify it under the terms of the GNU Lesser General Public
6
 
 *  License as published by the Free Software Foundation; either
7
 
 *  version 2.1 of the License, or (at your option) any later version.
8
 
 *
9
 
 *  This library is distributed in the hope that it will be useful,
10
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
 *  Lesser General Public License for more details.
13
 
 *
14
 
 *  You should have received a copy of the GNU Lesser General Public
15
 
 *  License along with this library; if not, write to the
16
 
 *  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17
 
 *  Boston, MA 02111-1307, USA.
18
 
 */
19
 
 
20
 
#include "nsISupports.idl"
21
 
 
22
 
interface totemIConePlaylistItems;
23
 
 
24
 
/* Documentation at
25
 
 * http://wiki.videolan.org/Documentation:Play_HowTo/Advanced_Use_of_VLC#Building_HTML_pages_for_Mozilla.2FFirefox.2FInternet_Explorere.2FSafari_.28VLC_version_0.8.6_and_above.29 */
26
 
 
27
 
[scriptable, uuid(3c499730-9aa3-4c87-b752-05ae90116fa8)]
28
 
interface totemIConePlaylist : nsISupports
29
 
{
30
 
  /* readonly attribute long itemCount; deprecated */
31
 
  readonly attribute boolean isPlaying;
32
 
  readonly attribute totemIConePlaylistItems items;
33
 
 
34
 
  long add (in AUTF8String MRL, in AUTF8String name, in AUTF8String options);
35
 
 
36
 
/*
37
 
 * We don't seem to be able to have 2 functions with the same name 
38
 
 *  void add (in AUTF8String MRL);
39
 
 */
40
 
  void play ();
41
 
  void playItem (in long number);
42
 
 
43
 
  void togglePause ();
44
 
  void stop ();
45
 
  void next ();
46
 
  void prev ();
47
 
  /* void clear (); deprecated */
48
 
  void removeItem (in long number);
49
 
};
50