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"
|
|
|
|
|
2020-02-08 15:03:11 +01:00
|
|
|
#include <QAbstractItemModel>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QWidget>
|
|
|
|
#include <QFlags>
|
|
|
|
#include <QVariant>
|
|
|
|
#include <QString>
|
|
|
|
#include <QtAlgorithms>
|
2019-07-08 22:27:45 +02:00
|
|
|
#include <QMenu>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QAction>
|
|
|
|
#include <QActionGroup>
|
2020-09-17 17:50:17 +02:00
|
|
|
#include <QSettings>
|
2020-02-08 15:03:11 +01:00
|
|
|
#include <QEvent>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QContextMenuEvent>
|
2020-09-05 19:20:43 +02:00
|
|
|
#include <QEnterEvent>
|
2018-05-01 00:41:33 +02:00
|
|
|
|
|
|
|
#include "playlistheader.h"
|
|
|
|
#include "playlistview.h"
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2020-09-17 17:50:17 +02:00
|
|
|
#include "settings/playlistsettingspage.h"
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
PlaylistHeader::PlaylistHeader(Qt::Orientation orientation, PlaylistView *view, QWidget *parent)
|
|
|
|
: StretchHeaderView(orientation, parent),
|
|
|
|
view_(view),
|
2021-06-20 23:53:28 +02:00
|
|
|
menu_section_(0),
|
2020-09-17 17:50:17 +02:00
|
|
|
menu_(new QMenu(this)),
|
|
|
|
action_hide_(nullptr),
|
|
|
|
action_reset_(nullptr),
|
|
|
|
action_stretch_(nullptr),
|
|
|
|
action_rating_lock_(nullptr),
|
|
|
|
action_align_left_(nullptr),
|
|
|
|
action_align_center_(nullptr),
|
2021-07-11 07:40:57 +02:00
|
|
|
action_align_right_(nullptr) {
|
2020-09-17 17:50:17 +02:00
|
|
|
|
2021-01-26 16:48:04 +01:00
|
|
|
action_hide_ = menu_->addAction(tr("&Hide..."), this, &PlaylistHeader::HideCurrent);
|
|
|
|
action_stretch_ = menu_->addAction(tr("&Stretch columns to fit window"), this, &PlaylistHeader::ToggleStretchEnabled);
|
|
|
|
action_reset_ = menu_->addAction(tr("&Reset columns to default"), this, &PlaylistHeader::ResetColumns);
|
|
|
|
action_rating_lock_ = menu_->addAction(tr("&Lock rating"), this, &PlaylistHeader::ToggleRatingEditStatus);
|
2020-09-17 17:50:17 +02:00
|
|
|
action_rating_lock_->setCheckable(true);
|
2018-02-27 18:06:05 +01:00
|
|
|
menu_->addSeparator();
|
|
|
|
|
|
|
|
QMenu *align_menu = new QMenu(tr("&Align text"), this);
|
|
|
|
QActionGroup *align_group = new QActionGroup(this);
|
2020-09-17 17:50:17 +02:00
|
|
|
action_align_left_ = new QAction(tr("&Left"), align_group);
|
|
|
|
action_align_center_ = new QAction(tr("&Center"), align_group);
|
|
|
|
action_align_right_ = new QAction(tr("&Right"), align_group);
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2020-09-17 17:50:17 +02:00
|
|
|
action_align_left_->setCheckable(true);
|
|
|
|
action_align_center_->setCheckable(true);
|
|
|
|
action_align_right_->setCheckable(true);
|
2018-02-27 18:06:05 +01:00
|
|
|
align_menu->addActions(align_group->actions());
|
|
|
|
|
2021-01-26 16:48:04 +01:00
|
|
|
QObject::connect(align_group, &QActionGroup::triggered, this, &PlaylistHeader::SetColumnAlignment);
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
menu_->addMenu(align_menu);
|
|
|
|
menu_->addSeparator();
|
|
|
|
|
2020-09-17 17:50:17 +02:00
|
|
|
action_stretch_->setCheckable(true);
|
|
|
|
action_stretch_->setChecked(is_stretch_enabled());
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2021-01-26 16:48:04 +01:00
|
|
|
QObject::connect(this, &PlaylistHeader::StretchEnabledChanged, action_stretch_, &QAction::setChecked);
|
2020-09-17 17:50:17 +02:00
|
|
|
|
|
|
|
QSettings s;
|
|
|
|
s.beginGroup(PlaylistSettingsPage::kSettingsGroup);
|
|
|
|
action_rating_lock_->setChecked(s.value("rating_locked", false).toBool());
|
|
|
|
s.endGroup();
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void PlaylistHeader::contextMenuEvent(QContextMenuEvent *e) {
|
|
|
|
|
|
|
|
menu_section_ = logicalIndexAt(e->pos());
|
|
|
|
|
|
|
|
if (menu_section_ == -1 || (menu_section_ == logicalIndex(0) && logicalIndex(1) == -1))
|
2020-09-17 17:50:17 +02:00
|
|
|
action_hide_->setVisible(false);
|
2018-02-27 18:06:05 +01:00
|
|
|
else {
|
2020-09-17 17:50:17 +02:00
|
|
|
action_hide_->setVisible(true);
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
QString title(model()->headerData(menu_section_, Qt::Horizontal).toString());
|
2020-09-17 17:50:17 +02:00
|
|
|
action_hide_->setText(tr("&Hide %1").arg(title));
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
Qt::Alignment alignment = view_->column_alignment(menu_section_);
|
2020-09-17 17:50:17 +02:00
|
|
|
if (alignment & Qt::AlignLeft) action_align_left_->setChecked(true);
|
|
|
|
else if (alignment & Qt::AlignHCenter) action_align_center_->setChecked(true);
|
|
|
|
else if (alignment & Qt::AlignRight) action_align_right_->setChecked(true);
|
|
|
|
|
|
|
|
// Show rating lock action only for ratings section
|
|
|
|
action_rating_lock_->setVisible(menu_section_ == Playlist::Column_Rating);
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
qDeleteAll(show_actions_);
|
|
|
|
show_actions_.clear();
|
|
|
|
for (int i = 0 ; i < count() ; ++i) {
|
|
|
|
AddColumnAction(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
menu_->popup(e->globalPos());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void PlaylistHeader::AddColumnAction(int index) {
|
|
|
|
|
2019-04-18 15:03:01 +02:00
|
|
|
#ifndef HAVE_MOODBAR
|
|
|
|
if (index == Playlist::Column_Mood) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
QString title(model()->headerData(index, Qt::Horizontal).toString());
|
|
|
|
|
2019-07-08 22:27:45 +02:00
|
|
|
QAction *action = menu_->addAction(title);
|
2018-02-27 18:06:05 +01:00
|
|
|
action->setCheckable(true);
|
|
|
|
action->setChecked(!isSectionHidden(index));
|
|
|
|
show_actions_ << action;
|
|
|
|
|
2021-01-26 16:48:04 +01:00
|
|
|
QObject::connect(action, &QAction::triggered, [this, index]() { ToggleVisible(index); } );
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void PlaylistHeader::HideCurrent() {
|
|
|
|
if (menu_section_ == -1) return;
|
|
|
|
|
|
|
|
SetSectionHidden(menu_section_, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PlaylistHeader::SetColumnAlignment(QAction *action) {
|
|
|
|
|
|
|
|
Qt::Alignment alignment = Qt::AlignVCenter;
|
|
|
|
|
2020-09-17 17:50:17 +02:00
|
|
|
if (action == action_align_left_) alignment |= Qt::AlignLeft;
|
|
|
|
if (action == action_align_center_) alignment |= Qt::AlignHCenter;
|
|
|
|
if (action == action_align_right_) alignment |= Qt::AlignRight;
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
view_->SetColumnAlignment(menu_section_, alignment);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-01-26 16:48:04 +01:00
|
|
|
void PlaylistHeader::ToggleVisible(const int section) {
|
2018-02-27 18:06:05 +01:00
|
|
|
SetSectionHidden(section, !isSectionHidden(section));
|
|
|
|
emit SectionVisibilityChanged(section, !isSectionHidden(section));
|
|
|
|
}
|
|
|
|
|
2020-09-05 19:20:43 +02:00
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
|
|
|
void PlaylistHeader::enterEvent(QEnterEvent*) {
|
|
|
|
#else
|
2018-02-27 18:06:05 +01:00
|
|
|
void PlaylistHeader::enterEvent(QEvent*) {
|
2020-09-05 19:20:43 +02:00
|
|
|
#endif
|
2018-02-27 18:06:05 +01:00
|
|
|
emit MouseEntered();
|
|
|
|
}
|
|
|
|
|
2018-11-19 00:18:48 +01:00
|
|
|
void PlaylistHeader::ResetColumns() {
|
2020-08-29 19:55:00 +02:00
|
|
|
view_->ResetHeaderState();
|
2018-11-19 00:18:48 +01:00
|
|
|
}
|
2020-09-17 17:50:17 +02:00
|
|
|
|
|
|
|
void PlaylistHeader::ToggleRatingEditStatus() {
|
|
|
|
emit SectionRatingLockStatusChanged(action_rating_lock_->isChecked());
|
|
|
|
}
|