summaryrefslogtreecommitdiffstats
path: root/playerwidget.h
diff options
context:
space:
mode:
authorArno <arno@disconnect.de>2017-02-27 02:38:49 +0100
committerArno <arno@disconnect.de>2017-02-27 02:38:49 +0100
commit7e8cf45e8fde4170ed2df97ecb487dd31dfa1092 (patch)
tree6063431cebc68e4c606743a0b3c516ebdd879ee9 /playerwidget.h
parentbfe075c2c75d00155c7f3e92e2a16c25eed8d005 (diff)
downloadBeetPlayer-7e8cf45e8fde4170ed2df97ecb487dd31dfa1092.tar.gz
BeetPlayer-7e8cf45e8fde4170ed2df97ecb487dd31dfa1092.tar.bz2
BeetPlayer-7e8cf45e8fde4170ed2df97ecb487dd31dfa1092.zip
Finally play something!
Far from there, but it finally, actually plays songs!
Diffstat (limited to 'playerwidget.h')
-rw-r--r--playerwidget.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/playerwidget.h b/playerwidget.h
index 2837688..a321e4a 100644
--- a/playerwidget.h
+++ b/playerwidget.h
@@ -31,6 +31,7 @@ class PlayerWidget : public QWidget {
void clearPlayList();
void shufflePlayList();
void randomPlay();
+ void playCurrent(const QModelIndex &index);
private:
void setupGui();
@@ -40,6 +41,7 @@ class PlayerWidget : public QWidget {
void populateByGenre(QStandardItem *parent, const QString &filter);
void recurse(const QModelIndex &parent);
void addSong(const QModelIndex &idx);
+ void play(const QString &fullPath);
QLineEdit *mFilter;
QMediaPlayer *mPlayer;
BeetView *mView;