/
runis-70
/
Formula-Plus
Обзор
Документация
Войти
/
runis-70
/
Formula-Plus
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/forms/plottingForm.h
31 строка
589 B
Денис
feat/fix/refactor: (1.0.11) - из старых версий перенесено око AbouProgram
20 окт 2024, 05:28
20 окт 2024, 05:28
74a9a59
Код
Авторство
О чём код?
#ifndef PLOTTINGFORM_H #define PLOTTINGFORM_H #include <QWidget> #include <QTimer> class PlottingForm : public QObject { Q_OBJECT public: explicit PlottingForm(QObject *parent = nullptr); signals: void PlottingFormWindow(); public slots: // void on_pushButton_clicked(); // void TimerSlot(); // void on_comboBox_activated(int index); // void UpdateLableAndLineInWindow(QString textLabel1, QString textLabel2, QString textLabel3); private: double xBegin , xEnd,h,X; int N; QVector<double> x,y; QTimer *timer; int time; }; #endif // GRAF_H