|
|
|
@ -50,7 +50,7 @@ namespace KIO { class Job; class TransferJob; class CopyJob; } //podcast downloa
|
|
|
|
|
class PlaylistBrowserEntry : public TQObject, public KListViewItem
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PlaylistBrowserEntry( TQListViewItem *parent, TQListViewItem *after )
|
|
|
|
|
: KListViewItem( parent, after) { m_kept = true; }
|
|
|
|
@ -87,7 +87,7 @@ class PlaylistBrowserEntry : public TQObject, public KListViewItem
|
|
|
|
|
class DynamicEntry : public PlaylistBrowserEntry, public DynamicMode
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
DynamicEntry( TQListViewItem *parent, TQListViewItem *after, const TQString &title );
|
|
|
|
|
DynamicEntry( TQListViewItem *parent, TQListViewItem *after, const TQDomElement &xmlDefinition );
|
|
|
|
@ -108,7 +108,7 @@ class DynamicEntry : public PlaylistBrowserEntry, public DynamicMode
|
|
|
|
|
class PlaylistCategory : public PlaylistBrowserEntry
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PlaylistCategory( TQListView *parent, TQListViewItem *after, const TQString &, bool isFolder=false );
|
|
|
|
|
PlaylistCategory( PlaylistCategory *parent, TQListViewItem *after, const TQString &, bool isFolder=true );
|
|
|
|
@ -152,7 +152,7 @@ class PlaylistCategory : public PlaylistBrowserEntry
|
|
|
|
|
class PlaylistEntry : public PlaylistBrowserEntry
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
friend class PlaylistTrackItem;
|
|
|
|
|
friend class TrackItemInfo;
|
|
|
|
@ -234,7 +234,7 @@ class PlaylistEntry : public PlaylistBrowserEntry
|
|
|
|
|
class PlaylistTrackItem : public PlaylistBrowserEntry
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
friend class TrackItemInfo;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
@ -259,7 +259,7 @@ class PlaylistTrackItem : public PlaylistBrowserEntry
|
|
|
|
|
class PodcastEpisode : public PlaylistBrowserEntry
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PodcastEpisode( TQListViewItem *parent, TQListViewItem *after, const TQDomElement &xml,
|
|
|
|
@ -347,7 +347,7 @@ class PodcastEpisode : public PlaylistBrowserEntry
|
|
|
|
|
class PodcastChannel : public PlaylistBrowserEntry
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PodcastChannel( TQListViewItem *parent, TQListViewItem *after, const KURL &url,
|
|
|
|
@ -452,7 +452,7 @@ class PodcastChannel : public PlaylistBrowserEntry
|
|
|
|
|
class StreamEntry : public PlaylistBrowserEntry
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
StreamEntry( TQListViewItem *parent, TQListViewItem *after, const KURL &, const TQString &t );
|
|
|
|
|
StreamEntry( TQListViewItem *parent, TQListViewItem *after, const TQDomElement &xmlDefinition );
|
|
|
|
@ -486,7 +486,7 @@ class StreamEntry : public PlaylistBrowserEntry
|
|
|
|
|
class LastFmEntry : public StreamEntry
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
LastFmEntry( TQListViewItem *parent, TQListViewItem *after, const KURL &u, const TQString &t )
|
|
|
|
|
: StreamEntry( parent, after, u, t ) { }
|
|
|
|
@ -519,7 +519,7 @@ class StreamEditor : public KDialogBase
|
|
|
|
|
class SmartPlaylist : public PlaylistBrowserEntry
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
SmartPlaylist( TQListViewItem *parent, TQListViewItem *after, const TQString &name, const TQString &query );
|
|
|
|
|
SmartPlaylist( TQListViewItem *parent, TQListViewItem *after, const TQString &name,
|
|
|
|
@ -590,7 +590,7 @@ class TrackItemInfo
|
|
|
|
|
class ShoutcastBrowser : public PlaylistCategory
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
ShoutcastBrowser( PlaylistCategory* parent );
|
|
|
|
|
void setOpen( bool open );
|
|
|
|
@ -620,7 +620,7 @@ class ShoutcastBrowser : public PlaylistCategory
|
|
|
|
|
class ShoutcastGenre : public PlaylistCategory
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
ShoutcastGenre( ShoutcastBrowser *browser, TQListViewItem *after, TQString genre );
|
|
|
|
|
void setOpen( bool open );
|
|
|
|
|