Clementine-audio-player-Mac.../src/internet/internetviewcontainer.cpp

149 lines
4.4 KiB
C++

/* This file is part of Clementine.
Copyright 2010, David Sansome <me@davidsansome.com>
Clementine 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.
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#include "internetviewcontainer.h"
#include "internetmodel.h"
#include "internetservice.h"
#include "ui_internetviewcontainer.h"
#include "core/application.h"
#include "core/mergedproxymodel.h"
#include "globalsearch/globalsearch.h"
#include <QMetaMethod>
#include <QTimeLine>
#include <QtDebug>
const int InternetViewContainer::kAnimationDuration = 500;
InternetViewContainer::InternetViewContainer(QWidget *parent)
: QWidget(parent),
ui_(new Ui_InternetViewContainer),
app_(NULL),
current_service_(NULL),
current_header_(NULL)
{
ui_->setupUi(this);
connect(ui_->tree, SIGNAL(collapsed(QModelIndex)), SLOT(Collapsed(QModelIndex)));
connect(ui_->tree, SIGNAL(expanded(QModelIndex)), SLOT(Expanded(QModelIndex)));
connect(ui_->tree, SIGNAL(FocusOnFilterSignal(QKeyEvent*)), SLOT(FocusOnFilter(QKeyEvent*)));
}
InternetViewContainer::~InternetViewContainer() {
delete ui_;
}
InternetView* InternetViewContainer::tree() const {
return ui_->tree;
}
void InternetViewContainer::SetApplication(Application* app) {
app_ = app;
ui_->tree->setModel(app_->internet_model()->merged_model());
connect(ui_->tree->selectionModel(),
SIGNAL(currentChanged(QModelIndex,QModelIndex)),
SLOT(CurrentIndexChanged(QModelIndex)));
}
void InternetViewContainer::ServiceChanged(const QModelIndex& index) {
InternetService* service = index.data(InternetModel::Role_Service).value<InternetService*>();
if (!service || service == current_service_)
return;
current_service_ = service;
QWidget* header = service->HeaderWidget();
if (header && !headers_.contains(header)) {
header->setParent(ui_->header_container);
header->setMaximumHeight(0);
ui_->header_container->layout()->addWidget(header);
header->show();
HeaderData d;
d.visible_ = false;
d.animation_ = new QTimeLine(kAnimationDuration, this);
d.animation_->setFrameRange(0, header->sizeHint().height());
connect(d.animation_, SIGNAL(frameChanged(int)), SLOT(SetHeaderHeight(int)));
headers_.insert(header, d);
}
SetHeaderVisible(current_header_, false);
current_header_ = header;
SetHeaderVisible(current_header_, true);
}
void InternetViewContainer::CurrentIndexChanged(const QModelIndex& index) {
ServiceChanged(index);
}
void InternetViewContainer::Collapsed(const QModelIndex& index) {
if (app_->internet_model()->merged_model()->mapToSource(index).model() == app_->internet_model()) {
SetHeaderVisible(current_header_, false);
current_service_ = NULL;
current_header_ = NULL;
}
}
void InternetViewContainer::Expanded(const QModelIndex& index) {
ServiceChanged(index);
}
void InternetViewContainer::SetHeaderVisible(QWidget* header, bool visible) {
if (!header)
return;
if (visible && GlobalSearch::HideOtherSearchBoxes())
return;
HeaderData& d = headers_[header];
if (d.visible_ == visible)
return;
d.visible_ = visible;
d.animation_->setDirection(visible ? QTimeLine::Forward : QTimeLine::Backward);
d.animation_->start();
}
void InternetViewContainer::FocusOnFilter(QKeyEvent* event) {
// Beware: magic
if (current_header_) {
int slot = current_header_->metaObject()->indexOfSlot(
QMetaObject::normalizedSignature("FocusOnFilter(QKeyEvent*)"));
if (slot != -1) {
current_header_->metaObject()->method(slot).invoke(
current_header_, Q_ARG(QKeyEvent*, event));
}
}
}
void InternetViewContainer::SetHeaderHeight(int height) {
QTimeLine* animation = qobject_cast<QTimeLine*>(sender());
QWidget* header = NULL;
foreach (QWidget* h, headers_.keys()) {
if (headers_[h].animation_ == animation) {
header = h;
break;
}
}
if (header)
header->setMaximumHeight(height);
}