blob: cb6ef8c58c76858a814db805a1653bec16e7be33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#ifndef CATEGORIZEDVIEWROW_H
#define CATEGORIZEDVIEWROW_H
#include <QString>
#include <QRect>
#include <QVector>
class CategorizedView;
class QPainter;
class QModelIndex;
struct CategorizedViewCategory
{
CategorizedViewCategory(const QString &text, CategorizedView *view);
CategorizedViewCategory(const CategorizedViewCategory *other);
CategorizedView *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;
};
#endif // CATEGORIZEDVIEWROW_H
|