summaryrefslogtreecommitdiffstats
path: root/src/gui/processesStartDialog.h
blob: 358a3568b01caa87d1d89eaf9798a8a9002e2229 (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
#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;
    QSettings settings;

private slots:
    void send();
    void notSend();
    void listProcesses();
    void save();
    void itemClicked(int row, int column);
};

#endif // PROCESSESSTARTDIALOG_H