File indexing completed on 2024-05-12 04:20:05

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 AXISSETTINGS_H
0010 #define AXISSETTINGS_H
0011 
0012 #include <QWidget>
0013 
0014 namespace KChart
0015 {
0016     class Chart;
0017 }
0018 
0019 class AxisSettings : public QWidget
0020 {
0021     Q_OBJECT
0022 
0023 public:
0024     explicit AxisSettings( KChart::Chart *chart, QWidget *parent = nullptr );
0025     ~AxisSettings() override;
0026 
0027 public Q_SLOTS:
0028     void diagramTypeChanged();
0029 
0030 private:
0031     class Private;
0032     Private *d;
0033 };
0034 
0035 #endif // AXISSETTINGS_H