VAPOR3
3.9.4
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
Variables
Typedefs
Enumerations
Enumerator
a
f
g
m
n
o
p
s
t
v
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
~
Variables
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Enumerations
a
c
d
e
f
g
h
l
m
o
p
r
s
t
v
x
Enumerator
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Related Functions
_
c
d
f
o
p
r
s
t
v
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
y
Functions
_
c
d
h
m
o
p
r
u
v
Variables
Typedefs
Enumerations
Enumerator
a
c
h
p
r
s
t
u
v
Macros
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
y
apps
vaporgui
VIntSpinBox.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <string>
4
5
#include <QWidget>
6
#include <QSpinBox>
7
8
#include "
VHBoxWidget.h
"
9
14
15
class
VIntSpinBox
:
public
VHBoxWidget
{
16
Q_OBJECT
17
18
public
:
19
VIntSpinBox
(
int
min,
int
max);
20
21
void
SetValue
(
int
value);
22
void
SetRange
(
int
min,
int
max);
23
24
int
GetValue
()
const
;
25
26
private
:
27
QSpinBox *_spinBox;
28
int
_value;
29
30
public
slots:
31
void
emitValueChanged
();
32
void
emitValueChangedIntermediate
(
int
value);
33
34
signals:
35
void
ValueChanged
(
int
value);
36
void
ValueChangedIntermediate
(
int
value);
37
};
VHBoxWidget.h
VHBoxWidget
Definition:
VHBoxWidget.h:16
VIntSpinBox
Definition:
VIntSpinBox.h:15
VIntSpinBox::emitValueChangedIntermediate
void emitValueChangedIntermediate(int value)
VIntSpinBox::SetRange
void SetRange(int min, int max)
VIntSpinBox::GetValue
int GetValue() const
VIntSpinBox::ValueChanged
void ValueChanged(int value)
VIntSpinBox::SetValue
void SetValue(int value)
VIntSpinBox::emitValueChanged
void emitValueChanged()
VIntSpinBox::VIntSpinBox
VIntSpinBox(int min, int max)
VIntSpinBox::ValueChangedIntermediate
void ValueChangedIntermediate(int value)
Generated by
1.9.6