##// END OF EJS Templates
Fix pie slice label rotation...
Titta Heikkala -
r2629:6244acef2135
parent child
Show More
@@ -1,308 +1,309
1 1 /****************************************************************************
2 2 **
3 3 ** Copyright (C) 2013 Digia Plc
4 4 ** All rights reserved.
5 5 ** For any questions to Digia, please use contact form at http://qt.digia.com
6 6 **
7 7 ** This file is part of the Qt Enterprise Charts Add-on.
8 8 **
9 9 ** $QT_BEGIN_LICENSE$
10 10 ** Licensees holding valid Qt Enterprise licenses may use this file in
11 11 ** accordance with the Qt Enterprise License Agreement provided with the
12 12 ** Software or, alternatively, in accordance with the terms contained in
13 13 ** a written agreement between you and Digia.
14 14 **
15 15 ** If you have questions regarding the use of this file, please use
16 16 ** contact form at http://qt.digia.com
17 17 ** $QT_END_LICENSE$
18 18 **
19 19 ****************************************************************************/
20 20
21 21 #include "piesliceitem_p.h"
22 22 #include "piechartitem_p.h"
23 23 #include "qpieseries.h"
24 24 #include "qpieslice.h"
25 25 #include "chartpresenter_p.h"
26 26 #include <QPainter>
27 27 #include <qmath.h>
28 28 #include <QGraphicsSceneEvent>
29 29 #include <QTime>
30 30 #include <QTextDocument>
31 31 #include <QDebug>
32 32
33 33 QTCOMMERCIALCHART_BEGIN_NAMESPACE
34 34
35 35 QPointF offset(qreal angle, qreal length)
36 36 {
37 37 qreal dx = qSin(angle * (M_PI / 180)) * length;
38 38 qreal dy = qCos(angle * (M_PI / 180)) * length;
39 39 return QPointF(dx, -dy);
40 40 }
41 41
42 42 PieSliceItem::PieSliceItem(QGraphicsItem *parent)
43 43 : QGraphicsObject(parent),
44 44 m_hovered(false)
45 45 {
46 46 setAcceptHoverEvents(true);
47 47 setAcceptedMouseButtons(Qt::MouseButtonMask);
48 48 setZValue(ChartPresenter::PieSeriesZValue);
49 49 m_labelItem = new QGraphicsTextItem(this);
50 50 m_labelItem->document()->setDocumentMargin(1.0);
51 51 }
52 52
53 53 PieSliceItem::~PieSliceItem()
54 54 {
55 55 // If user is hovering over the slice and it gets destroyed we do
56 56 // not get a hover leave event. So we must emit the signal here.
57 57 if (m_hovered)
58 58 emit hovered(false);
59 59 }
60 60
61 61 QRectF PieSliceItem::boundingRect() const
62 62 {
63 63 return m_boundingRect;
64 64 }
65 65
66 66 QPainterPath PieSliceItem::shape() const
67 67 {
68 68 // Don't include the label and label arm.
69 69 // This is used to detect a mouse clicks. We do not want clicks from label.
70 70 return m_slicePath;
71 71 }
72 72
73 73 void PieSliceItem::paint(QPainter *painter, const QStyleOptionGraphicsItem * /*option*/, QWidget * /*widget*/)
74 74 {
75 75 painter->save();
76 76 painter->setClipRect(parentItem()->boundingRect());
77 77 painter->setPen(m_data.m_slicePen);
78 78 painter->setBrush(m_data.m_sliceBrush);
79 79 painter->drawPath(m_slicePath);
80 80 painter->restore();
81 81
82 82 if (m_data.m_isLabelVisible) {
83 83 painter->save();
84 84
85 85 // Pen for label arm not defined in the QPieSeries api, let's use brush's color instead
86 86 painter->setBrush(m_data.m_labelBrush);
87 87
88 88 if (m_data.m_labelPosition == QPieSlice::LabelOutside) {
89 89 painter->setClipRect(parentItem()->boundingRect());
90 90 painter->strokePath(m_labelArmPath, m_data.m_labelBrush.color());
91 91 }
92 92
93 93 painter->restore();
94 94 }
95 95 }
96 96
97 97 void PieSliceItem::hoverEnterEvent(QGraphicsSceneHoverEvent * /*event*/)
98 98 {
99 99 m_hovered = true;
100 100 emit hovered(true);
101 101 }
102 102
103 103 void PieSliceItem::hoverLeaveEvent(QGraphicsSceneHoverEvent * /*event*/)
104 104 {
105 105 m_hovered = false;
106 106 emit hovered(false);
107 107 }
108 108
109 109 void PieSliceItem::mousePressEvent(QGraphicsSceneMouseEvent *event)
110 110 {
111 111 emit clicked(event->buttons());
112 112 QGraphicsItem::mousePressEvent(event);
113 113 }
114 114
115 115 void PieSliceItem::setLayout(const PieSliceData &sliceData)
116 116 {
117 117 m_data = sliceData;
118 118 updateGeometry();
119 119 update();
120 120 }
121 121
122 122 void PieSliceItem::updateGeometry()
123 123 {
124 124 if (m_data.m_radius <= 0)
125 125 return;
126 126
127 127 prepareGeometryChange();
128 128
129 129 // slice path
130 130 qreal centerAngle;
131 131 QPointF armStart;
132 132 m_slicePath = slicePath(m_data.m_center, m_data.m_radius, m_data.m_startAngle, m_data.m_angleSpan, &centerAngle, &armStart);
133 133
134 134 m_labelItem->setVisible(m_data.m_isLabelVisible);
135 135
136 136 if (m_data.m_isLabelVisible) {
137 137 // text rect
138 138 QFontMetricsF fm(m_data.m_labelFont);
139 139 m_labelTextRect = ChartPresenter::textBoundingRect(m_data.m_labelFont,
140 140 m_data.m_labelText,
141 141 0);
142 142
143 143 QString label(m_data.m_labelText);
144 144 m_labelItem->setDefaultTextColor(m_data.m_labelBrush.color());
145 145 m_labelItem->setFont(m_data.m_labelFont);
146 146
147 147 // text position
148 148 if (m_data.m_labelPosition == QPieSlice::LabelOutside) {
149 149 setFlag(QGraphicsItem::ItemClipsChildrenToShape, false);
150 150
151 151 // label arm path
152 152 QPointF labelTextStart;
153 153 m_labelArmPath = labelArmPath(armStart, centerAngle,
154 154 m_data.m_radius * m_data.m_labelArmLengthFactor,
155 155 m_labelTextRect.width(), &labelTextStart);
156 156
157 157 m_labelTextRect.moveBottomLeft(labelTextStart);
158 158 if (m_labelTextRect.left() < 0)
159 159 m_labelTextRect.setLeft(0);
160 160 else if (m_labelTextRect.left() < parentItem()->boundingRect().left())
161 161 m_labelTextRect.setLeft(parentItem()->boundingRect().left());
162 162 if (m_labelTextRect.right() > parentItem()->boundingRect().right())
163 163 m_labelTextRect.setRight(parentItem()->boundingRect().right());
164 164
165 165 if (fm.width(m_data.m_labelText) > m_labelTextRect.width()) {
166 166 label = ChartPresenter::truncatedText(m_data.m_labelFont, m_data.m_labelText,
167 167 qreal(0.0), m_labelTextRect.width(),
168 168 m_labelTextRect.height(), m_labelTextRect);
169 169 m_labelArmPath = labelArmPath(armStart, centerAngle,
170 170 m_data.m_radius * m_data.m_labelArmLengthFactor,
171 171 m_labelTextRect.width(), &labelTextStart);
172 172
173 173 m_labelTextRect.moveBottomLeft(labelTextStart);
174 174 }
175 175 m_labelItem->setTextWidth(m_labelTextRect.width()
176 176 + m_labelItem->document()->documentMargin());
177 177 m_labelItem->setHtml(label);
178 m_labelItem->setRotation(0);
178 179 m_labelItem->setPos(m_labelTextRect.x(), m_labelTextRect.y() + 1.0);
179 180 } else {
180 181 // label inside
181 182 setFlag(QGraphicsItem::ItemClipsChildrenToShape);
182 183 m_labelItem->setTextWidth(m_labelTextRect.width()
183 184 + m_labelItem->document()->documentMargin());
184 185 m_labelItem->setHtml(label);
185 186
186 187 QPointF textCenter;
187 188 if (m_data.m_holeRadius > 0) {
188 189 textCenter = m_data.m_center + offset(centerAngle, m_data.m_holeRadius
189 190 + (m_data.m_radius
190 191 - m_data.m_holeRadius) / 2);
191 192 } else {
192 193 textCenter = m_data.m_center + offset(centerAngle, m_data.m_radius / 2);
193 194 }
194 195 m_labelItem->setPos(textCenter.x() - m_labelItem->boundingRect().width() / 2,
195 196 textCenter.y() - fm.height() / 2);
196 197
197 198 QPointF labelCenter = m_labelItem->boundingRect().center();
198 199 m_labelItem->setTransformOriginPoint(labelCenter);
199 200
200 201 if (m_data.m_labelPosition == QPieSlice::LabelInsideTangential) {
201 202 m_labelItem->setRotation(m_data.m_startAngle + m_data.m_angleSpan / 2);
202 203 } else if (m_data.m_labelPosition == QPieSlice::LabelInsideNormal) {
203 204 if (m_data.m_startAngle + m_data.m_angleSpan / 2 < 180)
204 205 m_labelItem->setRotation(m_data.m_startAngle + m_data.m_angleSpan / 2 - 90);
205 206 else
206 207 m_labelItem->setRotation(m_data.m_startAngle + m_data.m_angleSpan / 2 + 90);
207 208 } else {
208 209 m_labelItem->setRotation(0);
209 210 }
210 211 }
211 212 }
212 213
213 214 // bounding rect
214 215 if (m_data.m_isLabelVisible)
215 216 m_boundingRect = m_slicePath.boundingRect().united(m_labelArmPath.boundingRect()).united(m_labelTextRect);
216 217 else
217 218 m_boundingRect = m_slicePath.boundingRect();
218 219
219 220 // Inflate bounding rect by 2/3 pen width to make sure it encompasses whole slice also for thick pens
220 221 // and miter joins.
221 222 int penWidth = (m_data.m_slicePen.width() * 2) / 3;
222 223 m_boundingRect = m_boundingRect.adjusted(-penWidth, -penWidth, penWidth, penWidth);
223 224 }
224 225
225 226 QPointF PieSliceItem::sliceCenter(QPointF point, qreal radius, QPieSlice *slice)
226 227 {
227 228 if (slice->isExploded()) {
228 229 qreal centerAngle = slice->startAngle() + (slice->angleSpan() / 2);
229 230 qreal len = radius * slice->explodeDistanceFactor();
230 231 point += offset(centerAngle, len);
231 232 }
232 233 return point;
233 234 }
234 235
235 236 QPainterPath PieSliceItem::slicePath(QPointF center, qreal radius, qreal startAngle, qreal angleSpan, qreal *centerAngle, QPointF *armStart)
236 237 {
237 238 // calculate center angle
238 239 *centerAngle = startAngle + (angleSpan / 2);
239 240
240 241 // calculate slice rectangle
241 242 QRectF rect(center.x() - radius, center.y() - radius, radius * 2, radius * 2);
242 243
243 244 // slice path
244 245 QPainterPath path;
245 246 if (m_data.m_holeRadius > 0) {
246 247 QRectF insideRect(center.x() - m_data.m_holeRadius, center.y() - m_data.m_holeRadius, m_data.m_holeRadius * 2, m_data.m_holeRadius * 2);
247 248 path.arcMoveTo(rect, -startAngle + 90);
248 249 path.arcTo(rect, -startAngle + 90, -angleSpan);
249 250 path.arcTo(insideRect, -startAngle + 90 - angleSpan, angleSpan);
250 251 path.closeSubpath();
251 252 } else {
252 253 path.moveTo(rect.center());
253 254 path.arcTo(rect, -startAngle + 90, -angleSpan);
254 255 path.closeSubpath();
255 256 }
256 257
257 258 // calculate label arm start point
258 259 *armStart = center;
259 260 *armStart += offset(*centerAngle, radius + PIESLICE_LABEL_GAP);
260 261
261 262 return path;
262 263 }
263 264
264 265 QPainterPath PieSliceItem::labelArmPath(QPointF start, qreal angle, qreal length, qreal textWidth, QPointF *textStart)
265 266 {
266 267 // Normalize the angle to 0-360 range
267 268 // NOTE: We are using int here on purpose. Depenging on platform and hardware
268 269 // qreal can be a double, float or something the user gives to the Qt configure
269 270 // (QT_COORD_TYPE). Compilers do not seem to support modulo for double or float
270 271 // but there are fmod() and fmodf() functions for that. So instead of some #ifdef
271 272 // that might break we just use int. Precision for this is just fine for our needs.
272 273 int normalized = angle * 10.0;
273 274 normalized = normalized % 3600;
274 275 if (normalized < 0)
275 276 normalized += 3600;
276 277 angle = (qreal) normalized / 10.0;
277 278
278 279 // prevent label arm pointing straight down because it will look bad
279 280 if (angle < 180 && angle > 170)
280 281 angle = 170;
281 282 if (angle > 180 && angle < 190)
282 283 angle = 190;
283 284
284 285 // line from slice to label
285 286 QPointF parm1 = start + offset(angle, length);
286 287
287 288 // line to underline the label
288 289 QPointF parm2 = parm1;
289 290 if (angle < 180) { // arm swings the other way on the left side
290 291 parm2 += QPointF(textWidth, 0);
291 292 *textStart = parm1;
292 293 } else {
293 294 parm2 += QPointF(-textWidth, 0);
294 295 *textStart = parm2;
295 296 }
296 297
297 298 QPainterPath path;
298 299 path.moveTo(start);
299 300 path.lineTo(parm1);
300 301 path.lineTo(parm2);
301 302
302 303 return path;
303 304 }
304 305
305 306 #include "moc_piesliceitem_p.cpp"
306 307
307 308 QTCOMMERCIALCHART_END_NAMESPACE
308 309
General Comments 0
You need to be logged in to leave comments. Login now