summaryrefslogtreecommitdiffstats
path: root/src/gui/processesStartDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/processesStartDialog.h')
-rw-r--r--src/gui/processesStartDialog.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/gui/processesStartDialog.h b/src/gui/processesStartDialog.h
new file mode 100644
index 0000000..61aee4f
--- /dev/null
+++ b/src/gui/processesStartDialog.h
@@ -0,0 +1,31 @@
+#ifndef PROCESSESSTARTDIALOG_H
+#define PROCESSESSTARTDIALOG_H
+
+#include <QDialog>
+#include <QtGui>
+
+
+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