File indexing completed on 2024-05-12 11:32:21

0001 /*
0002     SPDX-License-Identifier: GPL-2.0-or-later
0003     SPDX-FileCopyrightText: 2009 Alexander Rieder <alexanderrieder@gmail.com>
0004     SPDX-FileCopyrightText: 2009 Oleksiy Protas <elfy.ua@gmail.com>
0005 */
0006 
0007 #ifndef _ADVANCED_PLOTASSISTANT_H
0008 #define _ADVANCED_PLOTASSISTANT_H
0009 
0010 #include "assistant.h"
0011 
0012 // WARNING: this assistant serves as a stub to implement the rich plotting features of R.
0013 // therefore, when finished it is to be backported and merged with plot2d
0014 
0015 class AdvancedPlotAssistant : public Cantor::Assistant
0016 {
0017   Q_OBJECT
0018   public:
0019     AdvancedPlotAssistant( QObject* parent, QList<QVariant> args );
0020     ~AdvancedPlotAssistant() override = default;
0021 
0022     void initActions() override;
0023 
0024     QStringList run(QWidget* parentt) override;
0025 
0026 };
0027 
0028 #endif /* _RPLOTASSISTANT_H */