##// END OF EJS Templates
Enabled building of qml auto test module on OSX
Enabled building of qml auto test module on OSX

File last commit:

r2198:8b75868233ae
r2211:7a0ee9611522
Show More
qlegendmarker.h
95 lines | 2.4 KiB | text/x-c | CLexer
sauimone
first prototry of QLegendMarker API
r2160 /****************************************************************************
**
** Copyright (C) 2012 Digia Plc
** 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$
**
****************************************************************************/
#ifndef QLEGENDMARKER_H
#define QLEGENDMARKER_H
#include <QChartGlobal>
#include <QObject>
#include <QPen>
#include <QBrush>
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 #include <QFont>
sauimone
first prototry of QLegendMarker API
r2160
QTCOMMERCIALCHART_BEGIN_NAMESPACE
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
class QTCOMMERCIALCHART_EXPORT QLegendMarker : public QObject
{
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,
LegendMarkerTypeXY
};
// TODO:
sauimone
first prototry of QLegendMarker API
r2160 // Q_PROPERTY(QString label READ label WRITE setlabel NOTIFY labelChanged);
// Q_PROPERTY(QPen pen READ pen WRITE setPen NOTIFY penChanged);
// Q_PROPERTY(QBrush brush READ brush WRITE setBrush NOTIFY brushChanged);
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
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
first prototry of QLegendMarker API
r2160 Q_DISABLE_COPY(QLegendMarker)
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;
sauimone
first prototry of QLegendMarker API
r2160 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QLEGENDMARKER_H