Parent: [80a90c] (diff)

Download this file

playlistohpl.h    95 lines (76 with data), 2.8 kB

 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
/* Copyright (C) 2011 Lucio Carreras
*
* This file is part of sayonara player
*
* 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 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef PLAYLISTOHPL_H_
#define PLAYLISTOHPL_H_
#include <QDebug>
#include "HelperStructs/MetaData.h"
#include "playlist.h"
#include "upadapt/ohpladapt.h"
class OHTimeQO;
class PlaylistOHPL : public Playlist {
Q_OBJECT
public:
// We take ownership of the OHPlayer object. We only borrow ohtmo.
PlaylistOHPL(OHPlayer *ohpl, OHTimeQO *ohtm, QObject * parent = 0);
virtual ~PlaylistOHPL() {
delete m_ohplo;
}
virtual void update_state() {
m_ohplo->fetchState();
}
signals:
// All our signals are connected to the OHPlaylist object
void sig_clear_playlist();
void sig_insert_tracks(const MetaDataList&, int);
void sig_tracks_removed(const QList<int>& rows);
public slots:
// These receives changes from the remote state.
void onRemoteCurrentTrackid(int id);
void onRemoteTpState_impl(int, const char *);
void onRemoteSecsInSong_impl(quint32 s);
// The following are connected to GUI signals, for responding to
// user actions.
void psl_change_track_impl(int idx);
void psl_clear_playlist_impl();
void psl_play();
void psl_pause_impl();
void psl_stop();
void psl_forward();
void psl_backward();
void psl_remove_rows(const QList<int>& rows, bool = true);
// Insert after idx. Use -1 to insert at start
void psl_insert_tracks(const MetaDataList&, int);
// Process playlist data from device
void onRemoteMetaArray(const MetaDataList&);
void psl_seek(int);
private:
// My link to the OpenHome Renderer
OHPlayer *m_ohplo;
// We use this to retrieve the duration if not set in the didl frag
OHTimeQO *m_ohtmo;
// Position in current song, 0 if unknown
quint32 m_cursongsecs;
// Current song is last in playlist
bool m_lastsong;
// Playing the last 5 S of last song
bool m_closetoend;
void resetPosState() {
m_cursongsecs = 0;
m_lastsong = m_closetoend = false;
}
void maybeSetDuration(bool);
};
#endif /* PLAYLISTOHPL_H_ */