Home
last modified time | relevance | path

Searched refs:tag_fetcher_ (Results 1 – 8 of 8) sorted by relevance

/dports/audio/clementine-player/Clementine-1.4.0rc1/src/ui/
H A Dedittagdialog.cpp60 tag_fetcher_(new TagFetcher(this)), in EditTagDialog()
74 connect(tag_fetcher_, SIGNAL(ResultAvailable(Song, SongList)), in EditTagDialog()
77 connect(tag_fetcher_, SIGNAL(Progress(Song, QString)), results_dialog_, in EditTagDialog()
81 connect(results_dialog_, SIGNAL(finished(int)), tag_fetcher_, SLOT(Cancel())); in EditTagDialog()
833 tag_fetcher_->StartFetch(songs); in FetchTag()
H A Dedittagdialog.h159 TagFetcher* tag_fetcher_; variable
H A Dmainwindow.h340 std::unique_ptr<TagFetcher> tag_fetcher_; variable
H A Dmainwindow.cpp2826 if (!tag_fetcher_) { in AutoCompleteTags()
2827 tag_fetcher_.reset(new TagFetcher); in AutoCompleteTags()
2831 connect(tag_fetcher_.get(), SIGNAL(ResultAvailable(Song, SongList)), in AutoCompleteTags()
2834 connect(tag_fetcher_.get(), SIGNAL(Progress(Song, QString)), in AutoCompleteTags()
2840 tag_fetcher_.get(), SLOT(Cancel())); in AutoCompleteTags()
2863 tag_fetcher_->StartFetch(songs); in AutoCompleteTags()
/dports/audio/strawberry/strawberry-1.0.0/src/dialogs/
H A Dedittagdialog.h183 TagFetcher *tag_fetcher_; variable
H A Dedittagdialog.cpp109 tag_fetcher_(new TagFetcher(this)), in EditTagDialog()
124 …QObject::connect(tag_fetcher_, &TagFetcher::ResultAvailable, results_dialog_, &TrackSelectionDialo… in EditTagDialog()
125 …QObject::connect(tag_fetcher_, &TagFetcher::Progress, results_dialog_, &TrackSelectionDialog::Fetc… in EditTagDialog()
127 …QObject::connect(results_dialog_, &TrackSelectionDialog::finished, tag_fetcher_, &TagFetcher::Canc… in EditTagDialog()
1278 tag_fetcher_->StartFetch(songs); in FetchTag()
/dports/audio/strawberry/strawberry-1.0.0/src/core/
H A Dmainwindow.h333 std::unique_ptr<TagFetcher> tag_fetcher_; variable
H A Dmainwindow.cpp2906 if (!tag_fetcher_) {
2907 tag_fetcher_ = std::make_unique<TagFetcher>();
2911 …QObject::connect(tag_fetcher_.get(), &TagFetcher::ResultAvailable, track_selection_dialog_.get(), …
2912 …QObject::connect(tag_fetcher_.get(), &TagFetcher::Progress, track_selection_dialog_.get(), &TrackS…
2914 …QObject::connect(track_selection_dialog_.get(), &TrackSelectionDialog::finished, tag_fetcher_.get(…
2935 tag_fetcher_->StartFetch(songs);