#ifndef COIN_SOTRANSLATE2DRAGGER_H #define COIN_SOTRANSLATE2DRAGGER_H /**************************************************************************\ * * This file is part of the Coin 3D visualization library. * Copyright (C) 1998-2007 by Systems in Motion. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * ("GPL") version 2 as published by the Free Software Foundation. * See the file LICENSE.GPL at the root directory of this source * distribution for additional information about the GNU GPL. * * For using Coin with software that can not be combined with the GNU * GPL, and for taking advantage of the additional benefits of our * support services, please contact Systems in Motion about acquiring * a Coin Professional Edition License. * * See http://www.coin3d.org/ for more information. * * Systems in Motion, Postboks 1283, Pirsenteret, 7462 Trondheim, NORWAY. * http://www.sim.no/ sales@sim.no coin-support@coin3d.org * \**************************************************************************/ #include #include class SoSensor; class SoFieldSensor; class SbPlaneProjector; class COIN_DLL_API SoTranslate2Dragger : public SoDragger { typedef SoDragger inherited; SO_KIT_HEADER(SoTranslate2Dragger); SO_KIT_CATALOG_ENTRY_HEADER(axisFeedbackSwitch); SO_KIT_CATALOG_ENTRY_HEADER(feedback); SO_KIT_CATALOG_ENTRY_HEADER(feedbackActive); SO_KIT_CATALOG_ENTRY_HEADER(feedbackSwitch); SO_KIT_CATALOG_ENTRY_HEADER(translator); SO_KIT_CATALOG_ENTRY_HEADER(translatorActive); SO_KIT_CATALOG_ENTRY_HEADER(translatorSwitch); SO_KIT_CATALOG_ENTRY_HEADER(xAxisFeedback); SO_KIT_CATALOG_ENTRY_HEADER(yAxisFeedback); public: static void initClass(void); SoTranslate2Dragger(void); SoSFVec3f translation; protected: ~SoTranslate2Dragger(); virtual SbBool setUpConnections(SbBool onoff, SbBool doitalways = FALSE); static void startCB(void * f, SoDragger * d); static void motionCB(void * f, SoDragger * d); static void finishCB(void * f, SoDragger * d); static void metaKeyChangeCB(void * f, SoDragger * d); static void fieldSensorCB(void * f, SoSensor * s); static void valueChangedCB(void * f, SoDragger * d); void dragStart(void); void drag(void); void dragFinish(void); SoFieldSensor * fieldSensor; SbVec3f worldRestartPt; SbPlaneProjector * planeProj; private: int constraintState; class SoTranslate2DraggerP * pimpl; }; #endif // !COIN_SOTRANSLATE2DRAGGER_H