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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
/*
For general Scribus (>=1.3.2) copyright and licensing information please refer
to the COPYING file provided with the program. Following this notice may exist
a copyright and/or license notice that predates the release of Scribus 1.3.2
for which a new license (GPL+exception) is in place.
*/
#include <QPainter>
#include "styleview.h"
StyleView::StyleView(QWidget *parent) : QTreeWidget(parent)
{
}
// StyleView::~StyleView()
// {
// }
void StyleView::drawRow(QPainter *painter, const QStyleOptionViewItem & option, const QModelIndex & index ) const
{
if (index.column() == 0)
{
QFont f(painter->font());
f.setBold(static_cast<StyleViewItem*>(itemFromIndex(index))->isDirty());
// p->setFont(f);
QStyleOptionViewItem newopt(option);
newopt.font = f;
QTreeView::drawRow(painter, newopt, index);
return;
}
QTreeView::drawRow(painter, option, index);
}
// void StyleView::contentsMousePressEvent(QMouseEvent *e)
// {
// if (e->button() == t::RightButton)
// emit rightButtonClicked(itemAt(e->pos()), e->globalPos(), 0);
// else
// Q3ListView::contentsMousePressEvent(e);
// }
// void StyleView::contentsMouseDoubleClickEvent(QMouseEvent *e)
// {
// if (e->button() == Qt::LeftButton)
// emit doubleClicked(itemAt(e->pos()), e->globalPos(), 0);
// else
// Q3ListView::contentsMouseDoubleClickEvent(e);
// }
/*** StyleViewItem *******************************************************************/
StyleViewItem::StyleViewItem(QTreeWidget *parent, const QString &text)
: QTreeWidgetItem(parent),
isRoot_(true), isDirty_(false),
parentName_(QString::null), rootName_(QString::null)
{
setFlags(flags() & ~Qt::ItemIsSelectable);
setText(0, text);
}
StyleViewItem::StyleViewItem(QTreeWidgetItem *parent, const QString &text, const QString &rootName)
: QTreeWidgetItem(parent),
isRoot_(false), isDirty_(false),
parentName_(parent->text(0)), rootName_(rootName)
{
setText(0, text);
}
// void StyleViewItem::paintCell(QPainter *p, const QColorGroup &cg, int column, int width, int align)
// {
// if (column == 0)
// {
// QFont f(p->font());
// f.setBold(isDirty_);
// p->setFont(f);
// }
//
// Q3ListViewItem::paintCell(p, cg, column, width, align);
// }
void StyleViewItem::setDirty(bool isDirty)
{
isDirty_ = isDirty;
}
bool StyleViewItem::isDirty()
{
return isDirty_;
}
bool StyleViewItem::isRoot()
{
return isRoot_;
}
QString StyleViewItem::parentName()
{
return parentName_;
}
QString StyleViewItem::rootName()
{
return rootName_;
}
// StyleViewItem::~StyleViewItem()
// {
//
// }
|