Clementine-audio-player-Mac.../src/player.h

64 lines
1.2 KiB
C
Raw Normal View History

2009-12-24 20:16:07 +01:00
#ifndef PLAYER_H
#define PLAYER_H
#include <QObject>
#include <QSettings>
#include "engine_fwd.h"
#include "playlistitem.h"
#include "song.h"
2009-12-24 20:16:07 +01:00
class Playlist;
class Settings;
2009-12-29 20:22:02 +01:00
class LastFMService;
2009-12-24 20:16:07 +01:00
class Player : public QObject {
Q_OBJECT
public:
2009-12-29 20:22:02 +01:00
Player(Playlist* playlist, LastFMService* lastfm, QObject* parent = 0);
2009-12-24 20:16:07 +01:00
EngineBase* GetEngine() { return engine_; }
Engine::State GetState() const;
int GetVolume() const;
PlaylistItem::Options GetCurrentItemOptions() const { return current_item_options_; }
Song GetCurrentItem() const { return current_item_; }
2009-12-24 20:16:07 +01:00
public slots:
void ReloadSettings();
2009-12-24 20:16:07 +01:00
void PlayAt(int index);
void PlayPause();
void Next();
void Previous();
void Stop();
void SetVolume(int value);
2010-01-15 18:12:47 +01:00
void Seek(int seconds);
2009-12-24 20:16:07 +01:00
void TrackEnded();
2009-12-26 22:35:45 +01:00
void StreamReady(const QUrl& original_url, const QUrl& media_url);
2009-12-24 20:16:07 +01:00
signals:
void Playing();
void Paused();
void Stopped();
2010-01-08 17:40:34 +01:00
void VolumeChanged(int volume);
2009-12-24 20:16:07 +01:00
void Error(const QString& message);
private slots:
void EngineStateChanged(Engine::State);
private:
Playlist* playlist_;
2009-12-29 20:22:02 +01:00
LastFMService* lastfm_;
2009-12-24 20:16:07 +01:00
QSettings settings_;
PlaylistItem::Options current_item_options_;
Song current_item_;
2009-12-24 20:16:07 +01:00
EngineBase* engine_;
};
#endif // PLAYER_H