#ifndef TEST_USER_INTERACTION_H #define TEST_USER_INTERACTION_H #include #include "jkqtplotter/jkqtplotter.h" #include "jkqtplotter/jkqtpgraphs.h" #include #include #include #include #include #include #include class TestUserInteraction : public QMainWindow { Q_OBJECT public: explicit TestUserInteraction(QWidget *parent = nullptr); signals: public slots: protected: void initPlot(); JKQTPlotter* plot; QGridLayout* layout; QHBoxLayout* layChk; QFormLayout* layForm; QCheckBox* chkPositionDisplay; QCheckBox* chkShowToolbar; QCheckBox* chkToolbarAlwaysOn; QCheckBox* chkGrid; JKQTPXYLineGraph* graph1; JKQTPXYLineGraph* graph2; }; #endif // TEST_USER_INTERACTION_H