| 1 | /* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield |
|---|
| 2 | * |
|---|
| 3 | * This library is open source and may be redistributed and/or modified under |
|---|
| 4 | * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or |
|---|
| 5 | * (at your option) any later version. The full license is in LICENSE file |
|---|
| 6 | * included with this distribution, and on the openscenegraph.org website. |
|---|
| 7 | * |
|---|
| 8 | * This library is distributed in the hope that it will be useful, |
|---|
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 11 | * OpenSceneGraph Public License for more details. |
|---|
| 12 | */ |
|---|
| 13 | |
|---|
| 14 | #ifndef OSGGA_EVENTSOURCE |
|---|
| 15 | #define OSGGA_EVENTSOURCE 1 |
|---|
| 16 | |
|---|
| 17 | #include <osgGA/EventQueue> |
|---|
| 18 | |
|---|
| 19 | namespace osgGA { |
|---|
| 20 | |
|---|
| 21 | /** |
|---|
| 22 | * Device base class from abstracting away from devices/windows that can generate events. |
|---|
| 23 | */ |
|---|
| 24 | class OSGGA_EXPORT Device : public osg::Object |
|---|
| 25 | { |
|---|
| 26 | public: |
|---|
| 27 | |
|---|
| 28 | Device(); |
|---|
| 29 | Device(const Device& es, const osg::CopyOp& copyop); |
|---|
| 30 | |
|---|
| 31 | META_Object(osgGA,Device); |
|---|
| 32 | |
|---|
| 33 | virtual void checkEvents() {}; |
|---|
| 34 | |
|---|
| 35 | void setEventQueue(osgGA::EventQueue* eventQueue) { _eventQueue = eventQueue; } |
|---|
| 36 | osgGA::EventQueue* getEventQueue() { return _eventQueue.get(); } |
|---|
| 37 | const osgGA::EventQueue* getEventQueue() const { return _eventQueue.get(); } |
|---|
| 38 | |
|---|
| 39 | protected: |
|---|
| 40 | |
|---|
| 41 | virtual ~Device(); |
|---|
| 42 | |
|---|
| 43 | /** Prevent unwanted copy operator.*/ |
|---|
| 44 | Device& operator = (const Device&) { return *this; } |
|---|
| 45 | |
|---|
| 46 | osg::ref_ptr<osgGA::EventQueue> _eventQueue; |
|---|
| 47 | |
|---|
| 48 | }; |
|---|
| 49 | |
|---|
| 50 | } |
|---|
| 51 | |
|---|
| 52 | #endif |
|---|