blob: 3f03d365126ff12f33f046dc1b24e99ee4bf2cb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
/***************************************************************************
begin : Mon May 5 2003
copyright : (C) 2003 - 2004 by Scott Wheeler
email : wheeler@kde.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef DYNAMICPLAYLIST_H
#define DYNAMICPLAYLIST_H
#include "playlist.h"
/**
* A Playlist that is a union of other playlists that is created dynamically.
*/
class DynamicPlaylist : public Playlist
{
Q_OBJECT
public:
/**
* Creates a dynamic playlist based on lists.
*/
DynamicPlaylist(const PlaylistList &lists,
PlaylistCollection *collection,
const TQString &name = TQString(),
const TQString &iconName = "midi",
bool setupPlaylist = true,
bool synchronizePlaying = false);
virtual ~DynamicPlaylist();
virtual bool canReload() const { return false; }
void setPlaylists(const PlaylistList &playlists);
public slots:
/**
* Reimplemented so that it will reload all of the playlists that are
* associated with the dynamic list.
*/
virtual void slotReload();
void slotSetDirty() { m_dirty = true; }
/**
* This is called when lowering the widget from the widget stack so that
* it can synchronize the playing item with the one that playlist it was
* create from.
*/
void lower(TQWidget *top = 0);
protected:
/**
* Returns true if this list's items need to be updated the next time it's
* shown.
*/
bool dirty() const { return m_dirty; }
/**
* Return a list of the items in this playlist. For example in a search
* list this should return only the matched items. By default it returns
* all of the items in the playlists associated with this dynamic list.
*/
virtual PlaylistItemList items();
/**
* Reimplemented from TQWidget. Here it updates the list of items (when
* appropriate) as the widget is shown.
*/
virtual void showEvent(TQShowEvent *e);
virtual void paintEvent(TQPaintEvent *e);
/**
* Updates the items (unconditionally). This should be reimplemented in
* subclasses to refresh the items in the dynamic list (i.e. running a
* search).
*/
virtual void updateItems();
bool synchronizePlaying() const;
private:
/**
* Checks to see if the current list of items is "dirty" and if so updates
* this dynamic playlist's items to be in sync with the lists that it is a
* wrapper around.
*/
void checkUpdateItems();
private slots:
void slotUpdateItems();
private:
TQValueList<PlaylistObserver *> m_observers;
PlaylistItemList m_siblings;
PlaylistList m_playlists;
bool m_dirty;
bool m_synchronizePlaying;
};
#endif
|