File indexing completed on 2024-06-09 04:18:32

0001 /*
0002  * SPDX-FileCopyrightText: 2001-2015 Klaralvdalens Datakonsult AB. All rights reserved.
0003  *
0004  * This file is part of the KD Chart library.
0005  *
0006  * SPDX-License-Identifier: GPL-2.0-or-later
0007  */
0008 
0009 #ifndef KCHARTRADARCOORDINATEPLANE_P_H
0010 #define KCHARTRADARCOORDINATEPLANE_P_H
0011 
0012 //
0013 //  W A R N I N G
0014 //  -------------
0015 //
0016 // This file is not part of the KD Chart API.  It exists purely as an
0017 // implementation detail.  This header file may change from version to
0018 // version without notice, or even be removed.
0019 //
0020 // We mean it.
0021 //
0022 
0023 #include "KChartPolarCoordinatePlane_p.h"
0024 #include "KChartRadarCoordinatePlane.h"
0025 #include "KChartRadarGrid.h"
0026 
0027 
0028 namespace KChart {
0029   
0030 class Q_DECL_HIDDEN RadarCoordinatePlane::Private : public PolarCoordinatePlane::Private
0031 {
0032     friend class RadarCoordinatePlane;
0033 public:
0034     explicit Private() { }
0035 
0036     ~Private() override { }
0037     TextAttributes textAttributes;
0038     
0039     void initialize() override
0040     {
0041         grid = new RadarGrid();
0042     }
0043 };
0044 
0045 
0046 KCHART_IMPL_DERIVED_PLANE(RadarCoordinatePlane, PolarCoordinatePlane)
0047 
0048 }
0049 
0050 #endif /* KCHARTBARDIAGRAM_P_H */