#ifndef PROCESSESSTARTDIALOG_H #define PROCESSESSTARTDIALOG_H #include #include class MainWindow; class ProcessesStartDialog : public QDialog { Q_OBJECT public: ProcessesStartDialog(QWidget *parent = 0); ~ProcessesStartDialog(); /*protected: void changeEvent(QEvent *e);*/ private: QGridLayout *layout; QLabel *textLabel; QLineEdit *messageEdit; QPushButton *sendButton; QPushButton *cancelButton; private slots: void send(); void NotSend(); }; #endif // PROCESSESSTARTDIALOG_H