affecting what end users apply via the standard Node::s/getStateSet(). Further work on TabWidget. git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@14440 16af8721-9629-0410-8352-f15c8da7e697
16 lines
403 B
C++
16 lines
403 B
C++
#include <osgUI/TabWidget>
|
|
#include <osg/ValueObject>
|
|
#include <osgDB/ObjectWrapper>
|
|
#include <osgDB/InputStream>
|
|
#include <osgDB/OutputStream>
|
|
|
|
|
|
REGISTER_OBJECT_WRAPPER( Tab,
|
|
new osgUI::Tab,
|
|
osgUI::Tab,
|
|
"osg::Object osgUI::Tab" )
|
|
{
|
|
ADD_STRING_SERIALIZER(Text, "");
|
|
ADD_OBJECT_SERIALIZER(Widget, osgUI::Widget, NULL);
|
|
}
|