strawberry-audio-player-win.../src/widgets/stretchheaderview.h

106 lines
3.3 KiB
C
Raw Normal View History

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
*/
#ifndef STRETCHHEADERVIEW_H
#define STRETCHHEADERVIEW_H
#include "config.h"
#include <QObject>
#include <QByteArray>
2018-02-27 18:06:05 +01:00
#include <QHeaderView>
#include <QList>
#include <QString>
#include <QVector>
2020-02-09 02:29:35 +01:00
class QWidget;
class QAbstractItemModel;
class QMouseEvent;
class QResizeEvent;
2018-02-27 18:06:05 +01:00
class StretchHeaderView : public QHeaderView {
Q_OBJECT
public:
2021-06-12 20:53:23 +02:00
explicit StretchHeaderView(const Qt::Orientation orientation, QWidget *parent = nullptr);
2018-02-27 18:06:05 +01:00
typedef double ColumnWidthType;
static const int kMinimumColumnWidth;
static const int kMagicNumber;
2020-06-15 21:55:05 +02:00
void setModel(QAbstractItemModel *model) override;
2018-02-27 18:06:05 +01:00
// Serialises the proportional and actual column widths.
// Use these instead of QHeaderView::restoreState and QHeaderView::saveState to persist the proportional values directly and avoid floating point errors over time.
2020-04-23 21:08:28 +02:00
bool RestoreState(const QByteArray &sdata);
2018-02-27 18:06:05 +01:00
QByteArray SaveState() const;
QByteArray ResetState();
2018-02-27 18:06:05 +01:00
// Hides a section and resizes all other sections to fill the gap. Does nothing if you try to hide the last section.
2020-04-23 21:08:28 +02:00
void HideSection(const int logical);
2018-02-27 18:06:05 +01:00
// Shows a section and resizes all other sections to make room.
2020-04-23 21:08:28 +02:00
void ShowSection(const int logical);
2018-02-27 18:06:05 +01:00
// Calls either HideSection or ShowSection.
2020-04-23 21:08:28 +02:00
void SetSectionHidden(const int logical, const bool hidden);
2018-02-27 18:06:05 +01:00
// Sets the width of the given column and resizes other columns appropriately.
// width is the proportion of the entire width from 0.0 to 1.0.
2020-04-23 21:08:28 +02:00
void SetColumnWidth(const int logical, const ColumnWidthType width);
2018-02-27 18:06:05 +01:00
bool is_stretch_enabled() const { return stretch_enabled_; }
2020-04-07 16:49:15 +02:00
public slots:
2020-10-17 17:29:09 +02:00
// Changes the stretch mode.
// Enabling stretch mode will initialize the proportional column widths from the current state of the header.
2018-02-27 18:06:05 +01:00
void ToggleStretchEnabled();
2020-04-23 21:08:28 +02:00
void SetStretchEnabled(const bool enabled);
2018-02-27 18:06:05 +01:00
2020-04-07 16:49:15 +02:00
signals:
2018-02-27 18:06:05 +01:00
// Emitted when the stretch mode is changed.
2021-01-26 16:48:04 +01:00
void StretchEnabledChanged(bool enabled);
2018-02-27 18:06:05 +01:00
2020-04-07 16:49:15 +02:00
protected:
2018-02-27 18:06:05 +01:00
// QWidget
2020-06-15 21:55:05 +02:00
void mouseMoveEvent(QMouseEvent *e) override;
2021-02-02 21:08:58 +01:00
void resizeEvent(QResizeEvent *e) override;
2018-02-27 18:06:05 +01:00
private:
// Scales column_widths_ values so the total is 1.0.
void NormaliseWidths(const QList<int> &sections = QList<int>());
2018-02-27 18:06:05 +01:00
// Resizes the actual columns to make them match the proportional values in column_widths_.
2021-06-12 20:53:23 +02:00
void UpdateWidths(const QList<int> &sections = QList<int>());
2018-02-27 18:06:05 +01:00
2020-04-07 16:49:15 +02:00
private slots:
2020-04-23 21:08:28 +02:00
void SectionResized(const int logical, const int old_size, const int new_size);
2018-02-27 18:06:05 +01:00
2020-04-07 16:49:15 +02:00
private:
2018-02-27 18:06:05 +01:00
bool stretch_enabled_;
QVector<ColumnWidthType> column_widths_;
bool in_mouse_move_event_;
};
#endif // STRETCHHEADERVIEW_H