##// END OF EJS Templates
Updated private header warning...
Updated private header warning Removed 'Enterprise' from the Chart API name. Change-Id: Id6c7f3896bfcd72da2deebee430826b9c25793f6 Task-number: QTRD-3511 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com>

File last commit:

r2807:a9a78a1d08bc
r2807:a9a78a1d08bc
Show More
legendmarkeritem_p.h
99 lines | 2.7 KiB | text/x-c | CLexer
/ src / charts / legend / legendmarkeritem_p.h
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164 /****************************************************************************
**
Titta Heikkala
Copyright header changes...
r2776 ** Copyright (C) 2015 The Qt Company Ltd
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164 ** All rights reserved.
Titta Heikkala
Copyright header changes...
r2776 ** For any questions to The Qt Company, please use contact form at http://qt.io
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164 **
Titta Heikkala
Updated license headers...
r2740 ** This file is part of the Qt Charts module.
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164 **
Titta Heikkala
Updated license headers...
r2740 ** Licensees holding valid commercial license for Qt may use this file in
** accordance with the Qt License Agreement provided with the Software
** or, alternatively, in accordance with the terms contained in a written
Titta Heikkala
Copyright header changes...
r2776 ** agreement between you and The Qt Company.
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164 **
** If you have questions regarding the use of this file, please use
Titta Heikkala
Updated license headers...
r2740 ** contact form at http://qt.io
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164 **
****************************************************************************/
// W A R N I N G
// -------------
//
Titta Heikkala
Updated private header warning...
r2807 // This file is not part of the Qt Chart API. It exists purely as an
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164 // implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
#ifndef LEGENDMARKERITEM_P_H
#define LEGENDMARKERITEM_P_H
Titta Heikkala
Fix include syntax...
r2714 #include <QtCharts/QChartGlobal>
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164 #include <QGraphicsObject>
Titta Heikkala
Fix include syntax...
r2714 #include <QtGui/QFont>
#include <QtGui/QBrush>
#include <QtGui/QPen>
#include <QtWidgets/QGraphicsTextItem>
#include <QtWidgets/QGraphicsLayoutItem>
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_BEGIN_NAMESPACE
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164
sauimone
refactoring
r2167 class QLegendMarkerPrivate;
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164
sauimone
better implementation of mouse event handling in legend
r2197 class LegendMarkerItem : public QGraphicsObject, public QGraphicsLayoutItem
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164 {
Q_OBJECT
Q_INTERFACES(QGraphicsLayoutItem)
public:
sauimone
refactoring
r2167 explicit LegendMarkerItem(QLegendMarkerPrivate *marker, QGraphicsObject *parent = 0);
sauimone
legendmarker hover signal test and fix
r2210 ~LegendMarkerItem();
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164
void setPen(const QPen &pen);
QPen pen() const;
void setBrush(const QBrush &brush);
QBrush brush() const;
void setFont(const QFont &font);
QFont font() const;
void setLabel(const QString label);
QString label() const;
void setLabelBrush(const QBrush &brush);
QBrush labelBrush() const;
sauimone
optional series parameter to markers function. code style fixes
r2193 void setGeometry(const QRectF &rect);
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164 QRectF boundingRect() const;
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
sauimone
optional series parameter to markers function. code style fixes
r2193 QSizeF sizeHint (Qt::SizeHint which, const QSizeF &constraint) const;
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164
sauimone
legendmarker hover signal test and fix
r2210 void hoverEnterEvent(QGraphicsSceneHoverEvent *event);
void hoverLeaveEvent(QGraphicsSceneHoverEvent *event);
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164 protected:
sauimone
layout work started
r2168 QLegendMarkerPrivate *m_marker; // Knows
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164 QRectF m_markerRect;
QRectF m_boundingRect;
Miikka Heikkinen
Added HTML support for various text items...
r2539 QGraphicsTextItem *m_textItem;
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164 QGraphicsRectItem *m_rectItem;
qreal m_margin;
qreal m_space;
sauimone
layout work started
r2168 QString m_label;
sauimone
tidying up legend marker code. Added QBarLegendMarker
r2174
sauimone
layout work started
r2168 QBrush m_labelBrush;
QPen m_pen;
QBrush m_brush;
sauimone
legendmarker hover signal test and fix
r2210 bool m_hovering;
sauimone
layout work started
r2168
sauimone
Kinetic scrolling is back for legend
r2189 QPointF m_pressPos;
sauimone
tidying up legend marker code. Added QBarLegendMarker
r2174 friend class QLegendMarker;
sauimone
layout work started
r2168 friend class QLegendMarkerPrivate;
friend class LegendLayout;
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164 };
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_END_NAMESPACE
sauimone
added LegendMarkerItem. Updated new legend example to test clicked of LegendMarker
r2164
#endif // LEGENDMARKERITEM_P_H