2018-05-31 21:45:37 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2018 Robert Osfield
|
2009-04-28 19:57:51 +08:00
|
|
|
*
|
2018-05-31 21:45:37 +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.
|
2012-03-22 01:36:20 +08:00
|
|
|
*
|
2018-05-31 21:45:37 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2009-04-28 19:57:51 +08:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2012-03-22 01:36:20 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2018-05-31 21:45:37 +08:00
|
|
|
* OpenSceneGraph Public License for more details.
|
2009-04-28 19:57:51 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PICKEVENTHANDLER
|
|
|
|
#define PICKEVENTHANDLER 1
|
|
|
|
|
|
|
|
#include <osg/StateSet>
|
|
|
|
#include <osg/Point>
|
|
|
|
|
|
|
|
#include <osgGA/GUIEventHandler>
|
|
|
|
|
2015-03-05 02:36:44 +08:00
|
|
|
#include <osgPresentation/SlideEventHandler>
|
2009-04-28 22:03:02 +08:00
|
|
|
|
|
|
|
namespace osgPresentation
|
|
|
|
{
|
2009-04-28 19:57:51 +08:00
|
|
|
|
2009-06-25 00:03:49 +08:00
|
|
|
class OSGPRESENTATION_EXPORT PickEventHandler : public osgGA::GUIEventHandler
|
2009-04-28 19:57:51 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2012-11-10 05:32:54 +08:00
|
|
|
PickEventHandler(osgPresentation::Operation operation, const JumpData& jumpData=JumpData());
|
|
|
|
PickEventHandler(const std::string& str, osgPresentation::Operation operation, const JumpData& jumpData=JumpData());
|
|
|
|
PickEventHandler(const osgPresentation::KeyPosition& keyPos, const JumpData& jumpData=JumpData());
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-28 22:03:02 +08:00
|
|
|
void setOperation(osgPresentation::Operation operation) { _operation = operation; }
|
|
|
|
osgPresentation::Operation getOperation() const { return _operation; }
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-28 19:57:51 +08:00
|
|
|
void setCommand(const std::string& str) { _command = str; }
|
|
|
|
const std::string& getCommand() const { return _command; }
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-28 22:03:02 +08:00
|
|
|
void setKeyPosition(const osgPresentation::KeyPosition& keyPos) { _keyPos = keyPos; }
|
|
|
|
const osgPresentation::KeyPosition& getKeyPosition() const { return _keyPos; }
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2012-11-10 05:32:54 +08:00
|
|
|
void setJumpData(const JumpData& jumpData) { _jumpData = jumpData; }
|
|
|
|
const JumpData& getJumpData() const { return _jumpData; }
|
2013-08-19 02:10:39 +08:00
|
|
|
|
2009-04-28 19:57:51 +08:00
|
|
|
virtual bool handle(const osgGA::GUIEventAdapter& ea,osgGA::GUIActionAdapter& aa, osg::Object* object, osg::NodeVisitor* nv);
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-28 19:57:51 +08:00
|
|
|
virtual void getUsage(osg::ApplicationUsage& usage) const;
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-28 19:57:51 +08:00
|
|
|
void doOperation();
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-28 19:57:51 +08:00
|
|
|
std::string _command;
|
2009-04-28 22:03:02 +08:00
|
|
|
osgPresentation::KeyPosition _keyPos;
|
|
|
|
osgPresentation::Operation _operation;
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2012-11-10 05:32:54 +08:00
|
|
|
JumpData _jumpData;
|
2013-01-07 20:17:26 +08:00
|
|
|
std::set<osg::Drawable*> _drawablesOnPush;
|
|
|
|
|
2009-04-28 19:57:51 +08:00
|
|
|
};
|
|
|
|
|
2009-04-28 22:03:02 +08:00
|
|
|
}
|
|
|
|
|
2009-04-28 19:57:51 +08:00
|
|
|
#endif
|