##// END OF EJS Templates
Misc fixes...
Misc fixes - Default value for localizeNumbers is now false, as it would look weird if numbers were localized in otherwise unlocalized app. - Added locale property to qml ChartView. - Added registrations for latest revisions of all QML types for 2.0, since apparently this is necessary to make them visible when importing Charts 2.0 Change-Id: I46997b3af4458c6dbf6755a19e01115d5393013a Reviewed-by: Titta Heikkala <titta.heikkala@digia.com>

File last commit:

r2688:bdd8266c9c7d
r2710:e26d82d56bc9
Show More
qpielegendmarker.h
57 lines | 1.6 KiB | text/x-c | CLexer
/ src / legend / qpielegendmarker.h
sauimone
new legend example for testing new api. Currently using still the old one.
r2162 /****************************************************************************
**
Titta Heikkala
Update copyright year...
r2688 ** Copyright (C) 2014 Digia Plc
sauimone
new legend example for testing new api. Currently using still the old one.
r2162 ** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** This file is part of the Qt Enterprise Charts Add-on.
sauimone
new legend example for testing new api. Currently using still the old one.
r2162 **
** $QT_BEGIN_LICENSE$
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
sauimone
new legend example for testing new api. Currently using still the old one.
r2162 ** 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 QPIELEGENDMARKER_H
#define QPIELEGENDMARKER_H
#include <QChartGlobal>
#include <QLegendMarker>
sauimone
tidying up legend marker code. Added QBarLegendMarker
r2174 #include <QPieSeries>
sauimone
new legend example for testing new api. Currently using still the old one.
r2162 #include <QPieSlice>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
sauimone
tidying up legend marker code. Added QBarLegendMarker
r2174 class QPieLegendMarkerPrivate;
sauimone
new legend example for testing new api. Currently using still the old one.
r2162 class QTCOMMERCIALCHART_EXPORT QPieLegendMarker : public QLegendMarker
{
Q_OBJECT
public:
sauimone
optional series parameter to markers function. code style fixes
r2193 explicit QPieLegendMarker(QPieSeries *series, QPieSlice *slice, QLegend *legend, QObject *parent = 0);
sauimone
layout work started
r2168 virtual ~QPieLegendMarker();
sauimone
new legend example for testing new api. Currently using still the old one.
r2162
sauimone
removed peer object solution. Introduced marker type solution
r2179 virtual LegendMarkerType type() { return LegendMarkerTypePie; }
// Related series and slice
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 QPieSeries* series();
sauimone
removed peer object solution. Introduced marker type solution
r2179 QPieSlice* slice();
sauimone
new legend example for testing new api. Currently using still the old one.
r2162
sauimone
refactoring
r2167 protected:
QPieLegendMarker(QPieLegendMarkerPrivate &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
sauimone
new legend example for testing new api. Currently using still the old one.
r2162 private:
sauimone
refactoring
r2167 Q_DECLARE_PRIVATE(QPieLegendMarker)
sauimone
new legend example for testing new api. Currently using still the old one.
r2162 Q_DISABLE_COPY(QPieLegendMarker)
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QPIELEGENDMARKER_H