charttitle.cpp
89 lines
| 2.3 KiB
| text/x-c
|
CppLexer
Michal Klocek
|
r1965 | /**************************************************************************** | ||
** | ||||
Titta Heikkala
|
r2688 | ** Copyright (C) 2014 Digia Plc | ||
Michal Klocek
|
r1965 | ** All rights reserved. | ||
Titta Heikkala
|
r2740 | ** For any questions to Digia, please use contact form at http://qt.io | ||
Michal Klocek
|
r1965 | ** | ||
Titta Heikkala
|
r2740 | ** This file is part of the Qt Charts module. | ||
Michal Klocek
|
r1965 | ** | ||
Titta Heikkala
|
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 | ||||
** agreement between you and Digia. | ||||
Michal Klocek
|
r1965 | ** | ||
** If you have questions regarding the use of this file, please use | ||||
Titta Heikkala
|
r2740 | ** contact form at http://qt.io | ||
Michal Klocek
|
r1965 | ** | ||
****************************************************************************/ | ||||
Titta Heikkala
|
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
|
r1965 | |||
Titta Heikkala
|
r2712 | QT_CHARTS_BEGIN_NAMESPACE | ||
Michal Klocek
|
r1965 | |||
Jani Honkonen
|
r2104 | ChartTitle::ChartTitle(QGraphicsItem *parent) | ||
Miikka Heikkinen
|
r2539 | : QGraphicsTextItem(parent) | ||
Michal Klocek
|
r1965 | { | ||
Miikka Heikkinen
|
r2592 | document()->setDocumentMargin(ChartPresenter::textMargin()); | ||
Michal Klocek
|
r1965 | } | ||
ChartTitle::~ChartTitle() | ||||
{ | ||||
} | ||||
void ChartTitle::setText(const QString &text) | ||||
{ | ||||
Jani Honkonen
|
r2097 | m_text = text; | ||
Michal Klocek
|
r1965 | } | ||
QString ChartTitle::text() const | ||||
{ | ||||
return m_text; | ||||
} | ||||
void ChartTitle::setGeometry(const QRectF &rect) | ||||
{ | ||||
Titta Heikkala
|
r2607 | QRectF truncatedRect; | ||
Titta Heikkala
|
r2604 | QGraphicsTextItem::setHtml(ChartPresenter::truncatedText(font(), m_text, qreal(0.0), | ||
rect.width(), rect.height(), | ||||
Titta Heikkala
|
r2607 | truncatedRect)); | ||
QGraphicsTextItem::setTextWidth(truncatedRect.width()); | ||||
Jani Honkonen
|
r2097 | setPos(rect.topLeft()); | ||
Michal Klocek
|
r1965 | } | ||
QSizeF ChartTitle::sizeHint(Qt::SizeHint which, const QSizeF &constraint) const | ||||
{ | ||||
Jani Honkonen
|
r2097 | Q_UNUSED(constraint); | ||
QSizeF sh; | ||||
Michal Klocek
|
r1965 | |||
Jani Honkonen
|
r2097 | switch (which) { | ||
Miikka Heikkinen
|
r2539 | case Qt::MinimumSize: { | ||
Titta Heikkala
|
r2712 | QRectF titleRect = ChartPresenter::textBoundingRect(font(), QStringLiteral("...")); | ||
Miikka Heikkinen
|
r2539 | sh = QSizeF(titleRect.width(), titleRect.height()); | ||
Michal Klocek
|
r1965 | break; | ||
Miikka Heikkinen
|
r2539 | } | ||
Michal Klocek
|
r1965 | case Qt::PreferredSize: | ||
Miikka Heikkinen
|
r2539 | case Qt::MaximumSize: { | ||
QRectF titleRect = ChartPresenter::textBoundingRect(font(), m_text); | ||||
sh = QSizeF(titleRect.width(), titleRect.height()); | ||||
Michal Klocek
|
r1965 | break; | ||
Miikka Heikkinen
|
r2539 | } | ||
case Qt::MinimumDescent: { | ||||
QFontMetrics fn(font()); | ||||
Jani Honkonen
|
r2097 | sh = QSizeF(0, fn.descent()); | ||
Michal Klocek
|
r1965 | break; | ||
Miikka Heikkinen
|
r2539 | } | ||
Michal Klocek
|
r1965 | default: | ||
Jani Honkonen
|
r2097 | break; | ||
} | ||||
Michal Klocek
|
r1965 | |||
Jani Honkonen
|
r2097 | return sh; | ||
Michal Klocek
|
r1965 | } | ||
Titta Heikkala
|
r2712 | QT_CHARTS_END_NAMESPACE | ||