pollymc/Group.h

37 lines
651 B
C
Raw Normal View History

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-01 03:21:45 +05:30
class GroupView;
2013-12-31 21:56:36 +05:30
class QPainter;
class QModelIndex;
2014-02-01 03:21:45 +05:30
struct Group
2013-12-31 21:56:36 +05:30
{
2014-02-01 03:21:45 +05:30
Group(const QString &text, GroupView *view);
Group(const Group *other);
GroupView *view;
2013-12-31 21:56:36 +05:30
QString text;
bool collapsed;
QRect iconRect;
QRect textRect;
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;
QList<QModelIndex> items() const;
int numItems() const;
QModelIndex firstItem() const;
QModelIndex lastItem() const;
};