2010-10-02 18:23:33 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-10-02 18:23:33 +02:00
|
|
|
|
|
|
|
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 "collapsibleinfopane.h"
|
|
|
|
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
2020-09-18 16:15:19 +02:00
|
|
|
#include "collapsibleinfoheader.h"
|
|
|
|
|
2010-10-09 14:39:49 +02:00
|
|
|
CollapsibleInfoPane::CollapsibleInfoPane(const Data& data, QWidget* parent)
|
2014-02-07 16:34:20 +01:00
|
|
|
: QWidget(parent), data_(data), header_(new CollapsibleInfoHeader(this)) {
|
2010-10-02 18:23:33 +02:00
|
|
|
QVBoxLayout* layout = new QVBoxLayout(this);
|
2010-10-07 23:06:26 +02:00
|
|
|
layout->setContentsMargins(0, 0, 0, 0);
|
|
|
|
layout->setSpacing(3);
|
2010-10-07 22:18:37 +02:00
|
|
|
layout->setSizeConstraint(QLayout::SetMinAndMaxSize);
|
2010-10-02 18:23:33 +02:00
|
|
|
setLayout(layout);
|
|
|
|
|
2010-10-07 23:06:26 +02:00
|
|
|
layout->addWidget(header_);
|
2010-10-09 14:39:49 +02:00
|
|
|
layout->addWidget(data.contents_);
|
2010-10-11 21:49:12 +02:00
|
|
|
data.contents_->hide();
|
2010-10-09 14:39:49 +02:00
|
|
|
|
|
|
|
header_->SetTitle(data.title_);
|
|
|
|
header_->SetIcon(data.icon_);
|
2010-10-07 23:06:26 +02:00
|
|
|
|
2010-10-02 18:23:33 +02:00
|
|
|
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Maximum);
|
2010-10-07 23:06:26 +02:00
|
|
|
|
|
|
|
connect(header_, SIGNAL(ExpandedToggled(bool)), SLOT(ExpandedToggled(bool)));
|
2010-10-11 23:42:31 +02:00
|
|
|
connect(header_, SIGNAL(ExpandedToggled(bool)), SIGNAL(Toggled(bool)));
|
2010-10-02 18:23:33 +02:00
|
|
|
}
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
void CollapsibleInfoPane::Collapse() { header_->SetExpanded(false); }
|
2010-10-02 18:23:33 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
void CollapsibleInfoPane::Expand() { header_->SetExpanded(true); }
|
2010-10-02 18:23:33 +02:00
|
|
|
|
2010-10-07 23:06:26 +02:00
|
|
|
void CollapsibleInfoPane::ExpandedToggled(bool expanded) {
|
2010-10-09 14:39:49 +02:00
|
|
|
data_.contents_->setVisible(expanded);
|
|
|
|
}
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
bool CollapsibleInfoPane::Data::operator<(
|
|
|
|
const CollapsibleInfoPane::Data& other) const {
|
|
|
|
const int my_score = (TypeCount - type_) * 1000 + relevance_;
|
2010-10-10 19:59:23 +02:00
|
|
|
const int other_score = (TypeCount - other.type_) * 1000 + other.relevance_;
|
2010-10-09 14:39:49 +02:00
|
|
|
|
|
|
|
return my_score > other_score;
|
2010-10-02 18:23:33 +02:00
|
|
|
}
|