charttitle.cpp
94 lines
| 2.2 KiB
| text/x-c
|
CppLexer
/ src / charttitle.cpp
Michal Klocek
|
r1965 | /**************************************************************************** | ||
** | ||||
Miikka Heikkinen
|
r2432 | ** Copyright (C) 2013 Digia Plc | ||
Michal Klocek
|
r1965 | ** All rights reserved. | ||
** For any questions to Digia, please use contact form at http://qt.digia.com | ||||
** | ||||
** This file is part of the Qt Commercial Charts Add-on. | ||||
** | ||||
** $QT_BEGIN_LICENSE$ | ||||
** Licensees holding valid Qt Commercial licenses may use this file in | ||||
** accordance with the Qt Commercial License Agreement provided with the | ||||
** Software or, alternatively, in accordance with the terms contained in | ||||
** a written agreement between you and Digia. | ||||
** | ||||
** If you have questions regarding the use of this file, please use | ||||
** contact form at http://qt.digia.com | ||||
** $QT_END_LICENSE$ | ||||
** | ||||
****************************************************************************/ | ||||
#include "charttitle_p.h" | ||||
#include <QFont> | ||||
#include <QFontMetrics> | ||||
#include <QDebug> | ||||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Jani Honkonen
|
r2104 | ChartTitle::ChartTitle(QGraphicsItem *parent) | ||
Jani Honkonen
|
r2097 | : QGraphicsSimpleTextItem(parent) | ||
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) | ||||
{ | ||||
Jani Honkonen
|
r2097 | QFontMetrics fn(font()); | ||
Michal Klocek
|
r1965 | |||
Jani Honkonen
|
r2097 | int width = rect.width(); | ||
Michal Klocek
|
r1965 | |||
Jani Honkonen
|
r2097 | if (fn.boundingRect(m_text).width() > width) { | ||
QString string = m_text + "..."; | ||||
while (fn.boundingRect(string).width() > width && string.length() > 3) | ||||
string.remove(string.length() - 4, 1); | ||||
QGraphicsSimpleTextItem::setText(string); | ||||
} else { | ||||
QGraphicsSimpleTextItem::setText(m_text); | ||||
} | ||||
Michal Klocek
|
r1965 | |||
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); | ||
QFontMetrics fn(font()); | ||||
QSizeF sh; | ||||
Michal Klocek
|
r1965 | |||
Jani Honkonen
|
r2097 | switch (which) { | ||
Michal Klocek
|
r1965 | case Qt::MinimumSize: | ||
Jani Honkonen
|
r2097 | sh = QSizeF(fn.boundingRect("...").width(), fn.height()); | ||
Michal Klocek
|
r1965 | break; | ||
case Qt::PreferredSize: | ||||
Michal Klocek
|
r2133 | sh = fn.boundingRect(m_text).size(); | ||
Michal Klocek
|
r1965 | break; | ||
case Qt::MaximumSize: | ||||
Michal Klocek
|
r2133 | sh = fn.boundingRect(m_text).size(); | ||
Michal Klocek
|
r1965 | break; | ||
case Qt::MinimumDescent: | ||||
Jani Honkonen
|
r2097 | sh = QSizeF(0, fn.descent()); | ||
Michal Klocek
|
r1965 | break; | ||
default: | ||||
Jani Honkonen
|
r2097 | break; | ||
} | ||||
Michal Klocek
|
r1965 | |||
Jani Honkonen
|
r2097 | return sh; | ||
Michal Klocek
|
r1965 | } | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||