327
src/smartplaylists/smartplaylistquerywizardplugin.cpp
Normal file
327
src/smartplaylists/smartplaylistquerywizardplugin.cpp
Normal file
@@ -0,0 +1,327 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2010, David Sansome <me@davidsansome.com>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <QWizardPage>
|
||||
#include <QList>
|
||||
#include <QString>
|
||||
#include <QVBoxLayout>
|
||||
#include <QScrollBar>
|
||||
|
||||
#include "core/logging.h"
|
||||
#include "playlistquerygenerator.h"
|
||||
#include "smartplaylistquerywizardplugin.h"
|
||||
#include "smartplaylistsearchtermwidget.h"
|
||||
#include "ui_smartplaylistquerysearchpage.h"
|
||||
#include "ui_smartplaylistquerysortpage.h"
|
||||
|
||||
class SmartPlaylistQueryWizardPlugin::SearchPage : public QWizardPage {
|
||||
|
||||
friend class SmartPlaylistQueryWizardPlugin;
|
||||
|
||||
public:
|
||||
SearchPage(QWidget *parent = 0)
|
||||
: QWizardPage(parent), ui_(new Ui_SmartPlaylistQuerySearchPage) {
|
||||
ui_->setupUi(this);
|
||||
}
|
||||
|
||||
bool isComplete() const {
|
||||
if (ui_->type->currentIndex() == 2) // All songs
|
||||
return true;
|
||||
|
||||
for (SmartPlaylistSearchTermWidget *widget : terms_) {
|
||||
if (!widget->Term().is_valid()) return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
QVBoxLayout *layout_;
|
||||
QList<SmartPlaylistSearchTermWidget*> terms_;
|
||||
SmartPlaylistSearchTermWidget *new_term_;
|
||||
|
||||
SmartPlaylistSearchPreview *preview_;
|
||||
|
||||
std::unique_ptr<Ui_SmartPlaylistQuerySearchPage> ui_;
|
||||
};
|
||||
|
||||
class SmartPlaylistQueryWizardPlugin::SortPage : public QWizardPage {
|
||||
public:
|
||||
SortPage(SmartPlaylistQueryWizardPlugin *plugin, QWidget *parent, int next_id)
|
||||
: QWizardPage(parent), next_id_(next_id), plugin_(plugin) {}
|
||||
|
||||
void showEvent(QShowEvent*) { plugin_->UpdateSortPreview(); }
|
||||
|
||||
int nextId() const { return next_id_; }
|
||||
int next_id_;
|
||||
|
||||
SmartPlaylistQueryWizardPlugin *plugin_;
|
||||
};
|
||||
|
||||
SmartPlaylistQueryWizardPlugin::SmartPlaylistQueryWizardPlugin(Application *app, CollectionBackend *collection, QObject *parent)
|
||||
: SmartPlaylistWizardPlugin(app, collection, parent),
|
||||
search_page_(nullptr),
|
||||
previous_scrollarea_max_(0) {}
|
||||
|
||||
SmartPlaylistQueryWizardPlugin::~SmartPlaylistQueryWizardPlugin() {}
|
||||
|
||||
QString SmartPlaylistQueryWizardPlugin::name() const { return tr("Collection search"); }
|
||||
|
||||
QString SmartPlaylistQueryWizardPlugin::description() const {
|
||||
return tr("Find songs in your collection that match the criteria you specify.");
|
||||
}
|
||||
|
||||
int SmartPlaylistQueryWizardPlugin::CreatePages(QWizard *wizard, int finish_page_id) {
|
||||
|
||||
// Create the UI
|
||||
search_page_ = new SearchPage(wizard);
|
||||
|
||||
QWizardPage *sort_page = new SortPage(this, wizard, finish_page_id);
|
||||
sort_ui_.reset(new Ui_SmartPlaylistQuerySortPage);
|
||||
sort_ui_->setupUi(sort_page);
|
||||
|
||||
sort_ui_->limit_value->setValue(PlaylistGenerator::kDefaultLimit);
|
||||
|
||||
connect(search_page_->ui_->type, SIGNAL(currentIndexChanged(int)), SLOT(SearchTypeChanged()));
|
||||
|
||||
// Create the new search term widget
|
||||
search_page_->new_term_ = new SmartPlaylistSearchTermWidget(collection_, search_page_);
|
||||
search_page_->new_term_->SetActive(false);
|
||||
connect(search_page_->new_term_, SIGNAL(Clicked()), SLOT(AddSearchTerm()));
|
||||
|
||||
// Add an empty initial term
|
||||
search_page_->layout_ = static_cast<QVBoxLayout*>(search_page_->ui_->terms_scroll_area_content->layout());
|
||||
search_page_->layout_->addWidget(search_page_->new_term_);
|
||||
AddSearchTerm();
|
||||
|
||||
// Ensure that the terms are scrolled to the bottom when a new one is added
|
||||
connect(search_page_->ui_->terms_scroll_area->verticalScrollBar(), SIGNAL(rangeChanged(int, int)), this, SLOT(MoveTermListToBottom(int, int)));
|
||||
|
||||
// Add the preview widget at the bottom of the search terms page
|
||||
QVBoxLayout *terms_page_layout = static_cast<QVBoxLayout*>(search_page_->layout());
|
||||
terms_page_layout->addStretch();
|
||||
search_page_->preview_ = new SmartPlaylistSearchPreview(search_page_);
|
||||
search_page_->preview_->set_application(app_);
|
||||
search_page_->preview_->set_collection(collection_);
|
||||
terms_page_layout->addWidget(search_page_->preview_);
|
||||
|
||||
// Add sort field texts
|
||||
for (int i = 0; i < SmartPlaylistSearchTerm::FieldCount; ++i) {
|
||||
const SmartPlaylistSearchTerm::Field field = SmartPlaylistSearchTerm::Field(i);
|
||||
const QString field_name = SmartPlaylistSearchTerm::FieldName(field);
|
||||
sort_ui_->field_value->addItem(field_name);
|
||||
}
|
||||
connect(sort_ui_->field_value, SIGNAL(currentIndexChanged(int)), SLOT(UpdateSortOrder()));
|
||||
UpdateSortOrder();
|
||||
|
||||
// Set the sort and limit radio buttons back to their defaults - they would
|
||||
// have been changed by setupUi
|
||||
sort_ui_->random->setChecked(true);
|
||||
sort_ui_->limit_none->setChecked(true);
|
||||
|
||||
// Set up the preview widget that's already at the bottom of the sort page
|
||||
sort_ui_->preview->set_application(app_);
|
||||
sort_ui_->preview->set_collection(collection_);
|
||||
connect(sort_ui_->field, SIGNAL(toggled(bool)), SLOT(UpdateSortPreview()));
|
||||
connect(sort_ui_->field_value, SIGNAL(currentIndexChanged(int)), SLOT(UpdateSortPreview()));
|
||||
connect(sort_ui_->limit_limit, SIGNAL(toggled(bool)), SLOT(UpdateSortPreview()));
|
||||
connect(sort_ui_->limit_none, SIGNAL(toggled(bool)), SLOT(UpdateSortPreview()));
|
||||
connect(sort_ui_->limit_value, SIGNAL(valueChanged(int)), SLOT(UpdateSortPreview()));
|
||||
connect(sort_ui_->order, SIGNAL(currentIndexChanged(int)), SLOT(UpdateSortPreview()));
|
||||
connect(sort_ui_->random, SIGNAL(toggled(bool)), SLOT(UpdateSortPreview()));
|
||||
|
||||
// Configure the page text
|
||||
search_page_->setTitle(tr("Search terms"));
|
||||
search_page_->setSubTitle(tr("A song will be included in the playlist if it matches these conditions."));
|
||||
sort_page->setTitle(tr("Search options"));
|
||||
sort_page->setSubTitle(tr("Choose how the playlist is sorted and how many songs it will contain."));
|
||||
|
||||
// Add the pages
|
||||
const int first_page = wizard->addPage(search_page_);
|
||||
wizard->addPage(sort_page);
|
||||
return first_page;
|
||||
|
||||
}
|
||||
|
||||
void SmartPlaylistQueryWizardPlugin::SetGenerator(PlaylistGeneratorPtr g) {
|
||||
|
||||
std::shared_ptr<PlaylistQueryGenerator> gen = std::dynamic_pointer_cast<PlaylistQueryGenerator>(g);
|
||||
if (!gen) return;
|
||||
SmartPlaylistSearch search = gen->search();
|
||||
|
||||
// Search type
|
||||
search_page_->ui_->type->setCurrentIndex(search.search_type_);
|
||||
|
||||
// Search terms
|
||||
qDeleteAll(search_page_->terms_);
|
||||
search_page_->terms_.clear();
|
||||
|
||||
for (const SmartPlaylistSearchTerm& term : search.terms_) {
|
||||
AddSearchTerm();
|
||||
search_page_->terms_.last()->SetTerm(term);
|
||||
}
|
||||
|
||||
// Sort order
|
||||
if (search.sort_type_ == SmartPlaylistSearch::Sort_Random) {
|
||||
sort_ui_->random->setChecked(true);
|
||||
}
|
||||
else {
|
||||
sort_ui_->field->setChecked(true);
|
||||
sort_ui_->order->setCurrentIndex(
|
||||
search.sort_type_ == SmartPlaylistSearch::Sort_FieldAsc ? 0 : 1);
|
||||
sort_ui_->field_value->setCurrentIndex(search.sort_field_);
|
||||
}
|
||||
|
||||
// Limit
|
||||
if (search.limit_ == -1) {
|
||||
sort_ui_->limit_none->setChecked(true);
|
||||
}
|
||||
else {
|
||||
sort_ui_->limit_limit->setChecked(true);
|
||||
sort_ui_->limit_value->setValue(search.limit_);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
PlaylistGeneratorPtr SmartPlaylistQueryWizardPlugin::CreateGenerator() const {
|
||||
|
||||
std::shared_ptr<PlaylistQueryGenerator> gen(new PlaylistQueryGenerator);
|
||||
gen->Load(MakeSearch());
|
||||
|
||||
return std::static_pointer_cast<PlaylistGenerator>(gen);
|
||||
|
||||
}
|
||||
|
||||
void SmartPlaylistQueryWizardPlugin::UpdateSortOrder() {
|
||||
|
||||
const SmartPlaylistSearchTerm::Field field = SmartPlaylistSearchTerm::Field(sort_ui_->field_value->currentIndex());
|
||||
const SmartPlaylistSearchTerm::Type type = SmartPlaylistSearchTerm::TypeOf(field);
|
||||
const QString asc = SmartPlaylistSearchTerm::FieldSortOrderText(type, true);
|
||||
const QString desc = SmartPlaylistSearchTerm::FieldSortOrderText(type, false);
|
||||
|
||||
const int old_current_index = sort_ui_->order->currentIndex();
|
||||
sort_ui_->order->clear();
|
||||
sort_ui_->order->addItem(asc);
|
||||
sort_ui_->order->addItem(desc);
|
||||
sort_ui_->order->setCurrentIndex(old_current_index);
|
||||
|
||||
}
|
||||
|
||||
void SmartPlaylistQueryWizardPlugin::AddSearchTerm() {
|
||||
|
||||
SmartPlaylistSearchTermWidget *widget = new SmartPlaylistSearchTermWidget(collection_, search_page_);
|
||||
connect(widget, SIGNAL(RemoveClicked()), SLOT(RemoveSearchTerm()));
|
||||
connect(widget, SIGNAL(Changed()), SLOT(UpdateTermPreview()));
|
||||
|
||||
search_page_->layout_->insertWidget(search_page_->terms_.count(), widget);
|
||||
search_page_->terms_ << widget;
|
||||
|
||||
UpdateTermPreview();
|
||||
|
||||
}
|
||||
|
||||
void SmartPlaylistQueryWizardPlugin::RemoveSearchTerm() {
|
||||
|
||||
SmartPlaylistSearchTermWidget *widget = qobject_cast<SmartPlaylistSearchTermWidget*>(sender());
|
||||
if (!widget) return;
|
||||
|
||||
const int index = search_page_->terms_.indexOf(widget);
|
||||
if (index == -1) return;
|
||||
|
||||
search_page_->terms_.takeAt(index)->deleteLater();
|
||||
UpdateTermPreview();
|
||||
|
||||
}
|
||||
|
||||
void SmartPlaylistQueryWizardPlugin::UpdateTermPreview() {
|
||||
|
||||
SmartPlaylistSearch search = MakeSearch();
|
||||
emit search_page_->completeChanged();
|
||||
// When removing last term, update anyway the search
|
||||
if (!search.is_valid() && !search_page_->terms_.isEmpty()) return;
|
||||
|
||||
// Don't apply limits in the term page
|
||||
search.limit_ = -1;
|
||||
|
||||
search_page_->preview_->Update(search);
|
||||
|
||||
}
|
||||
|
||||
void SmartPlaylistQueryWizardPlugin::UpdateSortPreview() {
|
||||
|
||||
SmartPlaylistSearch search = MakeSearch();
|
||||
if (!search.is_valid()) return;
|
||||
|
||||
sort_ui_->preview->Update(search);
|
||||
|
||||
}
|
||||
|
||||
SmartPlaylistSearch SmartPlaylistQueryWizardPlugin::MakeSearch() const {
|
||||
|
||||
SmartPlaylistSearch ret;
|
||||
|
||||
// Search type
|
||||
ret.search_type_ = SmartPlaylistSearch::SearchType(search_page_->ui_->type->currentIndex());
|
||||
|
||||
// Search terms
|
||||
for (SmartPlaylistSearchTermWidget *widget : search_page_->terms_) {
|
||||
SmartPlaylistSearchTerm term = widget->Term();
|
||||
if (term.is_valid()) ret.terms_ << term;
|
||||
}
|
||||
|
||||
// Sort order
|
||||
if (sort_ui_->random->isChecked()) {
|
||||
ret.sort_type_ = SmartPlaylistSearch::Sort_Random;
|
||||
}
|
||||
else {
|
||||
const bool ascending = sort_ui_->order->currentIndex() == 0;
|
||||
ret.sort_type_ = ascending ? SmartPlaylistSearch::Sort_FieldAsc : SmartPlaylistSearch::Sort_FieldDesc;
|
||||
ret.sort_field_ = SmartPlaylistSearchTerm::Field(sort_ui_->field_value->currentIndex());
|
||||
}
|
||||
|
||||
// Limit
|
||||
if (sort_ui_->limit_none->isChecked())
|
||||
ret.limit_ = -1;
|
||||
else
|
||||
ret.limit_ = sort_ui_->limit_value->value();
|
||||
|
||||
return ret;
|
||||
|
||||
}
|
||||
|
||||
void SmartPlaylistQueryWizardPlugin::SearchTypeChanged() {
|
||||
|
||||
const bool all = search_page_->ui_->type->currentIndex() == 2;
|
||||
search_page_->ui_->terms_scroll_area_content->setEnabled(!all);
|
||||
|
||||
UpdateTermPreview();
|
||||
|
||||
}
|
||||
|
||||
void SmartPlaylistQueryWizardPlugin::MoveTermListToBottom(int min, int max) {
|
||||
|
||||
Q_UNUSED(min);
|
||||
// Only scroll to the bottom if a new term is added
|
||||
if (previous_scrollarea_max_ < max)
|
||||
search_page_->ui_->terms_scroll_area->verticalScrollBar()->setValue(max);
|
||||
|
||||
previous_scrollarea_max_ = max;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user