2010-03-24 21:58:17 +01:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-03-24 21:58:17 +01:00
|
|
|
|
|
|
|
Clementine 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.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MPRIS_H
|
|
|
|
#define MPRIS_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
2012-02-12 14:41:50 +01:00
|
|
|
class Application;
|
2010-12-04 23:27:58 +01:00
|
|
|
|
|
|
|
namespace mpris {
|
2010-03-24 21:58:17 +01:00
|
|
|
|
2011-01-08 16:31:14 +01:00
|
|
|
class Mpris1;
|
|
|
|
class Mpris2;
|
2010-11-21 16:13:26 +01:00
|
|
|
|
2011-01-08 16:31:14 +01:00
|
|
|
class Mpris : public QObject {
|
2010-12-04 23:27:58 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2012-02-13 21:44:04 +01:00
|
|
|
Mpris(Application* app, QObject* parent = 0);
|
2010-12-04 23:27:58 +01:00
|
|
|
|
|
|
|
signals:
|
2011-01-08 16:31:14 +01:00
|
|
|
void RaiseMainWindow();
|
2010-12-04 23:27:58 +01:00
|
|
|
|
2010-11-21 16:13:26 +01:00
|
|
|
private:
|
2011-01-08 16:31:14 +01:00
|
|
|
Mpris1* mpris1_;
|
|
|
|
Mpris2* mpris2_;
|
2010-03-24 21:58:17 +01:00
|
|
|
};
|
|
|
|
|
2010-12-04 23:27:58 +01:00
|
|
|
} // namespace mpris
|
2010-11-21 16:13:26 +01:00
|
|
|
|
2010-12-04 23:27:58 +01:00
|
|
|
#endif // MPRIS_H
|