MusicLrcSearchWidget::MusicLrcSearchWidget(QWidget *parent) : MusicAbstractMoveDialog(parent), ui(new Ui::MusicLrcSearchWidget) { ui->setupUi(this); ui->topTitleCloseButton->setIcon(QIcon(":/share/searchclosed")); ui->topTitleCloseButton->setStyleSheet(MusicUIObject::MToolButtonStyle03); ui->topTitleCloseButton->setCursor(QCursor(Qt::PointingHandCursor)); ui->topTitleCloseButton->setToolTip(tr("Close")); ui->songSearchEdit->setStyleSheet(MusicUIObject::MLineEditStyle01); ui->lrcSearchButton->setStyleSheet(MusicUIObject::MPushButtonStyle08); ui->lrcSearchDownload->setStyleSheet(MusicUIObject::MPushButtonStyle08); ui->closeButton->setStyleSheet(MusicUIObject::MPushButtonStyle08); ui->lrcSearchButton->setCursor(QCursor(Qt::PointingHandCursor)); ui->lrcSearchDownload->setCursor(QCursor(Qt::PointingHandCursor)); ui->closeButton->setCursor(QCursor(Qt::PointingHandCursor)); connect(ui->lrcSearchButton, SIGNAL(clicked()), SLOT(lrcSearchButtonClicked())); connect(ui->lrcSearchDownload, SIGNAL(clicked()), SLOT(lrcSearchDownloadClicked())); connect(ui->topTitleCloseButton, SIGNAL(clicked()), SLOT(close())); connect(ui->closeButton, SIGNAL(clicked()), SLOT(close())); connect(ui->label_checkBox, SIGNAL(clicked(bool)), ui->tableWidget, SLOT(setSelectedAllItems(bool))); connect(ui->tableWidget, SIGNAL(resolvedSuccess()), SLOT(lrcSearchFinished())); connect(ui->tableWidget, SIGNAL(lrcDownloadStateChanged(QString)), SLOT(lrcDownloadStateChanged(QString))); connect(ui->tableWidget, SIGNAL(restartSearchQuery(QString)), SLOT(setCurrentSongName(QString))); }
void MusicWebMusicRadioWidget::startToPlay() { SongRadioInfo info; if(m_songsThread) { info = m_songsThread->getMusicSongInfo(); } if(info.m_songUrl.isEmpty()) { return; } delete m_radio; m_radio = new MusicCoreMPlayer(this); connect(m_radio, SIGNAL(positionChanged(qint64)), SLOT(positionChanged(qint64))); connect(m_radio, SIGNAL(durationChanged(qint64)), SLOT(durationChanged(qint64))); m_radio->setMedia(MusicCoreMPlayer::MusicCategory, info.m_songUrl, -1); m_radio->setVolume(ui->volumeSlider->value()); QString name = LRC_DOWNLOAD_AL + info.m_artistName + " - " + info.m_songName + LRC_FILE; if(!QFile::exists(name)) { MusicTextDownLoadThread* lrcDownload = new MusicTextDownLoadThread(info.m_lrcUrl, name, MusicDownLoadThreadAbstract::Download_Lrc, this); connect(lrcDownload, SIGNAL(musicDownLoadFinished(QString)), SLOT(lrcDownloadStateChanged())); lrcDownload->startToDownload(); } else { lrcDownloadStateChanged(); } name = ART_DOWNLOAD_AL + info.m_artistName + SKN_FILE; if(!QFile::exists(name)) { MusicDataDownloadThread *picDwonload = new MusicDataDownloadThread(info.m_songPicUrl, name, MusicDownLoadThreadAbstract::Download_SmlBG, this); connect(picDwonload, SIGNAL(musicDownLoadFinished(QString)), SLOT(picDownloadStateChanged())); picDwonload->startToDownload(); } else { picDownloadStateChanged(); } }
void MusicLrcSearchTableWidget::musicDownloadLocal(int row) { if(row < 0) { MusicMessageBox message; message.setText(tr("Please Select One Item First!")); message.exec(); return; } MusicSongInfomations musicSongInfos(m_downLoadManager->getMusicSongInfo()); MusicTextDownLoadThread* lrcDownload = new MusicTextDownLoadThread(musicSongInfos[row].m_lrcUrl, LRC_DOWNLOAD_AL + m_currentSongName + LRC_FILE, Download_Lrc, this); connect(lrcDownload, SIGNAL(musicDownLoadFinished(QString)), SIGNAL(lrcDownloadStateChanged(QString))); lrcDownload->startToDownload(); }
void MusicLrcSearchTableWidget::musicDownloadLocal(int row) { if(row < 0 || (row >= rowCount() - 1)) { MusicMessageBox message; message.setText(tr("Please Select One Item First!")); message.exec(); return; } MusicObject::MusicSongInformations musicSongInfos(m_downLoadManager->getMusicSongInfos()); ///download lrc MusicDownLoadThreadAbstract *d = M_DOWNLOAD_QUERY_PTR->getDownloadLrcThread(musicSongInfos[row].m_lrcUrl, MusicUtils::Core::lrcPrefix() + m_downLoadManager->getSearchedText() + LRC_FILE, MusicDownLoadThreadAbstract::DownloadLrc, this); connect(d, SIGNAL(downLoadDataChanged(QString)), SIGNAL(lrcDownloadStateChanged(QString))); d->startToDownload(); }