From 7e8cf45e8fde4170ed2df97ecb487dd31dfa1092 Mon Sep 17 00:00:00 2001 From: Arno Date: Mon, 27 Feb 2017 02:38:49 +0100 Subject: Finally play something! Far from there, but it finally, actually plays songs! --- playerwidget.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'playerwidget.cpp') diff --git a/playerwidget.cpp b/playerwidget.cpp index 6e6cb76..40294db 100644 --- a/playerwidget.cpp +++ b/playerwidget.cpp @@ -14,6 +14,7 @@ #include #include #include +#include #include @@ -92,6 +93,7 @@ void PlayerWidget::setupGui(){ mPlayListView->setModel(mPlayListModel); mPlayListView->setRootIsDecorated(false); mPlayListView->setSelectionMode(QAbstractItemView::ExtendedSelection); + connect(mPlayListView, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(playCurrent(QModelIndex))); QGroupBox *playListGB = new QGroupBox(tr("Playlist")); QVBoxLayout *playListL = new QVBoxLayout; playListL->addWidget(mPlayListView); @@ -103,6 +105,9 @@ void PlayerWidget::setupGui(){ rightWidgetL->addWidget(playListGB); rightWidget->setLayout(rightWidgetL); + //the Player + mPlayer = new QMediaPlayer(this); + //put it all together QSplitter *splitter = new QSplitter; splitter->addWidget(leftWidget); @@ -394,9 +399,20 @@ void PlayerWidget::randomPlay(){ while(randomQ.next()){ QString display = QString(tr("%1 - %2 - %3 - %4")).arg(QChar(0x266C)).arg(randomQ.value(4).toString()).arg(randomQ.value(1).toString()).arg(randomQ.value(5).toString()); QStandardItem *item = new QStandardItem; + item->setEditable(false); item->setFont(QFont("courier")); item->setText(display); item->setData(randomQ.value(2), FullPathRole); root->appendRow(item); } } + +void PlayerWidget::playCurrent(const QModelIndex &index){ + QString fullPath = index.data(FullPathRole).toString(); + play(fullPath); +} + +void PlayerWidget::play(const QString &fullPath){ + mPlayer->setMedia(QUrl::fromLocalFile(fullPath)); + mPlayer->play(); +} -- cgit v1.2.3-70-g09d2