mirror of
https://github.com/oguzhaninan/Stacer.git
synced 2026-04-22 15:39:57 -04:00
50 lines
1.1 KiB
C++
50 lines
1.1 KiB
C++
#ifndef PROCESSESPAGE_H
|
|
#define PROCESSESPAGE_H
|
|
|
|
#include <QWidget>
|
|
#include <QStandardItemModel>
|
|
#include <QSortFilterProxyModel>
|
|
#include <QDebug>
|
|
#include <QScrollBar>
|
|
#include <QTimer>
|
|
#include <QMenu>
|
|
#include <QAction>
|
|
|
|
#include "Managers/info_manager.h"
|
|
|
|
namespace Ui {
|
|
class ProcessesPage;
|
|
}
|
|
|
|
class ProcessesPage : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ProcessesPage(QWidget *parent = 0);
|
|
~ProcessesPage();
|
|
|
|
private slots:
|
|
void init();
|
|
void loadProcesses();
|
|
void loadHeaderMenu();
|
|
QList<QStandardItem *> createRow(const Process &proc);
|
|
void on_txtProcessSearch_textChanged(const QString &val);
|
|
void on_sliderRefresh_valueChanged(const int &i);
|
|
void on_btnEndProcess_clicked();
|
|
void on_tableProcess_customContextMenuRequested(const QPoint &pos);
|
|
|
|
private:
|
|
Ui::ProcessesPage *ui;
|
|
|
|
QStandardItemModel *mItemModel;
|
|
QSortFilterProxyModel *mSortFilterModel;
|
|
QModelIndex mSeletedRowModel;
|
|
QStringList mHeaders;
|
|
QMenu mHeaderMenu;
|
|
QTimer *mTimer;
|
|
InfoManager *im;
|
|
};
|
|
|
|
#endif // PROCESSESPAGE_H
|