Files
cantata/gui/searchpage.cpp
craig.p.drummond addfca835a Update (c) year
2014-01-06 19:32:05 +00:00

225 lines
7.1 KiB
C++

/*
* Cantata
*
* Copyright (c) 2011-2014 Craig Drummond <craig.p.drummond@gmail.com>
*
* ----
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "searchpage.h"
#include "mpdconnection.h"
#include "localize.h"
#include "settings.h"
#include "stdactions.h"
#include "utils.h"
#include "icon.h"
#include "qtplural.h"
SearchPage::SearchPage(QWidget *p)
: QWidget(p)
, state(Initial)
, model(this)
, proxy(this)
{
setupUi(this);
addToPlayQueue->setDefaultAction(StdActions::self()->addToPlayQueueAction);
replacePlayQueue->setDefaultAction(StdActions::self()->replacePlayQueueAction);
view->addAction(StdActions::self()->addToPlayQueueAction);
view->addAction(StdActions::self()->addRandomToPlayQueueAction);
view->addAction(StdActions::self()->replacePlayQueueAction);
view->addAction(StdActions::self()->addWithPriorityAction);
view->addAction(StdActions::self()->addToStoredPlaylistAction);
#ifdef TAGLIB_FOUND
#ifdef ENABLE_DEVICES_SUPPORT
view->addAction(StdActions::self()->copyToDeviceAction);
#endif
#endif // TAGLIB_FOUND
connect(this, SIGNAL(add(const QStringList &, bool, quint8)), MPDConnection::self(), SLOT(add(const QStringList &, bool, quint8)));
connect(this, SIGNAL(addSongsToPlaylist(const QString &, const QStringList &)), MPDConnection::self(), SLOT(addToPlaylist(const QString &, const QStringList &)));
connect(&model, SIGNAL(searching()), view, SLOT(showSpinner()));
connect(&model, SIGNAL(searched()), view, SLOT(hideSpinner()));
connect(&model, SIGNAL(statsUpdated(int, quint32)), this, SLOT(statsUpdated(int, quint32)));
connect(view, SIGNAL(itemsSelected(bool)), this, SLOT(controlActions()));
connect(view, SIGNAL(doubleClicked(const QModelIndex &)), this, SLOT(itemDoubleClicked(const QModelIndex &)));
connect(view, SIGNAL(searchItems()), this, SLOT(searchItems()));
connect(MPDConnection::self(), SIGNAL(stateChanged(bool)), this, SLOT(setSearchCategories()));
proxy.setSourceModel(&model);
view->setModel(&proxy);
view->setMode(ItemView::Mode_List);
view->setPermanentSearch();
setSearchCategories();
view->setSearchCategory(Settings::self()->searchCategory());
statsUpdated(0, 0);
}
SearchPage::~SearchPage()
{
}
void SearchPage::showEvent(QShowEvent *e)
{
view->focusSearch();
QWidget::showEvent(e);
}
void SearchPage::save()
{
Settings::self()->saveSearchCategory(view->searchCategory());
}
void SearchPage::refresh()
{
model.refresh();
}
void SearchPage::clear()
{
model.clear();
}
QStringList SearchPage::selectedFiles(bool allowPlaylists) const
{
QModelIndexList selected = view->selectedIndexes();
if (selected.isEmpty()) {
return QStringList();
}
QModelIndexList mapped;
foreach (const QModelIndex &idx, selected) {
mapped.append(proxy.mapToSource(idx));
}
return model.filenames(mapped, allowPlaylists);
}
QList<Song> SearchPage::selectedSongs(bool allowPlaylists) const
{
QModelIndexList selected = view->selectedIndexes();
if (selected.isEmpty()) {
return QList<Song>();
}
QModelIndexList mapped;
foreach (const QModelIndex &idx, selected) {
mapped.append(proxy.mapToSource(idx));
}
return model.songs(mapped, allowPlaylists);
}
void SearchPage::addSelectionToPlaylist(const QString &name, bool replace, quint8 priorty)
{
QStringList files=selectedFiles(true);
if (!files.isEmpty()) {
if (name.isEmpty()) {
emit add(files, replace, priorty);
} else {
emit addSongsToPlaylist(name, files);
}
view->clearSelection();
}
}
#ifdef ENABLE_DEVICES_SUPPORT
void SearchPage::addSelectionToDevice(const QString &udi)
{
QList<Song> songs=selectedSongs();
if (!songs.isEmpty()) {
emit addToDevice(QString(), udi, songs);
view->clearSelection();
}
}
#endif
void SearchPage::searchItems()
{
QString text=view->searchText().trimmed();
if (text.isEmpty()) {
model.clear();
} else {
model.search(view->searchCategory(), text);
}
}
void SearchPage::itemDoubleClicked(const QModelIndex &)
{
const QModelIndexList selected = view->selectedIndexes(false); // Dont need sorted selection here...
if (1!=selected.size()) {
return; //doubleclick should only have one selected item
}
addSelectionToPlaylist();
}
void SearchPage::controlActions()
{
QModelIndexList selected=view->selectedIndexes(false); // Dont need sorted selection here...
bool enable=selected.count()>0;
StdActions::self()->addToPlayQueueAction->setEnabled(enable);
StdActions::self()->addWithPriorityAction->setEnabled(enable);
StdActions::self()->replacePlayQueueAction->setEnabled(enable);
StdActions::self()->addToStoredPlaylistAction->setEnabled(enable);
StdActions::self()->addRandomToPlayQueueAction->setEnabled(false);
}
void SearchPage::setSearchCategories()
{
bool composerSupported=MPDConnection::self()->composerTagSupported();
if ( (composerSupported && ComposerSupported==state) || (!composerSupported && ComposerNotSupported==state)) {
// No changes to be made!
return;
}
state=composerSupported ? ComposerSupported : ComposerNotSupported;
QList<QPair<QString, QString> > categories;
categories << QPair<QString, QString>(i18n("Artist:"), QLatin1String("artist"));
if (composerSupported) {
categories << QPair<QString, QString>(i18n("Composer:"), QLatin1String("composer"));
}
categories << QPair<QString, QString>(i18n("Album:"), QLatin1String("album"))
<< QPair<QString, QString>(i18n("Title:"), QLatin1String("title"))
<< QPair<QString, QString>(i18n("Genre:"), QLatin1String("genre"))
<< QPair<QString, QString>(i18n("Date:"), QLatin1String("date"))
<< QPair<QString, QString>(i18n("File:"), QLatin1String("file"))
<< QPair<QString, QString>(i18n("Any:"), QLatin1String("any"));
view->setSearchCategories(categories);
}
void SearchPage::statsUpdated(int songs, quint32 time)
{
if (0==songs) {
statsLabel->setText(i18n("No tracks found."));
return;
}
#ifdef ENABLE_KDE_SUPPORT
statsLabel->setText(i18np("1 Track (%2)", "%1 Tracks (%2)", songs, Utils::formatDuration(time)));
#else
statsLabel->setText(QTP_TRACKS_DURATION_STR(songs, Utils::formatDuration(time)));
#endif
}