-
Notifications
You must be signed in to change notification settings - Fork 1
/
os_sim.ui
113 lines (113 loc) · 2.67 KB
/
os_sim.ui
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>OS_Sim</class>
<widget class="QWidget" name="OS_Sim">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>585</width>
<height>365</height>
</rect>
</property>
<property name="windowTitle">
<string>OS_Sim</string>
</property>
<property name="styleSheet">
<string notr="true">background-color: rgb(0, 0, 0);</string>
</property>
<widget class="QPushButton" name="SelectScheduling">
<property name="geometry">
<rect>
<x>400</x>
<y>160</y>
<width>140</width>
<height>60</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">font: 14pt "Sans Serif";
background-color: rgb(85, 255, 127);</string>
</property>
<property name="text">
<string>Start</string>
</property>
</widget>
<widget class="QComboBox" name="SchedulingType">
<property name="geometry">
<rect>
<x>10</x>
<y>160</y>
<width>350</width>
<height>60</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">font: 14pt "Sans Serif";
background-color: rgb(85, 255, 127);</string>
</property>
<item>
<property name="text">
<string/>
</property>
</item>
<item>
<property name="text">
<string>FirstIn FirstOut Scheduling</string>
</property>
</item>
<item>
<property name="text">
<string>Shortest Job First Scheduling</string>
</property>
</item>
<item>
<property name="text">
<string>Prority Scheduling Scheduling</string>
</property>
</item>
<item>
<property name="text">
<string>Round Robin Scheduling</string>
</property>
</item>
</widget>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>20</x>
<y>110</y>
<width>490</width>
<height>21</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">font: 14pt "Sans Serif";
color: rgb(255, 255, 255);</string>
</property>
<property name="text">
<string>Please Select Scheduling Type And Press Start</string>
</property>
</widget>
<widget class="QLabel" name="label_2">
<property name="geometry">
<rect>
<x>10</x>
<y>10</y>
<width>560</width>
<height>50</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(255, 255, 255);
font: 28pt "Sans Serif";</string>
</property>
<property name="text">
<string>Scheduling Simulator</string>
</property>
</widget>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources/>
<connections/>
</ui>