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
Base
ItemPropertyWidget.h
Go to the documentation of this file.
1
#ifndef CNOID_BASE_ITEM_PROPERTY_WIDGET_H
2
#define CNOID_BASE_ITEM_PROPERTY_WIDGET_H
3
4
#include <QWidget>
5
#include <functional>
6
#include "exportdecl.h"
7
8
namespace
cnoid
{
9
10
class
Item;
11
class
PutPropertyFunction;
12
class
MenuManager;
13
14
class
CNOID_EXPORT
ItemPropertyWidget
:
public
QWidget
15
{
16
public
:
17
ItemPropertyWidget
(QWidget* parent =
nullptr
);
18
~
ItemPropertyWidget
();
19
20
template
<
class
ItemType>
21
void
setPropertyFunction
(std::function<
void
(ItemType* item,
PutPropertyFunction
& putProperty)> func){
22
setPropertyFunction_(
23
typeid
(ItemType),
24
[func](
Item
* item,
PutPropertyFunction
& putProperty){
25
func(
static_cast<
ItemType*
>
(item), putProperty);
26
});
27
};
28
29
bool
hasPropertyFunctionFor(
Item
* item)
const
;
30
31
void
setCurrentItem(
Item
* item);
32
void
updateProperties();
33
void
resetColumnSizes();
34
void
setOperationMenu(
MenuManager
& menuManager);
35
36
class
Impl;
37
38
protected
:
39
void
keyPressEvent(QKeyEvent* event);
40
41
private
:
42
void
setPropertyFunction_(
43
const
std::type_info& type, std::function<
void
(
Item
* item,
PutPropertyFunction
& putProperty)> func);
44
45
Impl* impl;
46
};
47
48
}
49
50
#endif
cnoid::ItemPropertyWidget
Definition:
ItemPropertyWidget.h:14
cnoid::PutPropertyFunction
Definition:
PutPropertyFunction.h:51
cnoid::ItemPropertyWidget::setPropertyFunction
void setPropertyFunction(std::function< void(ItemType *item, PutPropertyFunction &putProperty)> func)
Definition:
ItemPropertyWidget.h:21
cnoid::MenuManager
Definition:
MenuManager.h:14
cnoid
Definition:
AbstractSceneLoader.h:11
cnoid::Item
Definition:
Item.h:29
Generated by
1.8.17