diff options
author | Petr Mrázek <peterix@gmail.com> | 2014-01-31 22:51:45 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2014-01-31 22:51:45 +0100 |
commit | 3fb7a0faf069fdc5a4f14a12dfd76c43819c3378 (patch) | |
tree | e2379ae9619152fd9e378ad9ee64256a5d5d6647 /Group.h | |
parent | c47933d95cae407a99acfbbb941655f7cd52e1ae (diff) | |
download | MultiMC-3fb7a0faf069fdc5a4f14a12dfd76c43819c3378.tar MultiMC-3fb7a0faf069fdc5a4f14a12dfd76c43819c3378.tar.gz MultiMC-3fb7a0faf069fdc5a4f14a12dfd76c43819c3378.tar.lz MultiMC-3fb7a0faf069fdc5a4f14a12dfd76c43819c3378.tar.xz MultiMC-3fb7a0faf069fdc5a4f14a12dfd76c43819c3378.zip |
Reformat, Rename, Redo
Diffstat (limited to 'Group.h')
-rw-r--r-- | Group.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Group.h b/Group.h new file mode 100644 index 00000000..6a8fadeb --- /dev/null +++ b/Group.h @@ -0,0 +1,36 @@ +#pragma once + +#include <QString> +#include <QRect> +#include <QVector> + +class GroupView; +class QPainter; +class QModelIndex; + +struct Group +{ + Group(const QString &text, GroupView *view); + Group(const Group *other); + GroupView *view; + 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; +}; |