##// END OF EJS Templates
Check that areaseries is actually in chart before trying to update....
Check that areaseries is actually in chart before trying to update. When a line series is used both as a series on chart and as an area series boundary, but not at the same time, animation can sometimes get confused as to what series to update if the area series is removed from the chart and the line series is added to the chart while a series animation is running. Task-number: QTRD-3445 Change-Id: Ia3d72d3ceba784b6e162b2c9b678acdc3e3ffcac Reviewed-by: Titta Heikkala <titta.heikkala@theqtcompany.com>

File last commit:

r2776:bc1f6aa59d42
r2800:891ed0097501
Show More
charttitle.cpp
89 lines | 2.4 KiB | text/x-c | CppLexer
Michal Klocek
Refactors layout...
r1965 /****************************************************************************
**
Titta Heikkala
Copyright header changes...
r2776 ** Copyright (C) 2015 The Qt Company Ltd
Michal Klocek
Refactors layout...
r1965 ** All rights reserved.
Titta Heikkala
Copyright header changes...
r2776 ** For any questions to The Qt Company, please use contact form at http://qt.io
Michal Klocek
Refactors layout...
r1965 **
Titta Heikkala
Updated license headers...
r2740 ** This file is part of the Qt Charts module.
Michal Klocek
Refactors layout...
r1965 **
Titta Heikkala
Updated license headers...
r2740 ** Licensees holding valid commercial license for Qt may use this file in
** accordance with the Qt License Agreement provided with the Software
** or, alternatively, in accordance with the terms contained in a written
Titta Heikkala
Copyright header changes...
r2776 ** agreement between you and The Qt Company.
Michal Klocek
Refactors layout...
r1965 **
** If you have questions regarding the use of this file, please use
Titta Heikkala
Updated license headers...
r2740 ** contact form at http://qt.io
Michal Klocek
Refactors layout...
r1965 **
****************************************************************************/
Titta Heikkala
Fix include syntax...
r2714 #include <private/charttitle_p.h>
#include <private/chartpresenter_p.h>
#include <QtGui/QFont>
#include <QtGui/QFontMetrics>
#include <QtCore/QDebug>
#include <QtGui/QTextDocument>
Michal Klocek
Refactors layout...
r1965
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_BEGIN_NAMESPACE
Michal Klocek
Refactors layout...
r1965
Jani Honkonen
more coding style fixes for src-folder...
r2104 ChartTitle::ChartTitle(QGraphicsItem *parent)
Miikka Heikkinen
Added HTML support for various text items...
r2539 : QGraphicsTextItem(parent)
Michal Klocek
Refactors layout...
r1965 {
Miikka Heikkinen
Fix text item margins...
r2592 document()->setDocumentMargin(ChartPresenter::textMargin());
Michal Klocek
Refactors layout...
r1965 }
ChartTitle::~ChartTitle()
{
}
void ChartTitle::setText(const QString &text)
{
Jani Honkonen
astyle and manual coding style fixes for src-folder
r2097 m_text = text;
Michal Klocek
Refactors layout...
r1965 }
QString ChartTitle::text() const
{
return m_text;
}
void ChartTitle::setGeometry(const QRectF &rect)
{
Titta Heikkala
Fix multiline alignment...
r2607 QRectF truncatedRect;
Titta Heikkala
Fix long labels visibility for QBarChart...
r2604 QGraphicsTextItem::setHtml(ChartPresenter::truncatedText(font(), m_text, qreal(0.0),
rect.width(), rect.height(),
Titta Heikkala
Fix multiline alignment...
r2607 truncatedRect));
QGraphicsTextItem::setTextWidth(truncatedRect.width());
Jani Honkonen
astyle and manual coding style fixes for src-folder
r2097 setPos(rect.topLeft());
Michal Klocek
Refactors layout...
r1965 }
QSizeF ChartTitle::sizeHint(Qt::SizeHint which, const QSizeF &constraint) const
{
Jani Honkonen
astyle and manual coding style fixes for src-folder
r2097 Q_UNUSED(constraint);
QSizeF sh;
Michal Klocek
Refactors layout...
r1965
Jani Honkonen
astyle and manual coding style fixes for src-folder
r2097 switch (which) {
Miikka Heikkinen
Added HTML support for various text items...
r2539 case Qt::MinimumSize: {
Titta Heikkala
Qt Charts project file structure change...
r2712 QRectF titleRect = ChartPresenter::textBoundingRect(font(), QStringLiteral("..."));
Miikka Heikkinen
Added HTML support for various text items...
r2539 sh = QSizeF(titleRect.width(), titleRect.height());
Michal Klocek
Refactors layout...
r1965 break;
Miikka Heikkinen
Added HTML support for various text items...
r2539 }
Michal Klocek
Refactors layout...
r1965 case Qt::PreferredSize:
Miikka Heikkinen
Added HTML support for various text items...
r2539 case Qt::MaximumSize: {
QRectF titleRect = ChartPresenter::textBoundingRect(font(), m_text);
sh = QSizeF(titleRect.width(), titleRect.height());
Michal Klocek
Refactors layout...
r1965 break;
Miikka Heikkinen
Added HTML support for various text items...
r2539 }
case Qt::MinimumDescent: {
QFontMetrics fn(font());
Jani Honkonen
astyle and manual coding style fixes for src-folder
r2097 sh = QSizeF(0, fn.descent());
Michal Klocek
Refactors layout...
r1965 break;
Miikka Heikkinen
Added HTML support for various text items...
r2539 }
Michal Klocek
Refactors layout...
r1965 default:
Jani Honkonen
astyle and manual coding style fixes for src-folder
r2097 break;
}
Michal Klocek
Refactors layout...
r1965
Jani Honkonen
astyle and manual coding style fixes for src-folder
r2097 return sh;
Michal Klocek
Refactors layout...
r1965 }
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_END_NAMESPACE