/* * QMPDClient - An MPD client written in Qt 4. * Copyright (C) 2005-2007 Håvard Tautra Knutsen * * 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; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "config.h" #include "directorymodel.h" #include "directoryview.h" #include "fileview.h" #include "iconmanager.h" #include "mpdcache.h" #include "mpddirectory.h" #include "mpdsonglist.h" #include DirectoryView::DirectoryView(QWidget *parent) : AbstractTree(parent) { Q_ASSERT(m_cache); Q_ASSERT(m_menu); setObjectName("directoryview"); setModel(m_model = new DirectoryModel(this)); // playlist m_menu m_enqueueAction = addMenuAction("enqueue", this, SLOT(enqueue())); m_playAction = addMenuAction("play", this, SLOT(play())); m_menu->addSeparator(); m_rescanAction = addMenuAction("rescan", this, SLOT(rescan())); m_menu->addSeparator(); m_informationAction = addMenuAction("information", this, SLOT(information())); connect(m_cache, SIGNAL(directoriesUpdated(const MPDDirectory &)), this, SLOT(setRoot(const MPDDirectory &))); clearSelection(); } void DirectoryView::setFileView(FileView *fw) { m_fileView = fw; } void DirectoryView::updateTranslation() { Q_ASSERT(m_enqueueAction); Q_ASSERT(m_informationAction); Q_ASSERT(m_rescanAction); Q_ASSERT(m_playAction); m_enqueueAction->setText(tr("&Enqueue")); m_informationAction->setText(tr("&Information...")); m_rescanAction->setText(tr("&Rescan directory")); m_playAction->setText(tr("&Play")); } void DirectoryView::selectionChanged(const QItemSelection &s, const QItemSelection &u) { Q_ASSERT(m_fileView); AbstractTree::selectionChanged(s, u); m_fileView->setSongs(selectedSongs()); } void DirectoryView::setRoot(const MPDDirectory &root) { Q_ASSERT(m_model); m_model->setRoot(root); // Expand root setExpanded(m_model->index(0, 0, QModelIndex()), true); setCurrentIndex(m_model->index(0, 0)); } MPDSongList DirectoryView::selectedSongs() const { Q_ASSERT(m_cache); Q_ASSERT(m_model); return m_cache->songsByDirectories(m_model->directories(selectedIndexes())); } void DirectoryView::rescan() { Q_ASSERT(m_cache); Q_ASSERT(m_model); m_cache->rescan(m_model->directories(selectedIndexes())); }