diff options
| author | Fabian Schillinger | 2010-11-05 02:03:45 +0100 |
|---|---|---|
| committer | Fabian Schillinger | 2010-11-05 02:03:45 +0100 |
| commit | 98d31dde1d8c220bd3602d4751c24508a54e3fab (patch) | |
| tree | 3921ed97778912a00263728dab105f35f6d1f8e6 /src/gui/processesStartDialog.h | |
| parent | [PVSMGRTOUCH] resetall bug fixed (diff) | |
| download | pvs-98d31dde1d8c220bd3602d4751c24508a54e3fab.tar.gz pvs-98d31dde1d8c220bd3602d4751c24508a54e3fab.tar.xz pvs-98d31dde1d8c220bd3602d4751c24508a54e3fab.zip | |
Process start/stop/view functionality
Cleanup
write to logfiles if start/stop/view of processes failed
added some prompts
stop more then one process at the same time
Diffstat (limited to 'src/gui/processesStartDialog.h')
| -rw-r--r-- | src/gui/processesStartDialog.h | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/src/gui/processesStartDialog.h b/src/gui/processesStartDialog.h index 61aee4f..856279b 100644 --- a/src/gui/processesStartDialog.h +++ b/src/gui/processesStartDialog.h @@ -3,29 +3,33 @@ #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(); -/*protected: - void changeEvent(QEvent *e);*/ - private: - QGridLayout *layout; + Ui::ProcessesStartDialog *procStartUi; + + /*QGridLayout *layout; QLabel *textLabel; QLineEdit *messageEdit; QPushButton *sendButton; - QPushButton *cancelButton; + QPushButton *cancelButton;*/ private slots: void send(); - void NotSend(); + void notSend(); + void listProcesses(); }; #endif // PROCESSESSTARTDIALOG_H |
