2
* Copyright © 2006-2008, Bastien Nocera <hadess@hadess.net
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.
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.
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.
20
#include "nsISupports.idl"
22
interface totemIConePlaylistItems;
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 */
27
[scriptable, uuid(3c499730-9aa3-4c87-b752-05ae90116fa8)]
28
interface totemIConePlaylist : nsISupports
30
/* readonly attribute long itemCount; deprecated */
31
readonly attribute boolean isPlaying;
32
readonly attribute totemIConePlaylistItems items;
34
long add (in AUTF8String MRL, in AUTF8String name, in AUTF8String options);
37
* We don't seem to be able to have 2 functions with the same name
38
* void add (in AUTF8String MRL);
41
void playItem (in long number);
47
/* void clear (); deprecated */
48
void removeItem (in long number);