Vespucci  1.0.0
plotmakerdialog.h
Go to the documentation of this file.
1 #ifndef PLOTMAKERDIALOG_H
2 #define PLOTMAKERDIALOG_H
3 
4 #include <QDialog>
7 
8 namespace Ui {
9 class PlotMakerDialog;
10 }
11 
12 class PlotMakerDialog : public QDialog
13 {
14  Q_OBJECT
15 
16 public:
17  explicit PlotMakerDialog(MainWindow *parent,
18  PlotViewer *plot_viewer,
19  QSharedPointer<VespucciWorkspace> ws,
20  QStringList data_keys);
21  ~PlotMakerDialog();
22 
23 private slots:
24  void on_buttonBox_accepted();
25 
26 
27  void on_dimensionComboBox_currentTextChanged(const QString &arg1);
28 
29 private:
30  Ui::PlotMakerDialog *ui;
31  QSharedPointer<VespucciWorkspace> workspace_;
32  QStringList data_keys_;
33  MainWindow *parent_;
34  PlotViewer *plot_viewer_;
35 };
36 
37 #endif // PLOTMAKERDIALOG_H
Definition: ahcadialog.h:26
The MainWindow class The main window of the program, this is where the user performs most operations...
Definition: mainwindow.h:58