Menu
Home
Blog
Add-ons
Forum
Wiki
Developers
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
components
library
base
public
sbILibraryTransferContext.idl
Go to the documentation of this file.
1
/*
2
//
3
// BEGIN SONGBIRD GPL
4
//
5
// This file is part of the Songbird web player.
6
//
7
// Copyright(c) 2005-2008 POTI, Inc.
8
// http://songbirdnest.com
9
//
10
// This file may be licensed under the terms of of the
11
// GNU General Public License Version 2 (the "GPL").
12
//
13
// Software distributed under the License is distributed
14
// on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either
15
// express or implied. See the GPL for the specific language
16
// governing rights and limitations.
17
//
18
// You should have received a copy of the GPL along with this
19
// program. If not, go to http://www.gnu.org/licenses/gpl.html
20
// or write to the Free Software Foundation, Inc.,
21
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22
//
23
// END SONGBIRD GPL
24
//
25
*/
26
32
#include "nsISupports.idl"
33
34
interface
sbIMediaList
;
35
interface
sbIMediaItem
;
36
interface
nsISimpleEnumerator
;
37
45
[scriptable,
uuid
(9a3da84e-209c-4d49-9294-c156080486bc)]
46
interface
sbILibraryTransferContext
:
nsISupports
47
{
51
readonly attribute
sbIMediaList
source
;
52
56
readonly attribute
unsigned
long
count
;
57
};
58
66
[scriptable,
uuid
(b2f94ac7-de15-4c63-8ea0-0cd58e512512)]
67
interface
sbIMediaListTransferContext
:
sbILibraryTransferContext
68
{
72
readonly attribute
sbIMediaList
list
;
73
};
74
91
[scriptable,
uuid
(dcb5d9ea-df04-44fa-9163-b28f80a83a69)]
92
interface
sbIMediaItemsTransferContext
:
sbILibraryTransferContext
93
{
98
readonly attribute
nsISimpleEnumerator
items
;
99
106
readonly attribute
nsISimpleEnumerator
indexedItems
;
107
112
void
reset
();
113
};
114
sbILibraryTransferContext::source
readonly attribute sbIMediaList source
The list the item or items were dragged from.
Definition:
sbILibraryTransferContext.idl:51
sbIMediaListTransferContext
This interface represents a transfer of a single media list.
Definition:
sbILibraryTransferContext.idl:67
sbILibraryTransferContext
A base interface for the various library transfer contexts.
Definition:
sbILibraryTransferContext.idl:46
sbIMediaItemsTransferContext::indexedItems
readonly attribute nsISimpleEnumerator indexedItems
The indexed items, for use if you need indices. This may not actually exist, since it is possible to ...
Definition:
sbILibraryTransferContext.idl:106
uuid
var uuid
Definition:
jquery-1.2.6.min.js:18
sbIMediaList
A brief description of the contents of this interface.
Definition:
sbIMediaList.idl:106
sbIMediaItemsTransferContext::reset
void reset()
Reset the items enumerator above to re-start at the first item.
sbIMediaItemsTransferContext
This interface represents a transfer of a collection of media items and/or media lists.
Definition:
sbILibraryTransferContext.idl:92
sbIMediaItem
Interface that defines a single item of media in the system.
Definition:
sbIMediaItem.idl:53
nsISimpleEnumerator
nsISimpleEnumerator
Definition:
sbLocalDatabaseMediaListViewSelection.cpp:1020
sbIMediaListTransferContext::list
readonly attribute sbIMediaList list
The single item media list payload.
Definition:
sbILibraryTransferContext.idl:72
nsISupports
nsISupports
Definition:
sbRemoteIndexedMediaItem.cpp:61
sbILibraryTransferContext::count
readonly attribute unsigned long count
The number of items in the transfer context.
Definition:
sbILibraryTransferContext.idl:56
sbIMediaItemsTransferContext::items
readonly attribute nsISimpleEnumerator items
Depending on the flavor of this transfer context, this enumerator may return a list of sbIMediaItem o...
Definition:
sbILibraryTransferContext.idl:98