MultiMC5/Group.h

49 lines
874 B
C
Raw Normal View History

2014-01-31 21:51:45 +00:00
#pragma once
2013-12-31 16:26:36 +00:00
#include <QString>
#include <QRect>
#include <QVector>
2014-01-31 21:51:45 +00:00
class GroupView;
2013-12-31 16:26:36 +00:00
class QPainter;
class QModelIndex;
2014-01-31 21:51:45 +00:00
struct Group
2013-12-31 16:26:36 +00:00
{
2014-01-31 21:51:45 +00:00
Group(const QString &text, GroupView *view);
Group(const Group *other);
GroupView *view;
2013-12-31 16:26:36 +00:00
QString text;
bool collapsed;
QVector<int> rowHeights;
int firstRow;
void update();
void drawHeader(QPainter *painter, const int y);
int totalHeight() const;
int headerHeight() const;
int contentHeight() const;
int numRows() const;
int top() const;
2014-02-02 13:27:43 +00:00
enum HitResult
{
NoHit = 0x0,
TextHit = 0x1,
CheckboxHit = 0x2,
HeaderHit = 0x4,
BodyHit = 0x8
};
Q_DECLARE_FLAGS(HitResults, HitResult)
HitResults pointIntersect (const QPoint &pos) const;
2013-12-31 16:26:36 +00:00
QList<QModelIndex> items() const;
int numItems() const;
QModelIndex firstItem() const;
QModelIndex lastItem() const;
};
2014-02-02 13:27:43 +00:00
Q_DECLARE_OPERATORS_FOR_FLAGS(Group::HitResults)