2018-02-27 18:06:05 +01:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
|
|
|
* This file was part of Clementine.
|
|
|
|
* Copyright 2010, David Sansome <me@davidsansome.com>
|
2021-03-20 21:14:47 +01:00
|
|
|
* Copyright 2018-2021, Jonas Kvinge <jonas@jkvinge.net>
|
2018-02-27 18:06:05 +01:00
|
|
|
*
|
|
|
|
* Strawberry 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.
|
|
|
|
*
|
|
|
|
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
2018-08-09 18:39:44 +02:00
|
|
|
*
|
2018-02-27 18:06:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2023-07-21 05:55:24 +02:00
|
|
|
#include <memory>
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QDialog>
|
2020-02-08 03:40:30 +01:00
|
|
|
#include <QWidget>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QComboBox>
|
|
|
|
#include <QDialogButtonBox>
|
2018-02-27 18:06:05 +01:00
|
|
|
#include <QPushButton>
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include "collectionmodel.h"
|
2018-02-27 18:06:05 +01:00
|
|
|
#include "groupbydialog.h"
|
|
|
|
#include "ui_groupbydialog.h"
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <boost/multi_index/indexed_by.hpp>
|
2018-02-27 18:06:05 +01:00
|
|
|
#include <boost/multi_index/member.hpp>
|
|
|
|
#include <boost/multi_index/ordered_index.hpp>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <boost/multi_index/tag.hpp>
|
|
|
|
#include <boost/multi_index_container.hpp>
|
|
|
|
#include <boost/multi_index_container_fwd.hpp>
|
|
|
|
#include <boost/operators.hpp>
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2023-07-21 05:55:24 +02:00
|
|
|
using std::make_unique;
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
using boost::multi_index_container;
|
|
|
|
using boost::multi_index::indexed_by;
|
|
|
|
using boost::multi_index::ordered_unique;
|
|
|
|
using boost::multi_index::tag;
|
|
|
|
using boost::multi_index::member;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
struct Mapping {
|
|
|
|
Mapping(CollectionModel::GroupBy g, int i) : group_by(g), combo_box_index(i) {}
|
|
|
|
|
|
|
|
CollectionModel::GroupBy group_by;
|
|
|
|
int combo_box_index;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct tag_index {};
|
|
|
|
struct tag_group_by {};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
class GroupByDialogPrivate {
|
|
|
|
private:
|
2022-10-13 22:39:31 +02:00
|
|
|
using MappingContainer = multi_index_container<Mapping, indexed_by<ordered_unique<tag<tag_index>, member<Mapping, int, &Mapping::combo_box_index>>, ordered_unique<tag<tag_group_by>, member<Mapping, CollectionModel::GroupBy, &Mapping::group_by>>>>;
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
MappingContainer mapping_;
|
|
|
|
};
|
|
|
|
|
2023-07-21 05:55:24 +02:00
|
|
|
GroupByDialog::GroupByDialog(QWidget *parent) : QDialog(parent), ui_(make_unique<Ui_GroupByDialog>()), p_(make_unique<GroupByDialogPrivate>()) {
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
ui_->setupUi(this);
|
|
|
|
Reset();
|
|
|
|
|
2023-02-18 14:09:27 +01:00
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::None, 0));
|
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::Artist, 1));
|
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::AlbumArtist, 2));
|
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::Album, 3));
|
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::AlbumDisc, 4));
|
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::Disc, 5));
|
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::Format, 6));
|
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::Genre, 7));
|
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::Year, 8));
|
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::YearAlbum, 9));
|
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::YearAlbumDisc, 10));
|
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::OriginalYear, 11));
|
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::OriginalYearAlbum, 12));
|
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::Composer, 13));
|
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::Performer, 14));
|
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::Grouping, 15));
|
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::FileType, 16));
|
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::Samplerate, 17));
|
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::Bitdepth, 18));
|
|
|
|
p_->mapping_.insert(Mapping(CollectionModel::GroupBy::Bitrate, 19));
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2021-01-26 16:48:04 +01:00
|
|
|
QObject::connect(ui_->buttonbox->button(QDialogButtonBox::Reset), &QPushButton::clicked, this, &GroupByDialog::Reset);
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
resize(sizeHint());
|
2019-03-30 22:03:33 +01:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2020-06-15 21:55:05 +02:00
|
|
|
GroupByDialog::~GroupByDialog() = default;
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
void GroupByDialog::Reset() {
|
2022-08-20 14:51:19 +02:00
|
|
|
|
2019-03-30 22:03:33 +01:00
|
|
|
ui_->combobox_first->setCurrentIndex(2); // Album Artist
|
2022-08-20 14:51:19 +02:00
|
|
|
ui_->combobox_second->setCurrentIndex(4); // Album Disc
|
2018-06-28 01:15:32 +02:00
|
|
|
ui_->combobox_third->setCurrentIndex(0); // None
|
2022-08-20 14:51:19 +02:00
|
|
|
ui_->checkbox_separate_albums_by_grouping->setChecked(false);
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void GroupByDialog::accept() {
|
2022-08-20 14:51:19 +02:00
|
|
|
|
2024-08-25 01:06:30 +02:00
|
|
|
Q_EMIT Accepted(CollectionModel::Grouping(
|
2018-06-28 01:15:32 +02:00
|
|
|
p_->mapping_.get<tag_index>().find(ui_->combobox_first->currentIndex())->group_by,
|
|
|
|
p_->mapping_.get<tag_index>().find(ui_->combobox_second->currentIndex())->group_by,
|
2022-08-20 14:51:19 +02:00
|
|
|
p_->mapping_.get<tag_index>().find(ui_->combobox_third->currentIndex())->group_by),
|
|
|
|
ui_->checkbox_separate_albums_by_grouping->isChecked()
|
2018-02-27 18:06:05 +01:00
|
|
|
);
|
|
|
|
QDialog::accept();
|
2022-08-20 14:51:19 +02:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2022-08-20 14:51:19 +02:00
|
|
|
void GroupByDialog::CollectionGroupingChanged(const CollectionModel::Grouping g, const bool separate_albums_by_grouping) {
|
|
|
|
|
2018-06-28 01:15:32 +02:00
|
|
|
ui_->combobox_first->setCurrentIndex(p_->mapping_.get<tag_group_by>().find(g[0])->combo_box_index);
|
|
|
|
ui_->combobox_second->setCurrentIndex(p_->mapping_.get<tag_group_by>().find(g[1])->combo_box_index);
|
|
|
|
ui_->combobox_third->setCurrentIndex(p_->mapping_.get<tag_group_by>().find(g[2])->combo_box_index);
|
2022-08-20 14:51:19 +02:00
|
|
|
ui_->checkbox_separate_albums_by_grouping->setChecked(separate_albums_by_grouping);
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|