2012-03-22 01:36:20 +08:00
|
|
|
/* -*-c++-*- Present3D - Copyright (C) 1999-2006 Robert Osfield
|
2009-04-28 19:57:51 +08:00
|
|
|
*
|
2012-03-22 01:36:20 +08:00
|
|
|
* This software is open source and may be redistributed and/or modified under
|
2009-04-28 19:57:51 +08:00
|
|
|
* the terms of the GNU General Public License (GPL) version 2.0.
|
|
|
|
* The full license is in LICENSE.txt file included with this distribution,.
|
2012-03-22 01:36:20 +08:00
|
|
|
*
|
2009-04-28 19:57:51 +08:00
|
|
|
* This software is distributed in the hope that it will be useful,
|
|
|
|
* 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
|
2009-04-28 19:57:51 +08:00
|
|
|
* include LICENSE.txt for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PICKEVENTHANDLER
|
|
|
|
#define PICKEVENTHANDLER 1
|
|
|
|
|
|
|
|
#include <osg/StateSet>
|
|
|
|
#include <osg/Point>
|
|
|
|
|
|
|
|
#include <osgGA/GUIEventHandler>
|
|
|
|
|
2009-06-25 00:03:49 +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; }
|
|
|
|
|
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 accept(osgGA::GUIEventHandlerVisitor& v);
|
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
|