drilldownslice.cpp
63 lines
| 1.7 KiB
| text/x-c
|
CppLexer
Jani Honkonen
|
r851 | /**************************************************************************** | ||
** | ||||
** Copyright (C) 2012 Digia Plc | ||||
** 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 "drilldownslice.h" | ||||
QTCOMMERCIALCHART_USE_NAMESPACE | ||||
Jani Honkonen
|
r2102 | DrilldownSlice::DrilldownSlice(qreal value, QString prefix, QAbstractSeries *drilldownSeries) | ||
Jani Honkonen
|
r2098 | : m_drilldownSeries(drilldownSeries), | ||
m_prefix(prefix) | ||||
Jani Honkonen
|
r851 | { | ||
setValue(value); | ||||
updateLabel(); | ||||
Jani Honkonen
|
r906 | setLabelFont(QFont("Arial", 8)); | ||
Jani Honkonen
|
r1274 | connect(this, SIGNAL(percentageChanged()), this, SLOT(updateLabel())); | ||
Jani Honkonen
|
r1009 | connect(this, SIGNAL(hovered(bool)), this, SLOT(showHighlight(bool))); | ||
Jani Honkonen
|
r851 | } | ||
DrilldownSlice::~DrilldownSlice() | ||||
{ | ||||
} | ||||
Jani Honkonen
|
r2102 | QAbstractSeries *DrilldownSlice::drilldownSeries() const | ||
Jani Honkonen
|
r851 | { | ||
return m_drilldownSeries; | ||||
} | ||||
void DrilldownSlice::updateLabel() | ||||
{ | ||||
QString label = m_prefix; | ||||
Jani Honkonen
|
r892 | label += " $"; | ||
Jani Honkonen
|
r851 | label += QString::number(this->value()); | ||
Jani Honkonen
|
r892 | label += ", "; | ||
Jani Honkonen
|
r2098 | label += QString::number(this->percentage() * 100, 'f', 1); | ||
Jani Honkonen
|
r851 | label += "%"; | ||
setLabel(label); | ||||
} | ||||
Jani Honkonen
|
r1009 | void DrilldownSlice::showHighlight(bool show) | ||
Jani Honkonen
|
r892 | { | ||
Jani Honkonen
|
r1009 | setLabelVisible(show); | ||
Jani Honkonen
|
r1083 | setExploded(show); | ||
Jani Honkonen
|
r892 | } | ||
Jani Honkonen
|
r851 | #include "moc_drilldownslice.cpp" | ||