##// END OF EJS Templates
Add horizontal box plot model mapper....
Add horizontal box plot model mapper. Change-Id: Icddd343e5bf466e4bd38fee6ce221c14ad729e37 Reviewed-by: Mika Salmela <mika.salmela@theqtcompany.com> Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com>

File last commit:

r2854:46147b040d06
r2873:4cbd063d2219
Show More
qlegendmarker.h
116 lines | 3.4 KiB | text/x-c | CLexer
Miikka Heikkinen
Updated license...
r2854 /****************************************************************************
Titta Heikkala
Updated license headers...
r2845 **
Miikka Heikkinen
Updated license...
r2854 ** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
Titta Heikkala
Updated license headers...
r2845 **
Miikka Heikkinen
Updated license...
r2854 ** This file is part of the Qt Charts module of the Qt Toolkit.
Titta Heikkala
Updated license headers...
r2845 **
Miikka Heikkinen
Updated license...
r2854 ** $QT_BEGIN_LICENSE:GPL$
Titta Heikkala
Updated license headers...
r2845 ** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
Miikka Heikkinen
Updated license...
r2854 ** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 or (at your option) any later version
** approved by the KDE Free Qt Foundation. The licenses are as published by
** the Free Software Foundation and appearing in the file LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
Titta Heikkala
Updated license headers...
r2845 **
** $QT_END_LICENSE$
**
Miikka Heikkinen
Updated license...
r2854 ****************************************************************************/
sauimone
first prototry of QLegendMarker API
r2160
#ifndef QLEGENDMARKER_H
#define QLEGENDMARKER_H
Titta Heikkala
Fix include syntax...
r2714 #include <QtCharts/QChartGlobal>
#include <QtCore/QObject>
#include <QtGui/QPen>
#include <QtGui/QBrush>
#include <QtGui/QFont>
sauimone
first prototry of QLegendMarker API
r2160
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_BEGIN_NAMESPACE
sauimone
first prototry of QLegendMarker API
r2160
sauimone
Added createLegendMarkers to private series. This will replace old createLegendMarker method. Notice the s in new method name. PIMPL for QLegendMarker. Newlegend example updated a bit
r2163 class QLegendMarkerPrivate;
sauimone
new legend example for testing new api. Currently using still the old one.
r2162 class QAbstractSeries;
sauimone
removing old commented code. removing domain parameter from handleseriesadded of pimpl. adding QLegend parameter to marker construction
r2171 class QLegend;
sauimone
first prototry of QLegendMarker API
r2160
Titta Heikkala
Qt Charts project file structure change...
r2712 class QT_CHARTS_EXPORT QLegendMarker : public QObject
sauimone
first prototry of QLegendMarker API
r2160 {
Q_OBJECT
sauimone
oops. LegendMarkerType enum wasn't public
r2180 public:
sauimone
removed peer object solution. Introduced marker type solution
r2179 enum LegendMarkerType {
LegendMarkerTypeArea,
LegendMarkerTypeBar,
LegendMarkerTypePie,
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 LegendMarkerTypeXY,
LegendMarkerTypeBoxPlot
sauimone
removed peer object solution. Introduced marker type solution
r2179 };
sauimone
signals for properties in legendmarker
r2225 Q_PROPERTY(QString label READ label WRITE setLabel NOTIFY labelChanged)
Q_PROPERTY(QBrush labelBrush READ labelBrush WRITE setLabelBrush NOTIFY labelBrushChanged)
Q_PROPERTY(QFont font READ font WRITE setFont NOTIFY fontChanged)
Q_PROPERTY(QPen pen READ pen WRITE setPen NOTIFY penChanged)
Q_PROPERTY(QBrush brush READ brush WRITE setBrush NOTIFY brushChanged)
Q_PROPERTY(bool visible READ isVisible WRITE setVisible NOTIFY visibleChanged)
sauimone
properties to legendmarker. doc update
r2224 Q_ENUMS(LegendMarkerType)
sauimone
first prototry of QLegendMarker API
r2160
public:
virtual ~QLegendMarker();
sauimone
removed peer object solution. Introduced marker type solution
r2179 virtual LegendMarkerType type() = 0;
sauimone
first prototry of QLegendMarker API
r2160
QString label() const;
void setLabel(const QString &label);
sauimone
Added createLegendMarkers to private series. This will replace old createLegendMarker method. Notice the s in new method name. PIMPL for QLegendMarker. Newlegend example updated a bit
r2163 QBrush labelBrush() const;
void setLabelBrush(const QBrush &brush);
QFont font() const;
void setFont(const QFont &font);
sauimone
first prototry of QLegendMarker API
r2160 QPen pen() const;
void setPen(const QPen &pen);
QBrush brush() const;
void setBrush(const QBrush &brush);
bool isVisible() const;
void setVisible(bool visible);
sauimone
pure virtual getter for series to QLegendMarker. In some cases user don't need the derived pointer. This removes the need to cast to derived marker type
r2181 virtual QAbstractSeries* series() = 0;
sauimone
first prototry of QLegendMarker API
r2160 Q_SIGNALS:
void clicked();
void hovered(bool status);
sauimone
signals for properties in legendmarker
r2225 void labelChanged();
void labelBrushChanged();
void fontChanged();
void penChanged();
void brushChanged();
void visibleChanged();
sauimone
first prototry of QLegendMarker API
r2160
sauimone
refactoring
r2167 protected:
sauimone
Better handling for new or removed markers
r2182 explicit QLegendMarker(QLegendMarkerPrivate &d, QObject *parent = 0);
sauimone
Added createLegendMarkers to private series. This will replace old createLegendMarker method. Notice the s in new method name. PIMPL for QLegendMarker. Newlegend example updated a bit
r2163 QScopedPointer<QLegendMarkerPrivate> d_ptr;
sauimone
refactoring
r2167 friend class QLegendPrivate;
friend class QLegendMarkerPrivate;
sauimone
Legend can now handle clicked and do scrolling
r2183 friend class LegendMarkerItem;
sauimone
layout work started
r2168 friend class LegendLayout;
sauimone
added missing friend declaration
r2198 friend class LegendScroller;
Miikka Heikkinen
Make all Q_DISABLE_COPY declarations private....
r2723
private:
Q_DISABLE_COPY(QLegendMarker)
sauimone
first prototry of QLegendMarker API
r2160 };
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_END_NAMESPACE
sauimone
first prototry of QLegendMarker API
r2160
#endif // QLEGENDMARKER_H