-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.h
66 lines (46 loc) · 1.25 KB
/
mainwindow.h
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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <cpuscheduler.h>
#include <newprocessdialog.h>
#include <QTimer>
#include <QTableWidget>
#include <QTableWidgetItem>
#include <QDebug>
enum QType{readyQ,jobQ,suspendQ};
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
void refresh();
int timeSlice = 1000;
bool running = false;
bool select = false;
QType selectType;
int selectRow = 0;
QTimer* timer = new QTimer;
CPU* cpu = new CPU;
CPUScheduler* cpus = new CPUScheduler;
string bindFather(int fatherID);
string bindFather(string fPID);
void remove(string PID,QType type);
private slots:
void on_btn_add_clicked();
void on_btn_run_clicked();
void on_btn_pre_clicked();
void on_table_ready_cellClicked(int row, int column);
void on_btn_suspend_clicked();
void on_table_backup_cellClicked(int row, int column);
void on_table_waiting_cellClicked(int row, int column);
void on_slider_speed_valueChanged(int value);
void on_slider_speed_sliderMoved(int position);
private:
Ui::MainWindow *ui;
int order = 0;
};
#endif // MAINWINDOW_H