2006-07-18 23:21:48 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2003-01-22 00:45:36 +08:00
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
|
|
|
|
|
2006-10-06 17:54:45 +08:00
|
|
|
// #define COMPILE_COMPOSITE_EVENTHANDLER
|
2003-03-24 16:42:35 +08:00
|
|
|
|
2006-10-06 17:54:45 +08:00
|
|
|
namespace osgGA{
|
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
|
|
|
|
2007-09-14 18:44:46 +08:00
|
|
|
GUIEventHandler() : _ignoreHandledEventsMask(GUIEventAdapter::NONE) {}
|
2011-06-23 19:09:49 +08:00
|
|
|
GUIEventHandler(const GUIEventHandler& eh,const osg::CopyOp& copyop):
|
|
|
|
osg::NodeCallback(eh, copyop),
|
|
|
|
osg::Drawable::EventCallback(eh, copyop),
|
2007-09-14 18:44:46 +08:00
|
|
|
_ignoreHandledEventsMask(eh._ignoreHandledEventsMask) {}
|
2003-03-24 16:42:35 +08:00
|
|
|
|
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);
|
|
|
|
|
2003-02-19 18:43:02 +08:00
|
|
|
/** Handle events, return true if handled, false otherwise. */
|
2005-02-26 07:02:23 +08:00
|
|
|
virtual bool handle(const GUIEventAdapter& ea,GUIActionAdapter& aa, osg::Object*, osg::NodeVisitor*) { return handle(ea,aa); }
|
|
|
|
|
2007-12-11 01:30:18 +08:00
|
|
|
/** Convenience method that only passes on to the handle(,,,) method events that either haven't been
|
2007-09-14 18:44:46 +08:00
|
|
|
* handled yet, or have been handled but haven't be set to be ignored by the IgnoreHandledEventsMask.
|
|
|
|
* Note, this method is an inline method, and not appropriate for users to override, override the handle(,,,)
|
|
|
|
* method instead.*/
|
|
|
|
inline bool handleWithCheckAgainstIgnoreHandledEventsMask(const GUIEventAdapter& ea,GUIActionAdapter& aa, osg::Object* object, osg::NodeVisitor* nv)
|
|
|
|
{
|
|
|
|
if (!ea.getHandled() ||
|
|
|
|
(ea.getEventType() & _ignoreHandledEventsMask)==0)
|
|
|
|
{
|
|
|
|
bool handled = handle(ea,aa,object,nv);
|
|
|
|
if (handled) ea.setHandled(true);
|
|
|
|
return handled;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Deprecated, 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
|
|
|
|
2007-12-11 01:30:18 +08:00
|
|
|
/** Convenience method that only passes on to the handle(,) method events that either haven't been
|
2007-09-14 18:44:46 +08:00
|
|
|
* handled yet, or have been handled but haven't be set to be ignored by the IgnoreHandledEventsMask.
|
|
|
|
* Note, this method is an inline method, and not appropriate for users to override, override the handle(,)
|
|
|
|
* method instead.*/
|
|
|
|
inline bool handleWithCheckAgainstIgnoreHandledEventsMask(const GUIEventAdapter& ea,GUIActionAdapter& aa)
|
|
|
|
{
|
|
|
|
if (!ea.getHandled() ||
|
|
|
|
(ea.getEventType() & _ignoreHandledEventsMask)==0)
|
|
|
|
{
|
|
|
|
bool handled = handle(ea,aa);
|
|
|
|
if (handled) ea.setHandled(true);
|
|
|
|
return handled;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-19 18:43:02 +08:00
|
|
|
/** Get the keyboard and mouse usage of this manipulator.*/
|
|
|
|
virtual void getUsage(osg::ApplicationUsage&) const {}
|
2007-09-14 18:26:14 +08:00
|
|
|
|
|
|
|
/** Set a mask of osgGA::GUIEeventAdapter::Event to be ignored if marked as handled */
|
2007-09-14 18:44:46 +08:00
|
|
|
void setIgnoreHandledEventsMask(unsigned int mask) { _ignoreHandledEventsMask = mask; }
|
2007-09-14 18:26:14 +08:00
|
|
|
|
2007-09-14 18:44:46 +08:00
|
|
|
/** Get the event mask of the osgGA::GUIEeventAdapter::Event to be ignored if marked as handled */
|
|
|
|
unsigned int getIgnoreHandledEventsMask() const { return _ignoreHandledEventsMask; };
|
2007-09-14 18:26:14 +08:00
|
|
|
|
|
|
|
protected:
|
2007-09-14 18:44:46 +08:00
|
|
|
unsigned int _ignoreHandledEventsMask;
|
2007-09-14 18:26:14 +08:00
|
|
|
|
2002-05-09 18:31:03 +08:00
|
|
|
};
|
|
|
|
|
2006-10-06 17:54:45 +08:00
|
|
|
#ifdef USE_DEPRECATED_API
|
|
|
|
// keep for backwards compatibility
|
|
|
|
class GUIEventHandlerVisitor
|
|
|
|
{
|
|
|
|
public:
|
2002-05-09 18:31:03 +08:00
|
|
|
|
2006-10-06 17:54:45 +08:00
|
|
|
void visit(GUIEventHandler&) {}
|
|
|
|
};
|
|
|
|
#endif
|
2002-05-09 18:31:03 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|