#ifndef STARTUPFORM_H #define STARTUPFORM_H #include namespace Ui { class StartUpForm; } class StartUpForm : public QWidget { Q_OBJECT public: explicit StartUpForm(QWidget *parent = 0); ~StartUpForm(); public: int getCurrentIndex(); int getStartValue(); int getStopValue(); signals: void sigLogText(const QString &text); void sigStartSystem(); void sigStopSystem(); public slots: void changeIndex(int index); void changeStartValue(int value); void changeStopValue(int value); void initStartValue(); void initStopValue(); void initValue(); void startSystem(); void stopSystem(); private: void initVariables(); void initView(); void initConn(); private: Ui::StartUpForm *ui; }; #endif // STARTUPFORM_H