void MusicSongSearchOnlineTableWidget::startSearchQuery(const QString &text) { if(!M_NETWORK->isOnline()) { //no network connection emit showDownLoadInfoFor(MusicObject::DisConnection); return; } //////////////////////////////////////////////// MusicSearchRecord record; MusicLocalSongSearchRecordObject search(this); if(!search.readSearchXMLConfig()) { return; } search.readSearchConfig( record ); record.m_names.insert(0, text); record.m_times.insert(0, QString::number(QDateTime::currentMSecsSinceEpoch())); search.writeSearchConfig( record ); //////////////////////////////////////////////// QString currentQuality; emit getQualityString(currentQuality); if(!currentQuality.isEmpty()) { m_downLoadManager->setSearchQuality(currentQuality); } m_downLoadManager->startSearchSong(MusicDownLoadQueryThreadAbstract::MusicQuery, m_searchText = text); }
void MusicVideoTableWidget::startSearchQuery(const QString &text) { if(!M_NETWORK->isOnline()) { //no network connection emit showDownLoadInfoFor(MusicObject::DisConnection); return; } m_downLoadManager->startSearchSong(MusicDownLoadQueryThreadAbstract::MovieQuery, text); }
void MusicLrcSearchTableWidget::startSearchQuery(const QString &text) { if(!M_NETWORK->isOnline()) { //no network connection emit showDownLoadInfoFor(MusicObject::DisConnection); return; } m_currentSongName = text; m_downLoadManager->startSearchSong(MusicQuery, text); }
void MusicDownloadStatusLabel::musicCheckHasLrcAlready() { if(!M_NETWORK->isOnline()) { ///no network connection showDownLoadInfoFor(MusicObject::DisConnection); return; } else if( checkSettingParameterValue() ) { ///Check there is no opening lyrics display mode if( m_parentWidget->checkMusicListCurrentIndex() ) { return; } QString filename = m_parentWidget->getCurrentFileName(); ///Check if the file exists if( QFile::exists(LRC_DOWNLOAD_AL + filename + LRC_FILE) || QFile::exists(LRC_DOWNLOAD_AL + filename + KRC_FILE) ) { return; } if(m_downloadLrcThread) { delete m_downloadLrcThread; m_downloadLrcThread = nullptr; } ///Start the request query #ifndef USE_MULTIPLE_QUERY m_downloadLrcThread = new MusicDownLoadQuerySingleThread(this); #else m_downloadLrcThread = new MusicDownLoadQueryMultipleThread(this); #endif m_downloadLrcThread->startSearchSong(MusicDownLoadQueryThreadAbstract::MusicQuery, filename); connect(m_downloadLrcThread, SIGNAL(resolvedSuccess()), SLOT(musicHaveNoLrcAlready())); showDownLoadInfoFor(MusicObject::Buffing); } }
void MusicLrcSearchTableWidget::startSearchQuery(const QString &text) { if(!M_NETWORK_PTR->isOnline()) //no network connection { clearAllItems(); emit showDownLoadInfoFor(MusicObject::DW_DisConnection); return; } MusicQueryItemTableWidget::startSearchQuery(text); connect(m_downLoadManager, SIGNAL(downLoadDataChanged(QString)), SIGNAL(resolvedSuccess())); m_loadingLabel->run(true); m_downLoadManager->startToSearch(MusicDownLoadQueryThreadAbstract::LrcQuery, text); }
void MusicSongSearchOnlineTableWidget::addSearchMusicToPlayList(int row) { if(!M_NETWORK->isOnline()) { //no network connection emit showDownLoadInfoFor(MusicObject::DisConnection); return; } if(row < 0) { MusicMessageBox message; message.setText(tr("Please Select One Item First!")); message.exec(); return; } emit showDownLoadInfoFor(MusicObject::DownLoading); MusicSongInfomations musicSongInfos(m_downLoadManager->getMusicSongInfos()); MusicSongInfomation musicSongInfo = musicSongInfos[row]; MusicSongAttribute musicSongAttr = musicSongInfo.m_songAttrs.first(); QString musicSong = item(row, 2)->toolTip() + " - " + item(row, 1)->toolTip(); QString downloadName = QString("%1%2.%3").arg(MUSIC_DOWNLOAD_AL) .arg(musicSong).arg(musicSongAttr.m_format); MusicDataDownloadThread *downSong = new MusicDataDownloadThread( musicSongAttr.m_url, downloadName, MusicDownLoadThreadAbstract::Download_Music, this); downSong->startToDownload(); (new MusicTextDownLoadThread(musicSongInfo.m_lrcUrl, LRC_DOWNLOAD_AL + musicSong + LRC_FILE, MusicDownLoadThreadAbstract::Download_Lrc, this))->startToDownload(); (new MusicData2DownloadThread(musicSongInfo.m_smallPicUrl, ART_DOWNLOAD_AL + musicSongInfo.m_singerName + SKN_FILE, MusicDownLoadThreadAbstract::Download_SmlBG, this))->startToDownload(); ///download big picture (new MusicBgThemeDownload(musicSongInfo.m_singerName, musicSongInfo.m_singerName, this))->startToDownload(); emit muiscSongToPlayListChanged( musicSong, item(row, 3)->text(), musicSongAttr.m_format); }
void MusicDownloadStatusLabel::musicHaveNoLrcAlready() { if(!M_NETWORK->isOnline()) { //no network connection showDownLoadInfoFor(MusicObject::DisConnection); return; } MusicSongInfomations musicSongInfos(m_downloadLrcThread->getMusicSongInfos()); if(!musicSongInfos.isEmpty()) { QString filename = m_parentWidget->getCurrentFileName(); int count = filename.split('-').count(); QString artistName = filename.split('-').front().trimmed(); QString songName = filename.split('-').back().trimmed(); MusicSongInfomation musicSongInfo = musicSongInfos.first(); foreach(MusicSongInfomation var, musicSongInfos) { if( var.m_singerName.contains(artistName, Qt::CaseInsensitive) && var.m_songName.contains(songName, Qt::CaseInsensitive) ) { musicSongInfo = var; break; } } ///download lrc MusicTextDownLoadThread* lrc = new MusicTextDownLoadThread(musicSongInfo.m_lrcUrl, LRC_DOWNLOAD_AL + filename + LRC_FILE, MusicDownLoadThreadAbstract::Download_Lrc, this); lrc->startToDownload(); ///download art picture #ifndef USE_MULTIPLE_QUERY (new MusicData2DownloadThread(musicSongInfo.m_smallPicUrl, ART_DOWNLOAD_AL + artistName + SKN_FILE, MusicDownLoadThreadAbstract::Download_SmlBG, this))->startToDownload(); #else (new MusicDataDownloadThread(musicSongInfo.m_smallPicUrl, ART_DOWNLOAD_AL + artistName + SKN_FILE, MusicDownLoadThreadAbstract::Download_SmlBG, this))->startToDownload(); #endif ///download big picture (new MusicBackgroundDownload( count == 1 ? musicSongInfo.m_singerName : artistName, artistName, this))->startToDownload(); }
void MusicDownloadStatusLabel::networkConnectionStateChanged(bool state) { showDownLoadInfoFor(state ? MusicObject::Null : MusicObject::DisConnection); }
void MusicConnectionPool::poolConnect(const QString &from, const QString &to) { QObject *first = m_para.value(from); QObject *second = m_para.value(to); if(first == nullptr || second == nullptr) { return; } if(from == "MusicPlayer" && to == "MusicLrcMakerWidget" ) { QObject::connect(first, SIGNAL(positionChanged(qint64)), second, SLOT(setCurrentPosition(qint64))); } if( (from == "MusicLocalSongsManagerWidget" && to == "MusicApplication") || (from == "MusicMyDownloadRecordWidget" && to == "MusicApplication") ) { QObject::connect(first, SIGNAL(addSongToPlay(QStringList)), second, SLOT(addSongToPlayList(QStringList))); } if(from == "MusicTimerWidget" && to == "MusicApplicationObject" ) { QObject::connect(first, SIGNAL(timerParameterChanged()), second, SLOT(musicToolSetsParameter())); } if( (from == "MusicToolSetsWidget" && to == "MusicApplication") || (from == "MusicApplicationObject" && to == "MusicApplication") ) { QObject::connect(first, SIGNAL(getCurrentPlayList(QStringList&)), second, SLOT(getCurrentPlayList(QStringList&))); } if(from == "MusicEqualizerDialog" && to == "MusicPlayer" ) { QObject::connect(first, SIGNAL(setEqEffect(MIntList)), second, SLOT(setEqEffect(MIntList))); QObject::connect(first, SIGNAL(setEnaleEffect(bool)), second, SLOT(setEnaleEffect(bool))); } if(from == "MusicSongSearchOnlineTableWidget" && to == "MusicDownloadStatusLabel" ) { QObject::connect(first, SIGNAL(showDownLoadInfoFor(MusicObject::DownLoadType)), second, SLOT(showDownLoadInfoFor(MusicObject::DownLoadType))); } if(from == "MusicBgThemeDownload" && to == "MusicTopAreaWidget" ) { QObject::connect(first, SIGNAL(musicBgDownloadFinished()), second, SLOT(musicBgThemeDownloadFinished())); } if(from == "MusicSongSearchOnlineTableWidget" && to == "MusicSongsSummarizied" ) { QObject::connect(first, SIGNAL(muiscSongToPlayListChanged(QString,QString,QString)), second, SLOT(addNetMusicSongToList(QString,QString,QString))); } if(from == "MusicSongSearchOnlineTableWidget" && to == "MusicRightAreaWidget" ) { QObject::connect(first, SIGNAL(restartSearchQuery(QString)), second, SLOT(musicResearchButtonSearched(QString))); } if(from == "MusicNetworkThread" && to == "MusicDownloadStatusLabel" ) { QObject::connect(first, SIGNAL(networkConnectionStateChanged(bool)), second, SLOT(networkConnectionStateChanged(bool))); } if(from == "MusicSongSearchOnlineTableWidget" && to == "MusicQualityChoiceTableWidget" ) { QObject::connect(first, SIGNAL(getQualityString(QString&)), second, SLOT(getQualityString(QString&))); QObject::connect(second, SIGNAL(researchQueryByQuality()), first, SLOT(researchQueryByQuality())); } if(from == "MusicSongsListPlayWidget" && to == "MusicRightAreaWidget" ) { QObject::connect(first, SIGNAL(videoButtonClicked(QString)), second, SLOT(musicVideoButtonSearched(QString))); } if(from == "MusicVideoControl" && to == "MusicRightAreaWidget" ) { QObject::connect(first, SIGNAL(musicVideoSetPopup(bool)), second, SLOT(musicVideoSetPopup(bool))); QObject::connect(first, SIGNAL(musicVideoFullscreen(bool)), second, SLOT(musicVideoFullscreen(bool))); } if(from == "MusicApplicationObject" && to == "MusicEnhancedWidget" ) { QObject::connect(first, SIGNAL(enhancedMusicChanged(int)), second, SLOT(setEnhancedMusicConfig(int))); } if(from == "MusicVideoControl" && to == "MusicVideoTableWidget" ) { QObject::connect(first, SIGNAL(getMusicMvInfo(MusicSongAttributes&)), second, SLOT(getMusicMvInfo(MusicSongAttributes&))); QObject::connect(first, SIGNAL(downloadLocalByControl()), second, SLOT(downloadLocalFromControl())); } }
void MusicConnectionPool::poolConnect(const QString &from, const QString &to) { QObject *first = m_para.value(from); QObject *second = m_para.value(to); if(first == nullptr || second == nullptr) { return; } if(from == MusicNetworkThread::getClassName() && to == MusicDownloadStatusObject::getClassName()) { QObject::connect(first, SIGNAL(networkConnectionStateChanged(bool)), second, SLOT(networkConnectionStateChanged(bool))); } #ifndef MUSIC_MOBILE else if(from == MusicPlayer::getClassName() && to == MusicLrcMakerWidget::getClassName()) { QObject::connect(first, SIGNAL(positionChanged(qint64)), second, SLOT(positionChanged(qint64))); QObject::connect(first, SIGNAL(durationChanged(qint64)), second, SLOT(durationChanged(qint64))); } else if((from == MusicLocalSongsManagerWidget::getClassName() && to == MusicSongsSummariziedWidget::getClassName()) || (from == MusicSongCheckToolsDuplicateTableWidget::getClassName() && to == MusicSongsSummariziedWidget::getClassName()) || (from == MusicSongCheckToolsQualityTableWidget::getClassName() && to == MusicSongsSummariziedWidget::getClassName()) || (from == MusicDownloadAbstractTableWidget::getClassName() && to == MusicSongsSummariziedWidget::getClassName())) { QObject::connect(first, SIGNAL(addSongToPlay(QStringList)), second, SLOT(addSongToPlayList(QStringList))); } else if(from == MusicEqualizerDialog::getClassName() && to == MusicPlayer::getClassName()) { QObject::connect(first, SIGNAL(setEqEffect(MusicObject::MIntList)), second, SLOT(setEqEffect(MusicObject::MIntList))); QObject::connect(first, SIGNAL(setEnaleEffect(bool)), second, SLOT(setEnaleEffect(bool))); } else if(from == MusicEqualizerDialog::getClassName() && to == MusicSoundEffectsWidget::getClassName()) { QObject::connect(first, SIGNAL(setEnaleEffect(bool)), second, SLOT(equalizerButtonChanged(bool))); } else if(from == MusicSoundEffectsWidget::getClassName() && to == MusicPlayer::getClassName()) { QObject::connect(first, SIGNAL(volumeChanged(int)), second, SLOT(setSoundEffectVolume(int))); QObject::connect(first, SIGNAL(setEqInformation()), second, SLOT(setEqInformation())); } else if(from == MusicSongSearchOnlineTableWidget::getClassName() && to == MusicDownloadStatusObject::getClassName()) { QObject::connect(first, SIGNAL(showDownLoadInfoFor(MusicObject::DownLoadMode)), second, SLOT(showDownLoadInfoFor(MusicObject::DownLoadMode))); } else if((from == MusicSongSearchOnlineTableWidget::getClassName() && to == MusicSongsSummariziedWidget::getClassName()) || (from == MusicQueryFoundTableWidget::getClassName() && to == MusicSongsSummariziedWidget::getClassName())) { QObject::connect(first, SIGNAL(muiscSongToPlayListChanged(QString,QString,QString,bool)), second, SLOT(addNetMusicSongToList(QString,QString,QString,bool))); } else if(from == MusicLrcLocalLinkWidget::getClassName() && to == MusicDownloadStatusObject::getClassName()) { QObject::connect(first, SIGNAL(currentLrcChanged(QString)), second, SLOT(showDownLoadInfoFinished(QString))); } else if(from == MusicVideoQualityPopWidget::getClassName() && to == MusicVideoTableWidget::getClassName()) { QObject::connect(first, SIGNAL(getMusicMvInfo(MusicObject::MusicSongAttributes&)), second, SLOT(getMusicMvInfo(MusicObject::MusicSongAttributes&))); } else if((from == MusicConnectTransferWidget::getClassName() && to == MusicSongsSummariziedWidget::getClassName()) || (from == MusicSongCheckToolsWidget::getClassName() && to == MusicSongsSummariziedWidget::getClassName())) { QObject::connect(first, SIGNAL(getMusicLists(MusicSongItems&)), second, SLOT(getMusicLists(MusicSongItems&))); } #endif }