54 lines
1.5 KiB
C++
54 lines
1.5 KiB
C++
|
#include "CategorizedView.h"
|
||
|
#include <QApplication>
|
||
|
#include <QStandardItemModel>
|
||
|
|
||
|
#include "CategorizedProxyModel.h"
|
||
|
|
||
|
QPixmap icon(const Qt::GlobalColor color)
|
||
|
{
|
||
|
QPixmap p = QPixmap(32, 32);
|
||
|
p.fill(QColor(color));
|
||
|
return p;
|
||
|
}
|
||
|
QStandardItem *createItem(const Qt::GlobalColor color, const QString &text, const QString &category)
|
||
|
{
|
||
|
QStandardItem *item = new QStandardItem;
|
||
|
item->setText(text);
|
||
|
item->setData(icon(color), Qt::DecorationRole);
|
||
|
item->setData(category, CategorizedView::CategoryRole);
|
||
|
item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable);
|
||
|
return item;
|
||
|
}
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QApplication a(argc, argv);
|
||
|
|
||
|
QStandardItemModel model;
|
||
|
model.setRowCount(10);
|
||
|
model.setColumnCount(1);
|
||
|
|
||
|
model.setItem(0, createItem(Qt::red, "Red", "Colorful"));
|
||
|
model.setItem(1, createItem(Qt::blue, "Blue", "Colorful"));
|
||
|
model.setItem(2, createItem(Qt::yellow, "Yellow", "Colorful"));
|
||
|
|
||
|
model.setItem(3, createItem(Qt::black, "Black", "Not Colorful"));
|
||
|
model.setItem(4, createItem(Qt::darkGray, "Dark Gray", "Not Colorful"));
|
||
|
model.setItem(5, createItem(Qt::gray, "Gray", "Not Colorful"));
|
||
|
model.setItem(6, createItem(Qt::lightGray, "Light Gray", "Not Colorful"));
|
||
|
model.setItem(7, createItem(Qt::white, "White", "Not Colorful"));
|
||
|
|
||
|
model.setItem(8, createItem(Qt::darkGreen, "Dark Green", ""));
|
||
|
model.setItem(9, createItem(Qt::green, "Green", ""));
|
||
|
|
||
|
CategorizedProxyModel pModel;
|
||
|
pModel.setSourceModel(&model);
|
||
|
|
||
|
CategorizedView w;
|
||
|
w.setModel(&pModel);
|
||
|
w.resize(640, 480);
|
||
|
w.show();
|
||
|
|
||
|
return a.exec();
|
||
|
}
|