2005-04-15 05:41:28 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2005 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_GUIACTIONADAPTER
|
|
|
|
#define OSGGA_GUIACTIONADAPTER 1
|
|
|
|
|
|
|
|
#include <osgGA/Export>
|
|
|
|
|
|
|
|
namespace osgGA{
|
|
|
|
|
2002-08-28 22:27:18 +08:00
|
|
|
/**
|
|
|
|
Abstract base class defining the interface by which GUIEventHandlers may request
|
|
|
|
actions of the GUI system in use. These requests for actions should then be honoured
|
|
|
|
by the GUI toolkit of the user's application.
|
2002-05-09 18:31:03 +08:00
|
|
|
|
2002-08-28 22:27:18 +08:00
|
|
|
To provide more detail, when a GUIEventHandler (e.g. a TrackballManipulator)
|
|
|
|
handles an incoming event, such as a mouse event, it may wish to make
|
|
|
|
a request of the GUI. E.g. if a model is 'thrown', the trackball manipulator
|
|
|
|
may wish to start a timer, and be repeatedly called, to continuously refresh the
|
|
|
|
camera's position and orientation. However, it has no way of doing this, as it
|
|
|
|
knows nothing of the window system in which it's operating. Instead, the
|
|
|
|
GUIEventHandler issues it's request via a GUIActionAdapter, and the viewer
|
|
|
|
in use should honour the request, using the GUI system in play.
|
|
|
|
|
|
|
|
There is more than one way of using the GUIActionAdapter. E.g. it may be inherited
|
|
|
|
into a Viewer class, as is done with osgGLUT::Viewer. Alternatively, a simple
|
|
|
|
subclass of GUIActionAdapter (e.g. osgQt::QtActionAdapter) may be passed to
|
|
|
|
the GUIEventHandler::handle() function; once the function has returned, the viewer
|
|
|
|
will then unpack the results and work out what to do to respond to the
|
|
|
|
requests.
|
|
|
|
|
|
|
|
Also there are several ways to run your app and handle the updating of
|
|
|
|
the window. osgGLUT::Viewer always has a idle callback registered which does a
|
|
|
|
redraw all the time. osgGLUT::Viewer can safely ignore both requestRedraw() and
|
|
|
|
requestContinousUpdate() as these are happening all the time anyway.
|
|
|
|
|
|
|
|
Other apps will probably want to respond to the requestRedraw() and
|
|
|
|
requestContinousUpdate(bool) and again there is more than one way to handle it.
|
|
|
|
You can override requestRedraw() and implement to call your own window
|
|
|
|
redraw straight away. Or you can implement so that a flag is set and
|
|
|
|
then you then respond the flag being set in your own leisure.
|
|
|
|
|
|
|
|
*/
|
2002-05-09 18:31:03 +08:00
|
|
|
class GUIActionAdapter
|
|
|
|
{
|
2002-08-28 22:27:18 +08:00
|
|
|
public:
|
2002-05-09 18:31:03 +08:00
|
|
|
|
2002-08-28 22:27:18 +08:00
|
|
|
/**
|
|
|
|
requestRedraw() requests a single redraw.
|
|
|
|
*/
|
2004-06-08 20:31:33 +08:00
|
|
|
virtual void requestRedraw() = 0;
|
2002-08-28 22:27:18 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
requestContinousUpdate(bool) is for en/disabling a throw or idle
|
2003-05-19 23:15:17 +08:00
|
|
|
callback to be requested by a GUIEventHandler (typically a MatrixManipulator,
|
2002-08-28 22:27:18 +08:00
|
|
|
though other GUIEventHandler's may also provide functionality).
|
|
|
|
GUI toolkits can respond to this immediately by registering an idle/timed
|
|
|
|
callback, or can delay setting the callback and update at their own leisure.
|
|
|
|
*/
|
2004-06-08 20:31:33 +08:00
|
|
|
virtual void requestContinuousUpdate(bool needed=true) = 0;
|
2002-08-28 22:27:18 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
requestWarpPointer(int,int) is requesting a repositioning of the mouse pointer
|
|
|
|
to a specified x,y location on the window. This is used by some camera manipulators
|
|
|
|
to initialise the mouse pointer when mouse position relative to a controls
|
|
|
|
neutral mouse position is required, i.e when mimicking a aircrafts joystick.
|
|
|
|
*/
|
2004-06-08 20:31:33 +08:00
|
|
|
virtual void requestWarpPointer(float x,float y) = 0;
|
2002-05-09 18:31:03 +08:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|