summaryrefslogtreecommitdiffstats
path: root/CategorizedViewCategory.h
diff options
context:
space:
mode:
authorJan Dalheimer <jan@dalheimer.de>2013-12-31 17:26:36 +0100
committerJan Dalheimer <jan@dalheimer.de>2013-12-31 17:26:36 +0100
commitc47933d95cae407a99acfbbb941655f7cd52e1ae (patch)
treee61e312395089934affedea3916416881acfdc10 /CategorizedViewCategory.h
parent8cfd0881ac3fcbb45fd42dedcb1caf0be38eacaf (diff)
downloadMultiMC-c47933d95cae407a99acfbbb941655f7cd52e1ae.tar
MultiMC-c47933d95cae407a99acfbbb941655f7cd52e1ae.tar.gz
MultiMC-c47933d95cae407a99acfbbb941655f7cd52e1ae.tar.lz
MultiMC-c47933d95cae407a99acfbbb941655f7cd52e1ae.tar.xz
MultiMC-c47933d95cae407a99acfbbb941655f7cd52e1ae.zip
Loads of changes and some refactorings
Diffstat (limited to 'CategorizedViewCategory.h')
-rw-r--r--CategorizedViewCategory.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/CategorizedViewCategory.h b/CategorizedViewCategory.h
new file mode 100644
index 00000000..cb6ef8c5
--- /dev/null
+++ b/CategorizedViewCategory.h
@@ -0,0 +1,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