pollymc/launcher/groupview/VisualGroup.h

107 lines
2.7 KiB
C
Raw Normal View History

2021-01-18 12:58:54 +05:30
/* Copyright 2013-2021 MultiMC Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2014-02-01 03:21:45 +05:30
#pragma once
2013-12-31 21:56:36 +05:30
#include <QString>
#include <QRect>
#include <QVector>
2014-02-05 06:04:50 +05:30
#include <QStyleOption>
2013-12-31 21:56:36 +05:30
2014-02-01 03:21:45 +05:30
class GroupView;
2013-12-31 21:56:36 +05:30
class QPainter;
class QModelIndex;
struct VisualRow
{
2018-07-15 18:21:05 +05:30
QList<QModelIndex> items;
int height = 0;
int top = 0;
inline int size() const
{
return items.size();
}
inline QModelIndex &operator[](int i)
{
return items[i];
}
};
struct VisualGroup
2013-12-31 21:56:36 +05:30
{
/* constructors */
2018-07-15 18:21:05 +05:30
VisualGroup(const QString &text, GroupView *view);
VisualGroup(const VisualGroup *other);
/* data */
2018-07-15 18:21:05 +05:30
GroupView *view = nullptr;
QString text;
bool collapsed = false;
QVector<VisualRow> rows;
int firstItemIndex = 0;
int m_verticalPosition = 0;
2013-12-31 21:56:36 +05:30
/* logic */
2018-07-15 18:21:05 +05:30
/// update the internal list of items and flow them into the rows.
void update();
2013-12-31 21:56:36 +05:30
2018-07-15 18:21:05 +05:30
/// draw the header at y-position.
void drawHeader(QPainter *painter, const QStyleOptionViewItem &option);
2018-07-15 18:21:05 +05:30
/// height of the group, in total. includes a small bit of padding.
int totalHeight() const;
2018-07-15 18:21:05 +05:30
/// height of the group header, in pixels
int headerHeight() const;
2018-07-15 18:21:05 +05:30
/// height of the group content, in pixels
int contentHeight() const;
2018-07-15 18:21:05 +05:30
/// the number of visual rows this group has
int numRows() const;
2018-07-15 18:21:05 +05:30
/// actually calculate the above value
int calculateNumRows() const;
2018-07-15 18:21:05 +05:30
/// the height at which this group starts, in pixels
int verticalPosition() const;
2013-12-31 21:56:36 +05:30
2018-07-15 18:21:05 +05:30
/// relative geometry - top of the row of the given item
int rowTopOf(const QModelIndex &index) const;
2018-07-15 18:21:05 +05:30
/// height of the row of the given item
int rowHeightOf(const QModelIndex &index) const;
2018-07-15 18:21:05 +05:30
/// x/y position of the given item inside the group (in items!)
QPair<int, int> positionOf(const QModelIndex &index) const;
2018-07-15 18:21:05 +05:30
enum HitResult
{
NoHit = 0x0,
TextHit = 0x1,
CheckboxHit = 0x2,
HeaderHit = 0x4,
BodyHit = 0x8
};
Q_DECLARE_FLAGS(HitResults, HitResult)
2014-02-02 18:57:43 +05:30
2018-07-15 18:21:05 +05:30
/// shoot! BANG! what did we hit?
HitResults hitScan (const QPoint &pos) const;
2014-02-02 18:57:43 +05:30
2018-07-15 18:21:05 +05:30
QList<QModelIndex> items() const;
2013-12-31 21:56:36 +05:30
};
2014-02-02 18:57:43 +05:30
Q_DECLARE_OPERATORS_FOR_FLAGS(VisualGroup::HitResults)