summaryrefslogtreecommitdiffstats
path: root/src/gui/processesDialog.cpp
blob: 7c0405c297bff77f59585c94d8b4365955fa8844 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
# Copyright (c) 2010 - OpenSLX Project, Computer Center University of Freiburg
#
# This program is free software distributed under the GPL version 2.
# See http://openslx.org/COPYING
#
# If you have any feedback please consult http://openslx.org/feedback and
# send your suggestions, praise, or complaints to feedback@openslx.org
#
# General information about OpenSLX can be found at http://openslx.org/
# -----------------------------------------------------------------------------
# processesDialog.cpp
	Dialog where a tab with running processes for every client is shown
# -----------------------------------------------------------------------------
*/

#include "processesDialog.h"
#include "ui_processesDialog.h"
#include <src/gui/processWidget.h>

ProcessDialog::ProcessDialog(QDialog *parent, int displayedClientNameEnum) :
    QDialog(parent),
    procui(new Ui::ProcessesDialog)
{
    procui->setupUi(this);

    tWidget = new QTabWidget;
    procui->grLayout->addWidget(tWidget);

    //if we click on another tab we refresh the list of this client
    connect( tWidget, SIGNAL( currentChanged(int)), this, SLOT( currChanged()));

	std::list<PVSClient*> listAll =
			PVSConnectionManager::getManager()->getConnections();
	for (std::list<PVSClient*>::iterator it = listAll.begin(); it
			!= listAll.end(); it++)
	{
		//display ip/login name/user name the same way we do in our clientlist
		switch (displayedClientNameEnum)
		{
		case 1:
			tWidget->addTab(new ProcessWidget(0, *it), (*it)->getIp());
		    break;
		case 2:
			tWidget->addTab(new ProcessWidget(0, *it), (*it)->getLoginName());
		    break;
		default:
			tWidget->addTab(new ProcessWidget(0, *it), (*it)->getUserName());
		    break;
		}
	}

    QTimer *refreshTimer = new QTimer(this);
    connect(refreshTimer, SIGNAL(timeout()), this, SLOT(currRefr()));
    refreshTimer->start(5000);

}

// if other Tab is activated we say our tab to refresh the processList
void ProcessDialog::currChanged()
{
	ProcessWidget *temp = static_cast<ProcessWidget*>(tWidget->currentWidget());
	temp->refrProcessList(false);
}

void ProcessDialog::currRefr()
{
	ProcessWidget *temp = static_cast<ProcessWidget*>(tWidget->currentWidget());
	temp->refrProcessList(true);
}

ProcessDialog::~ProcessDialog()
{
    delete procui;
}