| 1 | /**************************************************************************** | 
|---|---|
| 2 | ** | 
| 3 | ** Copyright (C) 2016 The Qt Company Ltd. | 
| 4 | ** Contact: https://www.qt.io/licensing/ | 
| 5 | ** | 
| 6 | ** This file is part of the Qt Charts module of the Qt Toolkit. | 
| 7 | ** | 
| 8 | ** $QT_BEGIN_LICENSE:GPL$ | 
| 9 | ** Commercial License Usage | 
| 10 | ** Licensees holding valid commercial Qt licenses may use this file in | 
| 11 | ** accordance with the commercial license agreement provided with the | 
| 12 | ** Software or, alternatively, in accordance with the terms contained in | 
| 13 | ** a written agreement between you and The Qt Company. For licensing terms | 
| 14 | ** and conditions see https://www.qt.io/terms-conditions. For further | 
| 15 | ** information use the contact form at https://www.qt.io/contact-us. | 
| 16 | ** | 
| 17 | ** GNU General Public License Usage | 
| 18 | ** Alternatively, this file may be used under the terms of the GNU | 
| 19 | ** General Public License version 3 or (at your option) any later version | 
| 20 | ** approved by the KDE Free Qt Foundation. The licenses are as published by | 
| 21 | ** the Free Software Foundation and appearing in the file LICENSE.GPL3 | 
| 22 | ** included in the packaging of this file. Please review the following | 
| 23 | ** information to ensure the GNU General Public License requirements will | 
| 24 | ** be met: https://www.gnu.org/licenses/gpl-3.0.html. | 
| 25 | ** | 
| 26 | ** $QT_END_LICENSE$ | 
| 27 | ** | 
| 28 | ****************************************************************************/ | 
| 29 | |
| 30 | // W A R N I N G | 
| 31 | // ------------- | 
| 32 | // | 
| 33 | // This file is not part of the Qt Chart API. It exists purely as an | 
| 34 | // implementation detail. This header file may change from version to | 
| 35 | // version without notice, or even be removed. | 
| 36 | // | 
| 37 | // We mean it. | 
| 38 | |
| 39 | #ifndef LINECHARTITEM_H | 
| 40 | #define LINECHARTITEM_H | 
| 41 | |
| 42 | #include <QtCharts/QChartGlobal> | 
| 43 | #include <private/xychart_p.h> | 
| 44 | #include <QtCharts/QChart> | 
| 45 | #include <QtGui/QPen> | 
| 46 | #include <QtCharts/private/qchartglobal_p.h> | 
| 47 | |
| 48 | QT_CHARTS_BEGIN_NAMESPACE | 
| 49 | |
| 50 | class QLineSeries; | 
| 51 | class ChartPresenter; | 
| 52 | |
| 53 | class Q_CHARTS_PRIVATE_EXPORT LineChartItem : public XYChart | 
| 54 | { | 
| 55 | Q_OBJECT | 
| 56 | Q_INTERFACES(QGraphicsItem) | 
| 57 | public: | 
| 58 | explicit LineChartItem(QLineSeries *series, QGraphicsItem *item = 0); | 
| 59 | ~LineChartItem() {} | 
| 60 | |
| 61 | //from QGraphicsItem | 
| 62 | QRectF boundingRect() const; | 
| 63 | void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget); | 
| 64 | QPainterPath shape() const; | 
| 65 | |
| 66 | QPainterPath path() const { return m_fullPath; } | 
| 67 | |
| 68 | public Q_SLOTS: | 
| 69 | void handleUpdated(); | 
| 70 | |
| 71 | protected: | 
| 72 | void updateGeometry(); | 
| 73 | void mousePressEvent(QGraphicsSceneMouseEvent *event); | 
| 74 | void hoverEnterEvent(QGraphicsSceneHoverEvent *event); | 
| 75 | void hoverLeaveEvent(QGraphicsSceneHoverEvent *event); | 
| 76 | void mouseReleaseEvent(QGraphicsSceneMouseEvent *event); | 
| 77 | void mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event); | 
| 78 | void suppressPoints() { m_pointsVisible = false; } | 
| 79 | void forceChartType(QChart::ChartType chartType) { m_chartType = chartType; } | 
| 80 | |
| 81 | private: | 
| 82 | QLineSeries *m_series; | 
| 83 | QPainterPath m_linePath; | 
| 84 | QPainterPath m_linePathPolarRight; | 
| 85 | QPainterPath m_linePathPolarLeft; | 
| 86 | QPainterPath m_fullPath; | 
| 87 | QPainterPath m_shapePath; | 
| 88 | |
| 89 | QVector<QPointF> m_linePoints; | 
| 90 | QRectF m_rect; | 
| 91 | QPen m_linePen; | 
| 92 | bool m_pointsVisible; | 
| 93 | QChart::ChartType m_chartType; | 
| 94 | |
| 95 | bool m_pointLabelsVisible; | 
| 96 | QString m_pointLabelsFormat; | 
| 97 | QFont m_pointLabelsFont; | 
| 98 | QColor m_pointLabelsColor; | 
| 99 | bool m_pointLabelsClipping; | 
| 100 | |
| 101 | QPointF m_lastMousePos; | 
| 102 | bool m_mousePressed; | 
| 103 | }; | 
| 104 | |
| 105 | QT_CHARTS_END_NAMESPACE | 
| 106 | |
| 107 | #endif | 
| 108 | 
