#ifndef MAINWINDOW_H #define MAINWINDOW_H #include #include #include #include #include "qcustomplot.h" #include "querybuilder.h" #include "graph.h" class MainWindow : public QWidget { Q_OBJECT public: explicit MainWindow(QWidget *parent = 0); QVBoxLayout* mainLayout; QHBoxLayout* selectionGroup; QHBoxLayout* graph; QHBoxLayout* bottom; QPushButton* velgDB; QPushButton* addGraph; QPushButton* exportButton; signals: public slots: void enableBtn(); private: QueryBuilder QB; Graph GO; }; #endif // MAINWINDOW_H