summaryrefslogtreecommitdiffstats
path: root/src/gui/processesDialog.h
diff options
context:
space:
mode:
authorFabian Schillinger2010-11-01 16:53:24 +0100
committerFabian Schillinger2010-11-01 16:53:24 +0100
commit0d97a7378ffe5f6be408201cd1f5595607ed5f87 (patch)
tree78ccd691a67c2f63f8fa4d1032d4cabfae0e80fa /src/gui/processesDialog.h
parent[PVSGUI] parsing cmdargs fixed (diff)
downloadpvs-0d97a7378ffe5f6be408201cd1f5595607ed5f87.tar.gz
pvs-0d97a7378ffe5f6be408201cd1f5595607ed5f87.tar.xz
pvs-0d97a7378ffe5f6be408201cd1f5595607ed5f87.zip
Process start/stop/view functionality
processWidget - shows a list of processes on one client, allows to start ans stop processes processesDialog - shows every processWidget as a tab processesStartDialog - starts process entered in messageEdit added handling of new pvscommands
Diffstat (limited to 'src/gui/processesDialog.h')
-rw-r--r--src/gui/processesDialog.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/gui/processesDialog.h b/src/gui/processesDialog.h
new file mode 100644
index 0000000..9d98136
--- /dev/null
+++ b/src/gui/processesDialog.h
@@ -0,0 +1,37 @@
+#ifndef PROCESSESDIALOG_H
+#define PROCESSESDIALOG_H
+
+#include <QDialog>
+#include <QtGui>
+#include <src/gui/processWidget.h>
+#include <src/gui/mainWindow.h>
+#include <list>
+
+
+namespace Ui {
+ class ProcessesDialog;
+}
+
+class ConnectionList;
+class PVSClient;
+class PVSConnectionManager;
+class ProcessesWidget;
+class MainWindow;
+
+class ProcessDialog : public QDialog {
+ Q_OBJECT
+public:
+ ProcessDialog(QDialog *parent = 0);
+ ~ProcessDialog();
+
+
+private:
+ Ui::ProcessesDialog *procui;
+ QTabWidget *tWidget;
+ QDialogButtonBox *buttonBox;
+
+private slots:
+ void currChanged();
+};
+
+#endif // PROCESSESDIALOG_H