2003-01-22 00:45:36 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2003 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.
|
|
|
|
*/
|
2002-05-09 18:31:03 +08:00
|
|
|
|
|
|
|
#ifndef OSGGA_GUIEVENTHANDLER
|
|
|
|
#define OSGGA_GUIEVENTHANDLER 1
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
2005-02-25 22:02:48 +08:00
|
|
|
#include <osg/NodeCallback>
|
|
|
|
#include <osg/Drawable>
|
2003-02-19 18:43:02 +08:00
|
|
|
#include <osg/ApplicationUsage>
|
2002-05-09 18:31:03 +08:00
|
|
|
|
|
|
|
#include <osgGA/Export>
|
|
|
|
#include <osgGA/GUIEventAdapter>
|
|
|
|
#include <osgGA/GUIActionAdapter>
|
|
|
|
#include <osgGA/GUIEventHandlerVisitor>
|
|
|
|
|
|
|
|
namespace osgGA{
|
|
|
|
|
|
|
|
class CompositeGUIEventHandler;
|
|
|
|
|
2003-03-24 16:42:35 +08:00
|
|
|
|
|
|
|
|
2002-05-09 18:31:03 +08:00
|
|
|
/**
|
|
|
|
|
|
|
|
GUIEventHandler provides a basic interface for any class which wants to handle
|
|
|
|
a GUI Events.
|
|
|
|
|
|
|
|
The GUIEvent is supplied by a GUIEventAdapter. Feedback resulting from the
|
|
|
|
handle method is supplied by a GUIActionAdapter, which allows the GUIEventHandler
|
|
|
|
to ask the GUI to take some action in response to an incoming event.
|
|
|
|
|
|
|
|
For example, consider a Trackball Viewer class which takes mouse events and
|
|
|
|
manipulates a scene camera in response. The Trackball Viewer is a GUIEventHandler,
|
|
|
|
and receives the events via the handle method. If the user 'throws' the model,
|
|
|
|
the Trackball Viewer class can detect this via the incoming events, and
|
|
|
|
request that the GUI set up a timer callback to continually redraw the view.
|
|
|
|
This request is made via the GUIActionAdapter class.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2005-02-25 22:02:48 +08:00
|
|
|
class OSGGA_EXPORT GUIEventHandler : public osg::NodeCallback, public osg::Drawable::EventCallback
|
2002-05-09 18:31:03 +08:00
|
|
|
{
|
2002-08-28 22:27:18 +08:00
|
|
|
public:
|
2002-05-09 18:31:03 +08:00
|
|
|
|
2003-03-24 16:42:35 +08:00
|
|
|
GUIEventHandler() {}
|
|
|
|
GUIEventHandler(const GUIEventHandler&,const osg::CopyOp&) {}
|
|
|
|
|
2004-09-28 17:14:04 +08:00
|
|
|
META_Object(osgGA,GUIEventHandler);
|
2003-03-24 16:42:35 +08:00
|
|
|
|
2005-02-25 22:02:48 +08:00
|
|
|
/** Event traversal node callback method.*/
|
|
|
|
virtual void operator()(osg::Node* node, osg::NodeVisitor* nv);
|
|
|
|
|
|
|
|
/** Event traversal drawable callback method.*/
|
|
|
|
virtual void event(osg::NodeVisitor* nv, osg::Drawable* drawable);
|
|
|
|
|
2002-05-09 18:31:03 +08:00
|
|
|
|
2002-08-28 22:27:18 +08:00
|
|
|
/** Returns 0 if this GUIEventHandler is not a CompositeGUIEventHandler. */
|
2002-05-09 18:31:03 +08:00
|
|
|
virtual const CompositeGUIEventHandler* getComposite() const { return 0; }
|
|
|
|
|
2002-08-28 22:27:18 +08:00
|
|
|
/** Returns 0 if this GUIEventHandler is not a CompositeGUIEventHandler. */
|
2002-05-09 18:31:03 +08:00
|
|
|
virtual CompositeGUIEventHandler* getComposite() { return 0; }
|
|
|
|
|
2003-02-19 18:43:02 +08:00
|
|
|
/** Handle events, return true if handled, false otherwise. */
|
2003-03-24 16:42:35 +08:00
|
|
|
virtual bool handle(const GUIEventAdapter&,GUIActionAdapter&) { return false; }
|
2003-02-19 18:43:02 +08:00
|
|
|
|
2002-05-09 18:31:03 +08:00
|
|
|
/** Accept visits from GUIEventHandler visitors */
|
2003-03-24 16:42:35 +08:00
|
|
|
virtual void accept(GUIEventHandlerVisitor&) {}
|
2003-02-19 18:43:02 +08:00
|
|
|
|
|
|
|
/** Get the keyboard and mouse usage of this manipulator.*/
|
|
|
|
virtual void getUsage(osg::ApplicationUsage&) const {}
|
2002-05-09 18:31:03 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
CompositeGUIEventHandler allows GUIEventHandlers to be composed into hierarchies.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class OSGGA_EXPORT CompositeGUIEventHandler : public GUIEventHandler
|
|
|
|
{
|
2002-08-28 22:27:18 +08:00
|
|
|
public:
|
2002-05-09 18:31:03 +08:00
|
|
|
|
|
|
|
typedef std::vector< osg::ref_ptr<GUIEventHandler> > ChildList;
|
|
|
|
|
2004-02-05 20:11:06 +08:00
|
|
|
virtual const char* className() const { return "CompositeGUIEventHandler"; }
|
2002-05-09 18:31:03 +08:00
|
|
|
|
|
|
|
virtual const CompositeGUIEventHandler* getComposite() const { return this; }
|
|
|
|
|
|
|
|
virtual CompositeGUIEventHandler* getComposite() { return this; }
|
|
|
|
|
2003-02-19 18:43:02 +08:00
|
|
|
virtual bool handle(const GUIEventAdapter& ea,GUIActionAdapter& aa);
|
|
|
|
|
2002-05-09 18:31:03 +08:00
|
|
|
virtual void accept(GUIEventHandlerVisitor& v) { v.visit(*this); }
|
|
|
|
|
2003-02-19 18:43:02 +08:00
|
|
|
/** Get the keyboard and mouse usage of this manipulator.*/
|
|
|
|
virtual void getUsage(osg::ApplicationUsage& usage) const;
|
|
|
|
|
|
|
|
|
2002-08-28 22:27:18 +08:00
|
|
|
// Composite-specific methods below
|
2002-05-09 18:31:03 +08:00
|
|
|
|
|
|
|
virtual bool addChild(GUIEventHandler *geh);
|
|
|
|
|
|
|
|
virtual bool removeChild(GUIEventHandler *geh);
|
|
|
|
|
2003-06-24 23:40:09 +08:00
|
|
|
unsigned int getNumChildren() const { return _children.size(); }
|
2002-05-09 18:31:03 +08:00
|
|
|
|
2003-06-24 23:40:09 +08:00
|
|
|
GUIEventHandler *getChild( unsigned int i) { return _children[i].get(); }
|
2002-05-09 18:31:03 +08:00
|
|
|
|
2003-06-24 23:40:09 +08:00
|
|
|
const GUIEventHandler *getChild( unsigned int i ) const { return _children[i].get(); }
|
2002-05-09 18:31:03 +08:00
|
|
|
|
|
|
|
bool containsNode( const GUIEventHandler* node ) const
|
|
|
|
{
|
2002-08-28 22:27:18 +08:00
|
|
|
for (ChildList::const_iterator itr=_children.begin();
|
|
|
|
itr!=_children.end();
|
|
|
|
++itr)
|
|
|
|
{
|
|
|
|
if (itr->get()==node) return true;
|
|
|
|
}
|
|
|
|
return false;
|
2002-05-09 18:31:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ChildList::iterator findChild( const GUIEventHandler* node )
|
|
|
|
{
|
2002-08-28 22:27:18 +08:00
|
|
|
for (ChildList::iterator itr=_children.begin();
|
|
|
|
itr!=_children.end();
|
|
|
|
++itr)
|
|
|
|
{
|
|
|
|
if (itr->get()==node) return itr;
|
|
|
|
}
|
|
|
|
return _children.end();
|
2002-05-09 18:31:03 +08:00
|
|
|
}
|
|
|
|
|
2002-08-28 22:27:18 +08:00
|
|
|
private:
|
2002-05-09 18:31:03 +08:00
|
|
|
|
|
|
|
ChildList _children;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|