fix: stupid mistake when loading playlist
This commit is contained in:
parent
4c438629e7
commit
8aa68ccebd
|
@ -93,7 +93,7 @@ void MainWindow::loadPlaylistBySingleLocalFile(const QString &path)
|
||||||
currentFileIndex = 0;
|
currentFileIndex = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
createPlaylist(urlList);
|
createPlaylist(urlList, currentFileIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::setAudioPropertyInfoForDisplay(int sampleRate, int bitrate, int channelCount, QString audioExt)
|
void MainWindow::setAudioPropertyInfoForDisplay(int sampleRate, int bitrate, int channelCount, QString audioExt)
|
||||||
|
@ -193,6 +193,7 @@ void MainWindow::mousePressEvent(QMouseEvent *event)
|
||||||
void MainWindow::mouseMoveEvent(QMouseEvent *event)
|
void MainWindow::mouseMoveEvent(QMouseEvent *event)
|
||||||
{
|
{
|
||||||
if (event->buttons() & Qt::LeftButton && m_clickedOnWindow) {
|
if (event->buttons() & Qt::LeftButton && m_clickedOnWindow) {
|
||||||
|
qDebug() << "??" << event << event->flags() << event->isBeginEvent() << event->isEndEvent();
|
||||||
window()->windowHandle()->startSystemMove();
|
window()->windowHandle()->startSystemMove();
|
||||||
event->accept();
|
event->accept();
|
||||||
}
|
}
|
||||||
|
@ -203,7 +204,7 @@ void MainWindow::mouseMoveEvent(QMouseEvent *event)
|
||||||
void MainWindow::mouseReleaseEvent(QMouseEvent *event)
|
void MainWindow::mouseReleaseEvent(QMouseEvent *event)
|
||||||
{
|
{
|
||||||
m_clickedOnWindow = false;
|
m_clickedOnWindow = false;
|
||||||
|
qDebug() << "?";
|
||||||
return QMainWindow::mouseReleaseEvent(event);
|
return QMainWindow::mouseReleaseEvent(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -249,7 +250,7 @@ void MainWindow::loadFile()
|
||||||
/*
|
/*
|
||||||
* The returned QMediaPlaylist* ownership belongs to the internal QMediaPlayer instance.
|
* The returned QMediaPlaylist* ownership belongs to the internal QMediaPlayer instance.
|
||||||
*/
|
*/
|
||||||
void MainWindow::createPlaylist(QList<QUrl> urlList)
|
void MainWindow::createPlaylist(QList<QUrl> urlList, int index)
|
||||||
{
|
{
|
||||||
QMediaPlaylist* playlist = m_playlistModel->playlist();
|
QMediaPlaylist* playlist = m_playlistModel->playlist();
|
||||||
playlist->clear();
|
playlist->clear();
|
||||||
|
@ -275,7 +276,7 @@ void MainWindow::createPlaylist(QList<QUrl> urlList)
|
||||||
});
|
});
|
||||||
|
|
||||||
playlist->setPlaybackMode(QMediaPlaylist::CurrentItemInLoop);
|
playlist->setPlaybackMode(QMediaPlaylist::CurrentItemInLoop);
|
||||||
playlist->setCurrentIndex(0);
|
playlist->setCurrentIndex(index < 0 ? 0 : index);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::centerWindow()
|
void MainWindow::centerWindow()
|
||||||
|
|
|
@ -40,7 +40,7 @@ protected:
|
||||||
|
|
||||||
void loadFile();
|
void loadFile();
|
||||||
void centerWindow();
|
void centerWindow();
|
||||||
void createPlaylist(QList<QUrl> urlList);
|
void createPlaylist(QList<QUrl> urlList, int index = -1);
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void on_playbackModeBtn_clicked();
|
void on_playbackModeBtn_clicked();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user