Parent: [aba04e] (diff)

Download this file

playlistohrcv.h    71 lines (60 with data), 2.2 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
/* Copyright (C) 2015 J.F.Dockes
* 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.
*
* 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, write to the
* Free Software Foundation, Inc.,
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef PLAYLISTOHRCV_H_
#define PLAYLISTOHRCV_H_
#include <QDebug>
#include "HelperStructs/MetaData.h"
#include "playlist.h"
#include "upqo/ohreceiver_qo.h"
// Incomplete: we don't process the remote transportstate changes. For now,
// can only be used for stopping in case of extreme need...
class PlaylistOHRCV : public Playlist {
Q_OBJECT
public:
PlaylistOHRCV(UPnPClient::OHRCH ohrc, const QString& fnm,
QObject *parent = 0)
: Playlist(parent), m_ohrc(ohrc), m_renderer(fnm) {
}
virtual ~PlaylistOHRCV() {
}
virtual void update_state() {
MetaDataList mdv;
MetaData md;
md.title = "Songcast receiver mode";
md.artist = tr("Renderer: ") + m_renderer;
mdv.push_back(md);
emit sig_playlist_updated(mdv, 0, 0);
emit sig_track_metadata(md);
}
signals:
void sig_track_metadata(const MetaData&);
public slots:
void psl_change_track_impl(int) {}
void psl_clear_playlist_impl() {}
void psl_play() {m_ohrc->play();}
void psl_pause_impl() {}
void psl_stop() {m_ohrc->stop();}
void psl_forward() {}
void psl_backward() {}
void psl_remove_rows(const QList<int>&, bool = true) {}
void psl_insert_tracks(const MetaDataList&, int) {}
void psl_seek(int) {}
private:
UPnPClient::OHRCH m_ohrc;
QString m_renderer;
};
#endif /* PLAYLISTOHRCV_H_ */