forked from milohr/babe-qt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmpris2.h
156 lines (135 loc) · 5.17 KB
/
mpris2.h
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/*
* Cantata
*
* Copyright (c) 2011-2016 Craig Drummond <[email protected]>
*
* ----
*
* 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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef MPRIS2_H
#define MPRIS2_H
#include<QObject>
#include <QObject>
#include <QStringList>
#include <QVariantMap>
#include <QApplication>
#include <QDebug>
class QDBusObjectPath;
class Mpris : public QObject
{
Q_OBJECT
// org.mpris.MediaPlayer2.Player
Q_PROPERTY( double Rate READ Rate WRITE SetRate )
Q_PROPERTY( qlonglong Position READ Position )
Q_PROPERTY( double MinimumRate READ MinimumRate )
Q_PROPERTY( double MaximumRate READ MaximumRate )
Q_PROPERTY( bool CanControl READ CanControl )
Q_PROPERTY( bool CanPlay READ CanPlay )
Q_PROPERTY( bool CanPause READ CanPause )
Q_PROPERTY( bool CanSeek READ CanSeek )
Q_PROPERTY( bool CanGoNext READ CanGoNext )
Q_PROPERTY( bool CanGoPrevious READ CanGoPrevious )
Q_PROPERTY( QString PlaybackStatus READ PlaybackStatus )
Q_PROPERTY( QString LoopStatus READ LoopStatus WRITE SetLoopStatus )
Q_PROPERTY( bool Shuffle READ Shuffle WRITE SetShuffle )
Q_PROPERTY( QVariantMap Metadata READ Metadata )
Q_PROPERTY( double Volume READ Volume WRITE SetVolume )
// org.mpris.MediaPlayer2
Q_PROPERTY( bool CanQuit READ CanQuit )
Q_PROPERTY( bool CanRaise READ CanRaise )
Q_PROPERTY( QString DesktopEntry READ DesktopEntry )
Q_PROPERTY( bool HasTrackList READ HasTrackList )
Q_PROPERTY( QString Identity READ Identity )
Q_PROPERTY( QStringList SupportedMimeTypes READ SupportedMimeTypes )
Q_PROPERTY( QStringList SupportedUriSchemes READ SupportedUriSchemes )
public:
Mpris(QObject *p);
virtual ~Mpris();
// org.mpris.MediaPlayer2.Player
void Next() { qDebug()<<"next"; }
void Previous() { qDebug()<<"previous"; }
void Pause();
void PlayPause() { qDebug()<<"pause"; }
void Stop() { qDebug()<<"stop"; }
void StopAfterCurrent() { qDebug()<<"stop after current"; }
void Play();
void Seek(qlonglong pos) { qDebug()<<pos; }
void SetPosition(const QDBusObjectPath &, qlonglong pos) { qDebug()<<pos; }
void OpenUri(const QString &) { }
QString PlaybackStatus() const;
QString LoopStatus() { return "sthm"; }
void SetLoopStatus(const QString &s) { emit setRepeat(QLatin1String("None")!=s); }
QVariantMap Metadata() const;
int Rate() const { return 1.0; }
void SetRate(double) { }
bool Shuffle() { return false; }
void SetShuffle(bool s) { emit setRandom(s); }
double Volume() const { return 100.0; }
void SetVolume(double v) { emit setVolume(v*100); }
qlonglong Position() const;
double MinimumRate() const { return 1.0; }
double MaximumRate() const { return 1.0; }
bool CanControl() const { return true; }
bool CanPlay() const { return true; }
bool CanPause() const { return true; }
bool CanSeek() const { return true; }
bool CanGoNext() const { return true; }
bool CanGoPrevious() const { return true; }
// org.mpris.MediaPlayer2
bool CanQuit() const { return true; }
bool CanRaise() const { return true; }
bool HasTrackList() const { return false; }
QString Identity() const { return QLatin1String("Cantata"); }
QString DesktopEntry() const {
#ifdef ENABLE_KDE_SUPPORT
// Desktop file is installed in $prefix/share/applications/kde4/
// rather than in $prefix/share/applications. The standard way to
// represent this dir is with a "kde4-" prefix. See:
// http://standards.freedesktop.org/menu-spec/1.0/go01.html#term-desktop-file-id
return QLatin1String("kde4-cantata");
#else
return QLatin1String("cantata");
#endif
}
QStringList SupportedUriSchemes() const { return QStringList(); }
QStringList SupportedMimeTypes() const { return QStringList(); }
public:
void updateCurrentSong();
public Q_SLOTS:
void Raise();
void Quit() { QApplication::quit(); }
Q_SIGNALS:
// org.mpris.MediaPlayer2.Player
void setRandom(bool toggle);
void setRepeat(bool toggle);
void setSeekId(qint32 songId, quint32 time);
void setVolume(int vol);
void showMainWindow();
public Q_SLOTS:
void updateCurrentCover(const QString &fileName);
private Q_SLOTS:
void updateStatus();
private:
void signalUpdate(const QString &property, const QVariant &value);
void signalUpdate(const QVariantMap &map);
private:
//MPDStatusValues status;
QString currentCover;
//Song currentSong;
int pos;
};
#endif // MPRIS2_H