2014-05-19 18:11:50 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2014 Robert Osfield
|
|
|
|
*
|
|
|
|
* This library is open source and may be redistributed and/or modified under
|
|
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <osgUI/Dialog>
|
|
|
|
#include <osgText/String>
|
|
|
|
#include <osgText/Font>
|
|
|
|
#include <osgText/Text>
|
|
|
|
#include <osg/Notify>
|
|
|
|
|
|
|
|
using namespace osgUI;
|
|
|
|
|
|
|
|
Dialog::Dialog()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Dialog::Dialog(const osgUI::Dialog& dialog, const osg::CopyOp& copyop):
|
|
|
|
Widget(dialog, copyop),
|
|
|
|
_title(dialog._title)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Dialog::handleImplementation(osgGA::EventVisitor* ev, osgGA::Event* event)
|
|
|
|
{
|
|
|
|
osgGA::GUIEventAdapter* ea = event->asGUIEventAdapter();
|
|
|
|
if (!ea) return false;
|
|
|
|
|
|
|
|
switch(ea->getEventType())
|
|
|
|
{
|
2014-05-20 16:35:39 +08:00
|
|
|
//case(osgGA::GUIEventAdapter::KEYDOWN):
|
|
|
|
case(osgGA::GUIEventAdapter::KEYUP):
|
2014-05-19 18:11:50 +08:00
|
|
|
OSG_NOTICE<<"Key pressed : "<<ea->getKey()<<std::endl;
|
|
|
|
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Dialog::createGraphicsImplementation()
|
|
|
|
{
|
2014-05-27 00:27:33 +08:00
|
|
|
_group = new osg::Group;
|
2014-05-19 18:11:50 +08:00
|
|
|
|
2014-05-22 18:02:35 +08:00
|
|
|
Style* style = (getStyle()!=0) ? getStyle() : Style::instance().get();
|
2014-05-19 18:11:50 +08:00
|
|
|
|
2014-05-24 02:59:16 +08:00
|
|
|
float titleHeight = 10.0;
|
2014-05-22 18:02:35 +08:00
|
|
|
osg::BoundingBox titleBarExents(_extents.xMin(), _extents.yMax(), _extents.zMin(), _extents.xMax(), _extents.yMax()+titleHeight, _extents.zMin());
|
2014-05-19 18:11:50 +08:00
|
|
|
|
2014-05-22 18:02:35 +08:00
|
|
|
osg::Vec4 dialogBackgroundColor(0.8,0.8,0.8,1.0);
|
|
|
|
osg::Vec4 dialogTitleBackgroundColor(0.5,0.5,1.0,1.0);
|
2014-05-19 18:11:50 +08:00
|
|
|
|
2014-05-27 00:27:33 +08:00
|
|
|
_group->addChild( style->createPanel(_extents, dialogBackgroundColor) );
|
|
|
|
_group->addChild( style->createPanel(titleBarExents, dialogTitleBackgroundColor) );
|
2014-05-19 18:11:50 +08:00
|
|
|
|
2014-05-24 02:59:16 +08:00
|
|
|
osg::BoundingBox dialogWithTileExtents(_extents);
|
|
|
|
dialogWithTileExtents.expandBy(titleBarExents);
|
|
|
|
|
2014-05-31 00:44:36 +08:00
|
|
|
bool requiresFrame = (getFrameSettings() && getFrameSettings()->getShape()!=osgUI::FrameSettings::NO_FRAME);
|
|
|
|
if (requiresFrame) { _group->addChild(style->createFrame(dialogWithTileExtents, getFrameSettings(), dialogBackgroundColor)); }
|
|
|
|
|
2014-05-24 02:59:16 +08:00
|
|
|
OSG_NOTICE<<"Dialog::_extents ("<<_extents.xMin()<<", "<<_extents.yMin()<<", "<<_extents.zMin()<<"), ("<<_extents.xMax()<<", "<<_extents.yMax()<<", "<<_extents.zMax()<<")"<<std::endl;
|
|
|
|
OSG_NOTICE<<"Dialog::titleBarExents ("<<titleBarExents.xMin()<<", "<<titleBarExents.yMin()<<", "<<titleBarExents.zMin()<<"), ("<<titleBarExents.xMax()<<", "<<titleBarExents.yMax()<<", "<<titleBarExents.zMax()<<")"<<std::endl;
|
|
|
|
OSG_NOTICE<<"Dialog::dialogWithTileExtents ("<<dialogWithTileExtents.xMin()<<", "<<dialogWithTileExtents.yMin()<<", "<<dialogWithTileExtents.zMin()<<"), ("<<dialogWithTileExtents.xMax()<<", "<<dialogWithTileExtents.yMax()<<", "<<dialogWithTileExtents.zMax()<<")"<<std::endl;
|
|
|
|
|
2014-05-23 23:00:49 +08:00
|
|
|
osg::ref_ptr<Node> node = style->createText(titleBarExents, getAlignmentSettings(), getTextSettings(), _title);
|
|
|
|
_titleDrawable = dynamic_cast<osgText::Text*>(node.get());
|
|
|
|
_titleDrawable->setDataVariance(osg::Object::DYNAMIC);
|
2014-05-27 00:27:33 +08:00
|
|
|
_group->addChild(_titleDrawable.get());
|
2014-05-23 23:00:49 +08:00
|
|
|
|
|
|
|
style->setupDialogStateSet(getOrCreateStateSet());
|
2014-05-24 02:59:16 +08:00
|
|
|
style->setupClipStateSet(dialogWithTileExtents, getOrCreateStateSet());
|
2014-05-23 23:00:49 +08:00
|
|
|
|
2014-05-28 18:06:14 +08:00
|
|
|
// render before the subgraph
|
|
|
|
setGraphicsSubgraph(-1, _group.get());
|
|
|
|
|
|
|
|
// render after the subgraph
|
|
|
|
setGraphicsSubgraph(1, style->createDepthSetPanel(dialogWithTileExtents));
|
2014-05-19 18:11:50 +08:00
|
|
|
}
|