summaryrefslogtreecommitdiffstats
path: root/src/gui/processesDialog.h
blob: d2bcae1f58a092eba9a1a8c78b0460556e260f67 (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
#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, int displayedClientNameEnum = 0);
    ~ProcessDialog();


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

private slots:
    void currChanged();
};

#endif // PROCESSESDIALOG_H