qchartview_p.h
65 lines
| 1.6 KiB
| text/x-c
|
CLexer
/ src / qchartview_p.h
Michal Klocek
|
r771 | /**************************************************************************** | ||
** | ||||
Miikka Heikkinen
|
r2432 | ** Copyright (C) 2013 Digia Plc | ||
Michal Klocek
|
r771 | ** All rights reserved. | ||
** For any questions to Digia, please use contact form at http://qt.digia.com | ||||
** | ||||
Miikka Heikkinen
|
r2574 | ** This file is part of the Qt Enterprise Charts Add-on. | ||
Michal Klocek
|
r771 | ** | ||
** $QT_BEGIN_LICENSE$ | ||||
Miikka Heikkinen
|
r2574 | ** Licensees holding valid Qt Enterprise licenses may use this file in | ||
** accordance with the Qt Enterprise License Agreement provided with the | ||||
Michal Klocek
|
r771 | ** 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$ | ||||
** | ||||
****************************************************************************/ | ||||
Michal Klocek
|
r750 | // W A R N I N G | ||
// ------------- | ||||
// | ||||
Miikka Heikkinen
|
r2574 | // This file is not part of the Qt Enterprise Chart API. It exists purely as an | ||
Michal Klocek
|
r750 | // implementation detail. This header file may change from version to | ||
// version without notice, or even be removed. | ||||
// | ||||
// We mean it. | ||||
#ifndef QCHARTVIEW_P_H | ||||
#define QCHARTVIEW_P_H | ||||
#include "qchartview.h" | ||||
class QGraphicsScene; | ||||
Michal Klocek
|
r969 | class ChartPresenter; | ||
Michal Klocek
|
r750 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
class QChart; | ||||
Michal Klocek
|
r1290 | class QChartView; | ||
Michal Klocek
|
r750 | |||
Jani Honkonen
|
r2097 | class QChartViewPrivate | ||
{ | ||||
Michal Klocek
|
r1290 | public: | ||
Jani Honkonen
|
r1935 | explicit QChartViewPrivate(QChartView *q, QChart *chart = 0); | ||
Michal Klocek
|
r750 | ~QChartViewPrivate(); | ||
Jani Honkonen
|
r2056 | void setChart(QChart *chart); | ||
void resize(); | ||||
Michal Klocek
|
r750 | |||
Michal Klocek
|
r1290 | protected: | ||
QChartView *q_ptr; | ||||
public: | ||||
Michal Klocek
|
r750 | QGraphicsScene *m_scene; | ||
QChart *m_chart; | ||||
QPoint m_rubberBandOrigin; | ||||
Titta Heikkala
|
r2623 | #ifndef QT_NO_RUBBERBAND | ||
Michal Klocek
|
r750 | QRubberBand *m_rubberBand; | ||
Titta Heikkala
|
r2623 | #endif | ||
Michal Klocek
|
r750 | QChartView::RubberBands m_rubberBandFlags; | ||
}; | ||||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif | ||||