Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Pedro Henrique Kopper
SADAPMAP
Commits
31aa3998
Commit
31aa3998
authored
Nov 23, 2017
by
Alisson Claudino
Browse files
Implementados os timers e Eixos Y independentes
parent
ae7fec10
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Interface/CalibracaoP.py
View file @
31aa3998
This diff is collapsed.
Click to expand it.
Interface/Graph.py
View file @
31aa3998
from
pyqtgraph
import
PlotItem
from
pyqtgraph
import
PlotItem
,
AxisItem
,
GridItem
import
time
class
Graph
(
PlotItem
):
index
=
0
def
__init__
(
self
,
x_range
,
y_min
,
y_max
,
x_size
,
y_size
,
color1
,
color2
,
name1
,
name2
):
super
(
Graph
,
self
).
__init__
(
title
=
"Curvas de Força e Calibrante"
)
def
__init__
(
self
,
x_range
,
y
1
_min
,
y
1_max
,
y2_min
,
y2
_max
,
x_size
,
y_size
,
color1
,
color2
,
name1
,
name2
):
super
(
Graph
,
self
).
__init__
()
self
.
x_range
=
x_range
self
.
y_min
=
y_min
self
.
y_max
=
y_max
self
.
y1_min
=
y1_min
self
.
y1_max
=
y1_max
self
.
y2_min
=
y2_min
self
.
y2_max
=
y2_max
self
.
x_size
=
x_size
self
.
y_size
=
y_size
self
.
color1
=
color1
self
.
color2
=
color2
self
.
name1
=
name1
self
.
name2
=
name2
self
.
addLegend
()
self
.
curve1
=
self
.
plot
(
pen
=
color1
,
name
=
self
.
name1
)
self
.
curve2
=
self
.
plot
(
pen
=
color2
,
name
=
self
.
name2
)
self
.
showGrid
(
True
,
True
)
self
.
setPreferredSize
(
self
.
x_size
,
self
.
y_size
)
self
.
axisTime
=
AxisItem
(
"bottom"
,
'w'
)
self
.
axis2
=
AxisItem
(
"right"
,
color2
)
self
.
axis1
=
AxisItem
(
"left"
,
color1
)
self
.
axis1
.
setLabel
(
self
.
name1
,
'Tonf'
)
self
.
axis2
.
setLabel
(
self
.
name2
,
'mV'
)
self
.
axisTime
.
setLabel
(
"Tempo"
,
's'
)
self
.
axisTime
.
setRange
(
0
,
x_range
)
self
.
axis1
.
setRange
(
y1_min
,
y1_max
)
self
.
axis2
.
setRange
(
y2_min
,
y2_max
)
self
.
showAxis
(
"left"
,
False
)
self
.
showAxis
(
"bottom"
,
False
)
self
.
setMinimumSize
(
x_size
,
y_size
)
self
.
setXRange
(
0
,
self
.
x_range
,
padding
=
0
)
self
.
setYRange
(
self
.
y_min
,
self
.
y_max
,
padding
=
0
)
self
.
setYRange
(
min
(
self
.
y
1
_min
,
self
.
y2_min
),
max
(
self
.
y
1
_max
,
self
.
y2_max
),
padding
=
0
)
self
.
x1
=
[]
self
.
y1
=
[]
self
.
y2
=
[]
...
...
Interface/Resources/CalibracaoP.ui
View file @
31aa3998
...
...
@@ -20,7 +20,7 @@
<string>
SADAMAP - Análise de Dados: Etapa 1 - Calibração de Pressão
</string>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
background-color:rgb(
86, 86, 86
);
<string
notr=
"true"
>
background-color:rgb(
53, 53, 53
);
color: rgb(255,255,255);
</string>
</property>
<widget
class=
"QWidget"
name=
"centralWidget"
>
...
...
@@ -42,8 +42,20 @@ color: rgb(255,255,255);</string>
<verstretch>
0
</verstretch>
</sizepolicy>
</property>
<property
name=
"verticalScrollBarPolicy"
>
<enum>
Qt::ScrollBarAlwaysOff
</enum>
</property>
<property
name=
"horizontalScrollBarPolicy"
>
<enum>
Qt::ScrollBarAlwaysOff
</enum>
</property>
<property
name=
"sizeAdjustPolicy"
>
<enum>
QAbstractScrollArea::AdjustToContents
</enum>
</property>
<property
name=
"alignment"
>
<set>
Qt::AlignBottom|Qt::AlignHCenter
</set>
</property>
</widget>
<widget
class=
"QGroupBox"
name=
"
e
scal
a
Box"
>
<widget
class=
"QGroupBox"
name=
"scal
e
Box"
>
<property
name=
"geometry"
>
<rect>
<x>
20
</x>
...
...
@@ -78,7 +90,7 @@ color: rgb(255, 255, 255);</string>
<property
name=
"checkable"
>
<bool>
false
</bool>
</property>
<widget
class=
"QGroupBox"
name=
"forc
a
Box"
>
<widget
class=
"QGroupBox"
name=
"forc
e
Box"
>
<property
name=
"geometry"
>
<rect>
<x>
10
</x>
...
...
@@ -103,11 +115,11 @@ color: rgb(255, 255, 255);</string>
</rect>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
color:rgb(0,0,0);
background-
color:
rgb(
158, 151, 151
);
</string>
<string
notr=
"true"
>
background-
color:
rgb(
8
0,
8
0,
8
0);
color:rgb(
255,255,255
);
</string>
</property>
<property
name=
"text"
>
<string>
1
00
</string>
<string>
327
00
</string>
</property>
</widget>
<widget
class=
"QLabel"
name=
"f_max_label"
>
...
...
@@ -152,12 +164,15 @@ background-color: rgb(158, 151, 151);</string>
</rect>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
color:rgb(0,0,0);
background-color: rgb(158, 151, 151);
</string>
<string
notr=
"true"
>
background-color: rgb(80,80,80);
color:rgb(255,255,255);
</string>
</property>
<property
name=
"text"
>
<string>
0
</string>
</property>
</widget>
</widget>
<widget
class=
"QGroupBox"
name=
"press
ao
Box"
>
<widget
class=
"QGroupBox"
name=
"press
ure
Box"
>
<property
name=
"geometry"
>
<rect>
<x>
200
</x>
...
...
@@ -182,8 +197,11 @@ background-color: rgb(158, 151, 151);</string>
</rect>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
color:rgb(0,0,0);
background-color: rgb(158, 151, 151);
</string>
<string
notr=
"true"
>
background-color: rgb(80,80,80);
color:rgb(255,255,255);
</string>
</property>
<property
name=
"text"
>
<string>
32700
</string>
</property>
</widget>
<widget
class=
"QLabel"
name=
"p_max_label"
>
...
...
@@ -228,17 +246,20 @@ background-color: rgb(158, 151, 151);</string>
</rect>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
color:rgb(0,0,0);
background-color: rgb(158, 151, 151);
</string>
<string
notr=
"true"
>
background-color: rgb(80,80,80);
color:rgb(255,255,255);
</string>
</property>
<property
name=
"text"
>
<string>
0
</string>
</property>
</widget>
</widget>
<widget
class=
"QGroupBox"
name=
"t
empo
GBox"
>
<widget
class=
"QGroupBox"
name=
"t
ime
GBox"
>
<property
name=
"geometry"
>
<rect>
<x>
10
0
</x>
<x>
9
0
</x>
<y>
140
</y>
<width>
1
7
1
</width>
<width>
2
11
</width>
<height>
81
</height>
</rect>
</property>
...
...
@@ -251,15 +272,18 @@ background-color: rgb(158, 151, 151);</string>
<widget
class=
"QLineEdit"
name=
"t_max"
>
<property
name=
"geometry"
>
<rect>
<x>
1
0
0
</x>
<x>
1
4
0
</x>
<y>
30
</y>
<width>
61
</width>
<height>
21
</height>
</rect>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
color:rgb(0,0,0);
background-color: rgb(158, 151, 151);
</string>
<string
notr=
"true"
>
background-color: rgb(80,80,80);
color:rgb(255,255,255);
</string>
</property>
<property
name=
"text"
>
<string>
100
</string>
</property>
</widget>
<widget
class=
"QLabel"
name=
"t_max_label"
>
...
...
@@ -267,7 +291,7 @@ background-color: rgb(158, 151, 151);</string>
<rect>
<x>
10
</x>
<y>
30
</y>
<width>
8
1
</width>
<width>
13
1
</width>
<height>
21
</height>
</rect>
</property>
...
...
@@ -275,12 +299,12 @@ background-color: rgb(158, 151, 151);</string>
<string
notr=
"true"
>
border: rgb(255,255,255)
</string>
</property>
<property
name=
"text"
>
<string>
Intervalo (s):
</string>
<string>
Intervalo (
amostra
s):
</string>
</property>
</widget>
</widget>
</widget>
<widget
class=
"QGroupBox"
name=
"
amostragem
Box"
>
<widget
class=
"QGroupBox"
name=
"
sampling
Box"
>
<property
name=
"geometry"
>
<rect>
<x>
20
</x>
...
...
@@ -290,27 +314,24 @@ background-color: rgb(158, 151, 151);</string>
</rect>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
background-color:rgb(
53, 53, 53
);
border:1px solid rgb(255,
83
, 0);
color: rgb(255,255,255);
</string>
<string
notr=
"true"
>
background-color:
rgb(
86, 86, 86
);
border:
1px solid rgb(255,
75
, 0);
color: rgb(255,
255,
255);
</string>
</property>
<property
name=
"title"
>
<string>
Amostragem
</string>
</property>
<widget
class=
"QComboBox"
name=
"
amostragem
CBox"
>
<widget
class=
"QComboBox"
name=
"
sampling
CBox"
>
<property
name=
"geometry"
>
<rect>
<x>
5
0
</x>
<x>
4
0
</x>
<y>
30
</y>
<width>
101
</width>
<height>
27
</height>
</rect>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
border-color: rgb(0,0,0);
background-color: rgb(169, 169, 169);
</string>
<string
notr=
"true"
>
background-color:rgb(53, 53, 53)
</string>
</property>
<item>
<property
name=
"text"
>
...
...
@@ -359,42 +380,27 @@ background-color: rgb(169, 169, 169);
</item>
</widget>
</widget>
<widget
class=
"QGroupBox"
name=
"c
ronometro
Box"
>
<widget
class=
"QGroupBox"
name=
"c
urrentTime
Box"
>
<property
name=
"geometry"
>
<rect>
<x>
20
</x>
<y>
330
</y>
<width>
3
8
1
</width>
<width>
3
9
1
</width>
<height>
171
</height>
</rect>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
border:1px solid rgb(123, 0, 129);
</string>
<string
notr=
"true"
>
border:1px solid rgb(123, 0, 129);
background-color: rgb(86, 86, 86);
</string>
</property>
<property
name=
"title"
>
<string>
Timer
</string>
</property>
<widget
class=
"QPushButton"
name=
"timerOptionButton"
>
<property
name=
"geometry"
>
<rect>
<x>
140
</x>
<y>
130
</y>
<width>
61
</width>
<height>
31
</height>
</rect>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
background-color:rgb(53, 53, 53)
</string>
</property>
<property
name=
"text"
>
<string>
Opções
</string>
</property>
</widget>
<widget
class=
"QPushButton"
name=
"initTimerButton"
>
<widget
class=
"QPushButton"
name=
"startTimerButton"
>
<property
name=
"geometry"
>
<rect>
<x>
1
4
0
</x>
<y>
3
0
</y>
<x>
1
5
0
</x>
<y>
2
0
</y>
<width>
61
</width>
<height>
31
</height>
</rect>
...
...
@@ -406,7 +412,7 @@ background-color: rgb(169, 169, 169);
<string>
Iniciar
</string>
</property>
</widget>
<widget
class=
"QGroupBox"
name=
"cr
onometro
GBox"
>
<widget
class=
"QGroupBox"
name=
"
s
cr
eenTimer
GBox"
>
<property
name=
"geometry"
>
<rect>
<x>
10
</x>
...
...
@@ -421,29 +427,29 @@ background-color: rgb(169, 169, 169);
<property
name=
"title"
>
<string>
Cronômetro
</string>
</property>
<widget
class=
"QLabel"
name=
"cr
onometro
Label"
>
<widget
class=
"QLabel"
name=
"
s
cr
eenTimer
Label"
>
<property
name=
"geometry"
>
<rect>
<x>
2
0
</x>
<x>
1
0
</x>
<y>
60
</y>
<width>
8
1
</width>
<width>
10
1
</width>
<height>
31
</height>
</rect>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
background-color: rgb(
158, 151, 151
);
color:rgb(
0, 0, 0
);
<string
notr=
"true"
>
background-color: rgb(
80,80,80
);
color:rgb(
255,255,255
);
font: 75 12pt
"
Noto Serif
"
;
</string>
</property>
<property
name=
"text"
>
<string>
10.2674 s
</string>
<string>
0 seg
</string>
</property>
</widget>
</widget>
<widget
class=
"QGroupBox"
name=
"
horaInic
GBox"
>
<widget
class=
"QGroupBox"
name=
"
startTime
GBox"
>
<property
name=
"geometry"
>
<rect>
<x>
2
2
0
</x>
<x>
2
3
0
</x>
<y>
10
</y>
<width>
151
</width>
<height>
71
</height>
...
...
@@ -455,7 +461,7 @@ font: 75 12pt "Noto Serif";</string>
<property
name=
"title"
>
<string>
Horário de Início
</string>
</property>
<widget
class=
"QLabel"
name=
"
horaInic
Label"
>
<widget
class=
"QLabel"
name=
"
startTime
Label"
>
<property
name=
"geometry"
>
<rect>
<x>
30
</x>
...
...
@@ -465,19 +471,21 @@ font: 75 12pt "Noto Serif";</string>
</rect>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
background-color: rgb(
158, 151, 151
);
color:rgb(
0, 0, 0
);
<string
notr=
"true"
>
background-color: rgb(
80,80,80
);
color:rgb(
255,255,255
);
font: 14pt
"
Noto Serif
"
;
</string>
</property>
<property
name=
"text"
>
<string>
16:30:15
</string>
<string>
00:00:00
</string>
</property>
</widget>
<zorder>
startTimeLabel
</zorder>
<zorder>
samplingCBox
</zorder>
</widget>
<widget
class=
"QGroupBox"
name=
"
horaAtual
GBox"
>
<widget
class=
"QGroupBox"
name=
"
currentTime
GBox"
>
<property
name=
"geometry"
>
<rect>
<x>
2
2
0
</x>
<x>
2
3
0
</x>
<y>
90
</y>
<width>
151
</width>
<height>
71
</height>
...
...
@@ -489,7 +497,7 @@ font: 14pt "Noto Serif";</string>
<property
name=
"title"
>
<string>
Horário Atual
</string>
</property>
<widget
class=
"QLabel"
name=
"
horaAtual
Label"
>
<widget
class=
"QLabel"
name=
"
currentTime
Label"
>
<property
name=
"geometry"
>
<rect>
<x>
30
</x>
...
...
@@ -499,20 +507,20 @@ font: 14pt "Noto Serif";</string>
</rect>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
background-color: rgb(
158, 151, 151
);
color:rgb(
0, 0, 0
);
<string
notr=
"true"
>
background-color: rgb(
80,80,80
);
color:rgb(
255,255,255
);
font: 14pt
"
Noto Serif
"
;
</string>
</property>
<property
name=
"text"
>
<string>
17:05:56
</string>
<string>
00:00:00
</string>
</property>
</widget>
</widget>
<widget
class=
"QPushButton"
name=
"stopTimerButton"
>
<property
name=
"geometry"
>
<rect>
<x>
1
4
0
</x>
<y>
8
0
</y>
<x>
1
5
0
</x>
<y>
12
0
</y>
<width>
61
</width>
<height>
31
</height>
</rect>
...
...
@@ -524,11 +532,27 @@ font: 14pt "Noto Serif";</string>
<string>
Parar
</string>
</property>
</widget>
<widget
class=
"QPushButton"
name=
"pauseTimerButton"
>
<property
name=
"geometry"
>
<rect>
<x>
150
</x>
<y>
70
</y>
<width>
61
</width>
<height>
31
</height>
</rect>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
background-color:rgb(53, 53, 53)
</string>
</property>
<property
name=
"text"
>
<string>
Pausar
</string>
</property>
</widget>
</widget>
<widget
class=
"QGroupBox"
name=
"pre
nsa
NameGBox"
>
<widget
class=
"QGroupBox"
name=
"pre
ss
NameGBox"
>
<property
name=
"geometry"
>
<rect>
<x>
2
1
0
</x>
<x>
2
2
0
</x>
<y>
250
</y>
<width>
191
</width>
<height>
71
</height>
...
...
@@ -536,46 +560,47 @@ font: 14pt "Noto Serif";</string>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
border: 1px solid rgb(27, 144, 0);
background-color:rgb(
53, 53, 53)
</string>
background-color:
rgb(
86, 86, 86);
</string>
</property>
<property
name=
"title"
>
<string>
Prensa
</string>
</property>
<widget
class=
"QLineEdit"
name=
"pre
nsa
Name"
>
<widget
class=
"QLineEdit"
name=
"pre
ss
Name"
>
<property
name=
"geometry"
>
<rect>
<x>
50
</x>
<y>
20
</y>
<width>
111
</width>
<height>
3
1
</height>
<height>
4
1
</height>
</rect>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
font: 12pt
"
Noto Serif
"
;
color:rgb(0,0,0
);
background-
color:
rgb(
158, 151, 151
);
</string>
background-color:rgb(53, 53, 53
);
color:rgb(
255,255,255
);
</string>
</property>
<property
name=
"text"
>
<string>
Pr 400 Tonf
</string>
</property>
</widget>
</widget>
<widget
class=
"QGroupBox"
name=
"
valAbso
lGBox"
>
<widget
class=
"QGroupBox"
name=
"
absVa
lGBox"
>
<property
name=
"geometry"
>
<rect>
<x>
20
</x>
<y>
510
</y>
<width>
3
8
1
</width>
<width>
3
9
1
</width>
<height>
111
</height>
</rect>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
border: 1px solid rgb(26, 149, 172)
</string>
<string
notr=
"true"
>
border: 1px solid rgb(26, 149, 172);
background-color: rgb(86, 86, 86);
</string>
</property>
<property
name=
"title"
>
<string>
Valores Absolutos
</string>
</property>
<widget
class=
"QGroupBox"
name=
"forc
a
GBox"
>
<widget
class=
"QGroupBox"
name=
"forc
e
GBox"
>
<property
name=
"geometry"
>
<rect>
<x>
20
</x>
...
...
@@ -590,7 +615,7 @@ background-color: rgb(158, 151, 151);</string>
<property
name=
"title"
>
<string>
Força
</string>
</property>
<widget
class=
"QLabel"
name=
"forc
a
Label"
>
<widget
class=
"QLabel"
name=
"forc
e
Label"
>
<property
name=
"geometry"
>
<rect>
<x>
20
</x>
...
...
@@ -600,19 +625,19 @@ background-color: rgb(158, 151, 151);</string>
</rect>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
background-color: rgb(
158, 151, 151
);
color:rgb(
0, 0, 0
);
<string
notr=
"true"
>
background-color: rgb(
80,80,80
);
color:rgb(
255,255,255
);
font: 14pt
"
Noto Serif
"
;
</string>
</property>
<property
name=
"text"
>
<string>
-42.679
Tonf
</string>
<string>
0
Tonf
</string>
</property>
</widget>
</widget>
<widget
class=
"QGroupBox"
name=
"calibra
nte
GBox"
>
<widget
class=
"QGroupBox"
name=
"calibra
tor
GBox"
>
<property
name=
"geometry"
>
<rect>
<x>
2
0
0
</x>
<x>
2
2
0
</x>
<y>
30
</y>
<width>
161
</width>
<height>
71
</height>
...
...
@@ -624,7 +649,7 @@ font: 14pt "Noto Serif";</string>
<property
name=
"title"
>
<string>
Tensão no Calibrante
</string>
</property>
<widget
class=
"QLabel"
name=
"calibra
nte
Label"
>
<widget
class=
"QLabel"
name=
"calibra
tor
Label"
>
<property
name=
"geometry"
>
<rect>
<x>
20
</x>
...
...
@@ -634,12 +659,12 @@ font: 14pt "Noto Serif";</string>
</rect>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
background-color: rgb(
158, 151, 151
);
color:rgb(
0, 0, 0
);
<string
notr=
"true"
>
background-color: rgb(
80,80,80
);
color:rgb(
255,255,255
);
font: 14pt
"
Noto Serif
"
;
</string>
</property>
<property
name=
"text"
>
<string>
-23.804
mV
</string>
<string>
0
mV
</string>
</property>
</widget>
</widget>
...
...
@@ -701,15 +726,9 @@ font: 14pt "Noto Serif";</string>
<string>
Porta
</string>
</property>
</widget>
<widget
class=
"QMenu"
name=
"menuPlay_Pause"
>
<property
name=
"title"
>
<string>
Play/Pause
</string>
</property>
</widget>
<addaction
name=
"menuArquivo"
/>
<addaction
name=
"menuEtapa"
/>
<addaction
name=
"menuPorta"
/>
<addaction
name=
"menuPlay_Pause"
/>
</widget>
<widget
class=
"QStatusBar"
name=
"menuStatusBar"
/>
<action
name=
"alternaCalibraP"
>
...
...
Interface/Resources/CalibracaoT.ui
View file @
31aa3998
...
...
@@ -20,7 +20,7 @@
<string>
SADAMAP - Análise de Dados: Etapa 1 - Calibração de Pressão
</string>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
background-color:rgb(
86, 86, 86
);
<string
notr=
"true"
>
background-color:rgb(
53, 53, 53
);
color: rgb(255,255,255);
</string>
</property>
<widget
class=
"QWidget"
name=
"centralWidget"
>
...
...
@@ -49,7 +49,7 @@ color: rgb(255,255,255);</string>
<x>
20
</x>
<y>
10
</y>
<width>
391
</width>
<height>
2
0
1
</height>
<height>
2
3
1
</height>
</rect>
</property>
<property
name=
"toolTip"
>
...
...
@@ -78,7 +78,7 @@ color: rgb(255, 255, 255);</string>
<property
name=
"checkable"
>
<bool>
false
</bool>
</property>
<widget
class=
"QGroupBox"
name=
"temp
Scale
Box"
>
<widget
class=
"QGroupBox"
name=
"tempBox"
>
<property
name=
"geometry"
>
<rect>
<x>
10
</x>
...
...
@@ -87,10 +87,13 @@ color: rgb(255, 255, 255);</string>
<height>
101
</height>
</rect>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
background-color:rgb(53, 53, 53)
</string>
</property>
<property
name=
"title"
>
<string>
Temperatura
</string>
</property>
<widget
class=
"QLineEdit"
name=
"t_max"
>
<widget
class=
"QLineEdit"
name=
"t
emp
_max"
>
<property
name=
"geometry"
>
<rect>
<x>
80
</x>
...
...
@@ -99,8 +102,15 @@ color: rgb(255, 255, 255);</string>
<height>
21
</height>
</rect>
</property>
<property
name=
"styleSheet"
>
<string
notr=
"true"
>
background-color: rgb(80,80,80);
color:rgb(255,255,255);
</string>
</property>
<property
name=
"text"
>
<string>
100
</string>
</property>
</widget>
<widget
class=
"QLabel"
name=
"t_max_label"
>
<widget
class=
"QLabel"
name=
"t
emp
_max_label"
>
<property
name=
"geometry"
>
<rect>
<x>
20
</x>
...
...
@@ -116,7 +126,7 @@ color: rgb(255, 255, 255);</string>
<string>
Máximo:
</string>
</property>