summaryrefslogtreecommitdiffstats
path: root/src/gui/processesDialog.h
blob: 2c821fbdbe0daa6332172bb6c25820ea65499a84 (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
#ifndef PROCESSESDIALOG_H
#define PROCESSESDIALOG_H

#include <QDialog>
#include <QtGui>
#include <src/gui/processWidget.h>
#include <src/gui/mainWindow.h>
#include <list>
#include <QTimer>


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, int displayedClientNameEnum = 0);
    ~ProcessDialog();


private:
    Ui::ProcessesDialog *procui;
    QTabWidget *tWidget;
    QDialogButtonBox *buttonBox;

private slots:
    void currChanged();
    void currRefr();
};

#endif // PROCESSESDIALOG_H