qlegend_p.h
100 lines
| 2.6 KiB
| text/x-c
|
CLexer
Michal Klocek
|
r950 | /**************************************************************************** | ||
** | ||||
Miikka Heikkinen
|
r2432 | ** Copyright (C) 2013 Digia Plc | ||
Michal Klocek
|
r950 | ** 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$ | ||||
** | ||||
****************************************************************************/ | ||||
// W A R N I N G | ||||
// ------------- | ||||
// | ||||
// This file is not part of the QtCommercial Chart API. It exists purely as an | ||||
// implementation detail. This header file may change from version to | ||||
// version without notice, or even be removed. | ||||
// | ||||
// We mean it. | ||||
Michal Klocek
|
r969 | #ifndef QLEGEND_P_H | ||
#define QLEGEND_P_H | ||||
Michal Klocek
|
r950 | |||
#include "qlegend.h" | ||||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
sauimone
|
r1300 | class QChart; | ||
Michal Klocek
|
r950 | class ChartPresenter; | ||
Tero Ahola
|
r988 | class QAbstractSeries; | ||
Michal Klocek
|
r1534 | class LegendLayout; | ||
sauimone
|
r2161 | class QLegendMarker; | ||
Michal Klocek
|
r950 | |||
sauimone
|
r2197 | class QLegendPrivate : public QObject | ||
Michal Klocek
|
r950 | { | ||
Q_OBJECT | ||||
public: | ||||
sauimone
|
r1300 | QLegendPrivate(ChartPresenter *presenter, QChart *chart, QLegend *q); | ||
Michal Klocek
|
r950 | ~QLegendPrivate(); | ||
sauimone
|
r2189 | void setOffset(const QPointF &offset); | ||
sauimone
|
r1458 | QPointF offset() const; | ||
sauimone
|
r1453 | int roundness(qreal size); | ||
Michal Klocek
|
r1534 | |||
sauimone
|
r2160 | QGraphicsItemGroup* items() { return m_items; } | ||
sauimone
|
r2193 | QList<QLegendMarker*> markers(QAbstractSeries *series = 0); | ||
Michal Klocek
|
r950 | |||
public Q_SLOTS: | ||||
sauimone
|
r2173 | void handleSeriesAdded(QAbstractSeries *series); | ||
Tero Ahola
|
r988 | void handleSeriesRemoved(QAbstractSeries *series); | ||
sauimone
|
r1459 | void handleSeriesVisibleChanged(); | ||
Michal Klocek
|
r2085 | void handleCountChanged(); | ||
Michal Klocek
|
r950 | |||
sauimone
|
r2182 | private: | ||
// Internal helpers | ||||
void addMarkers(QList<QLegendMarker *> markers); | ||||
void removeMarkers(QList<QLegendMarker *> markers); | ||||
void decorateMarkers(QList<QLegendMarker *> markers); | ||||
Michal Klocek
|
r950 | private: | ||
QLegend *q_ptr; | ||||
ChartPresenter *m_presenter; | ||||
Michal Klocek
|
r1534 | LegendLayout *m_layout; | ||
sauimone
|
r2193 | QChart *m_chart; | ||
QGraphicsItemGroup *m_items; | ||||
Tero Ahola
|
r1357 | Qt::Alignment m_alignment; | ||
Michal Klocek
|
r950 | QBrush m_brush; | ||
QPen m_pen; | ||||
sauimone
|
r1522 | QFont m_font; | ||
sauimone
|
r1527 | QBrush m_labelBrush; | ||
Michal Klocek
|
r1534 | |||
sauimone
|
r1453 | qreal m_diameter; | ||
Michal Klocek
|
r950 | bool m_attachedToChart; | ||
bool m_backgroundVisible; | ||||
sauimone
|
r2193 | QList<QLegendMarker *> m_markers; | ||
QList<QAbstractSeries *> m_series; | ||||
sauimone
|
r2160 | |||
sauimone
|
r2197 | QHash<QGraphicsItem *, QLegendMarker *> m_markerHash; | ||
sauimone
|
r2183 | friend class QLegend; | ||
friend class LegendMarkerItem; | ||||
sauimone
|
r2193 | friend class LegendLayout; | ||
sauimone
|
r2194 | friend class QLegendMarkerPrivate; | ||
sauimone
|
r2197 | friend class LegendScroller; | ||
Michal Klocek
|
r950 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif | ||||