Choreonoid
1.8
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
Variables
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
p
q
r
s
t
v
w
z
Enumerations
Enumerator
a
b
c
d
f
g
i
k
l
m
n
p
s
t
u
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
y
z
~
Variables
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
z
Typedefs
a
b
c
d
e
f
g
i
l
n
p
r
s
t
u
v
Enumerations
a
b
c
d
e
f
h
i
j
l
m
n
o
p
r
s
t
u
v
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Properties
Related Functions
b
c
d
e
f
g
h
i
j
l
m
o
p
r
s
t
v
w
y
Files
File List
File Members
All
Functions
Variables
Macros
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Pages
src
ManipulatorPlugin
MprStatementViewBase.h
Go to the documentation of this file.
1
#ifndef CNOID_MANIPULATOR_PLUGIN_MPR_STATEMENT_VIEW_BASE_H
2
#define CNOID_MANIPULATOR_PLUGIN_MPR_STATEMENT_VIEW_BASE_H
3
4
#include <cnoid/View>
5
#include "exportdecl.h"
6
7
namespace
cnoid
{
8
9
class
Archive;
10
class
MprProgramViewBase;
11
class
MprStatementPanel;
12
13
class
CNOID_EXPORT
MprStatementViewBase
:
public
cnoid::View
14
{
15
public
:
16
MprStatementViewBase
();
17
virtual
~
MprStatementViewBase
();
18
19
virtual
void
onActivated()
override
;
20
virtual
void
onDeactivated()
override
;
21
virtual
bool
storeState(
Archive
& archive)
override
;
22
virtual
bool
restoreState(
const
Archive
& archive)
override
;
23
24
protected
:
25
typedef
MprStatementPanel
* (*PanelFactoryFunction)();
26
27
template
<
class
StatementType,
class
StatementPanelType>
28
void
registerPanelFactory
(){
29
registerPanelFactory(
30
typeid
(StatementType),
31
[]() ->
MprStatementPanel
* {
return
new
StatementPanelType; });
32
}
33
34
virtual
MprProgramViewBase
* getProgramView() = 0;
35
36
private
:
37
class
Impl;
38
Impl* impl;
39
40
void
registerPanelFactory(
const
std::type_info& statementType, PanelFactoryFunction factory);
41
};
42
43
}
44
45
#endif
cnoid::MprStatementViewBase
Definition:
MprStatementViewBase.h:13
cnoid::View
Definition:
View.h:27
cnoid::Archive
Definition:
Archive.h:22
cnoid::MprProgramViewBase
Definition:
MprProgramViewBase.h:20
cnoid::MprStatementPanel
Definition:
MprStatementPanel.h:12
cnoid
Definition:
AbstractSceneLoader.h:11
cnoid::MprStatementViewBase::registerPanelFactory
void registerPanelFactory()
Definition:
MprStatementViewBase.h:28
Generated by
1.8.17