/* * Cantata * * Copyright (c) 2011 Craig Drummond * * ---- * * 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 "folderpage.h" #include "mpdconnection.h" #include #include #ifdef ENABLE_KDE_SUPPORT #include #include #include #else #include #endif FolderPage::FolderPage(MainWindow *p) : QWidget(p) { setupUi(this); addToPlaylist->setDefaultAction(p->addToPlaylistAction); replacePlaylist->setDefaultAction(p->replacePlaylistAction); libraryUpdate->setDefaultAction(p->updateDbAction); addToPlaylist->setAutoRaise(true); replacePlaylist->setAutoRaise(true); libraryUpdate->setAutoRaise(true); addToPlaylist->setEnabled(false); replacePlaylist->setEnabled(false); #ifdef ENABLE_KDE_SUPPORT view->setTopText(i18n("Folders")); #else view->setTopText(tr("Folders")); #endif view->addAction(p->addToPlaylistAction); view->addAction(p->replacePlaylistAction); view->addAction(p->addToStoredPlaylistAction); proxy.setSourceModel(&model); view->setModel(&proxy); view->init(p->replacePlaylistAction, p->addToPlaylistAction); connect(MPDConnection::self(), SIGNAL(dirViewUpdated(DirViewItemRoot *)), &model, SLOT(updateDirView(DirViewItemRoot *))); connect(MPDConnection::self(), SIGNAL(updatingFileList()), view, SLOT(showSpinner())); connect(MPDConnection::self(), SIGNAL(updatedFileList()), view, SLOT(hideSpinner())); connect(this, SIGNAL(listAll()), MPDConnection::self(), SLOT(listAll())); connect(this, SIGNAL(add(const QStringList &)), MPDConnection::self(), SLOT(add(const QStringList &))); connect(this, SIGNAL(addSongsToPlaylist(const QString &, const QStringList &)), MPDConnection::self(), SLOT(addToPlaylist(const QString &, const QStringList &))); connect(view, SIGNAL(searchItems()), this, SLOT(searchItems())); connect(view, SIGNAL(itemsSelected(bool)), addToPlaylist, SLOT(setEnabled(bool))); connect(view, SIGNAL(itemsSelected(bool)), replacePlaylist, SLOT(setEnabled(bool))); connect(view, SIGNAL(doubleClicked(const QModelIndex &)), this, SLOT(itemDoubleClicked(const QModelIndex &))); } FolderPage::~FolderPage() { } void FolderPage::refresh() { view->showSpinner(); emit listAll(); } void FolderPage::clear() { model.clear(); } void FolderPage::searchItems() { if (view->searchText().isEmpty()) { proxy.setFilterRegExp(""); return; } proxy.setFilterRegExp(view->searchText()); } void FolderPage::itemDoubleClicked(const QModelIndex &) { const QModelIndexList selected = view->selectedIndexes(); if (1!=selected.size()) { return; //doubleclick should only have one selected item } DirViewItem *item = static_cast(proxy.mapToSource(selected.at(0)).internalPointer()); if (DirViewItem::Type_File==item->type()) { addSelectionToPlaylist(); } } void FolderPage::addSelectionToPlaylist(const QString &name) { const QModelIndexList selected = view->selectedIndexes(); if (0==selected.size()) { return; } QModelIndexList mapped; foreach (const QModelIndex &idx, selected) { mapped.append(proxy.mapToSource(idx)); } QStringList files=model.filenames(mapped); if (!files.isEmpty()) { if (name.isEmpty()) { emit add(files); } else { emit addSongsToPlaylist(name, files); } view->clearSelection(); } } QStringList FolderPage::walk(QModelIndex rootItem) { QStringList files; DirViewItem *item = static_cast(proxy.mapToSource(rootItem).internalPointer()); if (DirViewItem::Type_File==item->type()) { return QStringList(item->fullName()); } for (int i = 0; ; i++) { QModelIndex current = rootItem.child(i, 0); if (!current.isValid()) return files; QStringList tmp = walk(current); for (int j = 0; j < tmp.size(); j++) { if (!files.contains(tmp.at(j))) files << tmp.at(j); } } return files; }