summaryrefslogtreecommitdiffstats
path: root/src/gui/processesStartDialog.h
blob: 61aee4f6012e69ee0978aad1de63ee71124be1c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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