summaryrefslogtreecommitdiffstats
path: root/src/gui/processesStartDialog.h
blob: 856279be72ac32f9a924dcc51c0da4de09d21afa (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
32
33
34
35
#ifndef PROCESSESSTARTDIALOG_H
#define PROCESSESSTARTDIALOG_H

#include <QDialog>
#include <QtGui>
#include "ui_processesStartDialog.h"

namespace Ui {
    class ProcessesStartDialog;
}

class MainWindow;
class QDialog;
class ProcessesStartDialog : public QDialog {
    Q_OBJECT
public:
    ProcessesStartDialog(QWidget *parent = 0);
    ~ProcessesStartDialog();

private:
    Ui::ProcessesStartDialog *procStartUi;

    /*QGridLayout *layout;
    QLabel *textLabel;
    QLineEdit *messageEdit;
    QPushButton *sendButton;
    QPushButton *cancelButton;*/

private slots:
    void send();
    void notSend();
    void listProcesses();
};

#endif // PROCESSESSTARTDIALOG_H