##// END OF EJS Templates
Add assistant (qch) documentation generation...
Add assistant (qch) documentation generation Modified "docs" target to generate both html and qch documentation. "html_docs" target can be used if only html docs are required. Qch documentation is generated under "doc/qch" folder. Task-number: QTRD-1480 Reviewed-by: Mika Salmela

File last commit:

r2193:7e0a20ef8117
r2418:d84ad300b3d2
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 /****************************************************************************
**
** 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 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