Loading [MathJax]/extensions/TeX/AMSsymbols.js
Radium Engine
1.5.20
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
f
g
i
l
m
n
o
p
q
r
s
t
v
z
Functions
a
c
d
f
g
i
l
m
n
o
p
q
r
s
t
v
Variables
Typedefs
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
Variables
b
d
f
i
m
s
v
w
Typedefs
a
b
c
f
g
i
k
o
r
s
t
v
Enumerations
Enumerator
Related Symbols
Files
File List
File Members
All
Macros
▼
Radium Engine
►
Radium Basics
►
Radium Concepts
►
Developer manual
►
Licenses
Todo List
Deprecated List
►
Namespaces
►
Classes
▼
Files
▼
File List
▼
src
►
Core
►
Engine
▼
Gui
►
AboutDialog
►
ParameterSetEditor
►
RadiumWindow
►
SelectionManager
►
SkeletonBasedAnimation
►
Timeline
►
TimerData
►
TransformEditor
►
TreeModel
►
Utils
►
Viewer
▼
Widgets
ConstrainedNumericSpinBox.hpp
ControlPanel.cpp
ControlPanel.hpp
MatrixEditor.cpp
MatrixEditor.hpp
QtTypeWrapper.hpp
VectorEditor.hpp
BaseApplication.cpp
BaseApplication.hpp
MainWindowInterface.hpp
pch.hpp
RaGui.hpp
►
Headless
►
IO
►
PluginBase
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
QtTypeWrapper.hpp
1
#pragma once
2
3
#include <QDoubleSpinBox>
4
#include <QSpinBox>
5
6
namespace
Ra
{
7
namespace
Gui {
8
namespace
Widgets {
12
namespace
QtSpinBox {
13
template
<
typename
T>
14
struct
getType {
15
using
Type = QSpinBox;
16
using
SignalType = int;
17
};
18
19
template
<>
20
struct
getType<float> {
21
using
Type = QDoubleSpinBox;
22
using
SignalType = double;
23
};
24
25
template
<>
26
struct
getType<double> {
27
using
Type = QDoubleSpinBox;
28
using
SignalType = double;
29
};
30
31
}
// namespace QtSpinBox
12
namespace
QtSpinBox {
…
}
32
33
}
// namespace Widgets
34
}
// namespace Gui
35
}
// namespace Ra
Ra
hepler function to manage enum as underlying types in VariableSet
Definition
Cage.cpp:3
src
Gui
Widgets
QtTypeWrapper.hpp
Generated by
1.12.0