summaryrefslogtreecommitdiffstats
path: root/src/pvs.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/pvs.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/pvs.h')
-rwxr-xr-xsrc/pvs.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/pvs.h b/src/pvs.h
index 1bb0747..4ba8e65 100755
--- a/src/pvs.h
+++ b/src/pvs.h
@@ -26,6 +26,9 @@
#include "src/version.h"
#include "src/util/consoleLogger.h"
#include "src/util/clientGUIUtils.h"
+#include <QFile>
+#include <QTextStream>
+#include <QDir>
class PVSServiceDiscovery;
class PVSDiscoveredServer;
@@ -135,6 +138,8 @@ private:
int stopVNCScript(); ///< stop the vnc server (via script)
static void signalHandler(int signal); //handles posix signals
+ void showProc(); //sends list of user processes to connection manager
+
PVSServerConnection* _pvsServerConnection; ///< our tcp connection object to the pvsserver
PVSServiceDiscovery *_sdClient;