CCIMXDesktop
 
Loading...
Searching...
No Matches
ProcessBrowserWidget.h
1#ifndef PROCESSBROWSERWIDGET_H
2#define PROCESSBROWSERWIDGET_H
3#include "Core/ProcessBroswer.h"
4#include <QWidget>
5
6namespace Ui {
8}
9
14class ProcessBrowserWidget : public QWidget {
15 Q_OBJECT
20 static constexpr const unsigned short COL_CNT = 8;
21
22public:
28 explicit ProcessBrowserWidget(QWidget* parent = nullptr);
30
31public slots:
37 void handle_process_issues(const QList<ProcessBroswer::ProcessInfo>& infos);
38
39private:
40 Ui::ProcessBrowserWidget* ui;
41};
42
43#endif // PROCESSBROWSERWIDGET_H
The ProcessBrowserWidget class The ProcessBrowserWidget class provides the process browser widget.
Definition ProcessBrowserWidget.h:14
void handle_process_issues(const QList< ProcessBroswer::ProcessInfo > &infos)
handle the process signals for updating
Definition ProcessBrowserWidget.cpp:22