Open Inventor Reference
MeVis/ThirdParty/Sources/Inventor/inventor/lib/interaction/include/Inventor/draggers/SoTranslate1Dragger.h
Go to the documentation of this file.
00001 /*
00002  *
00003  *  Copyright (C) 2000 Silicon Graphics, Inc.  All Rights Reserved. 
00004  *
00005  *  This library is free software; you can redistribute it and/or
00006  *  modify it under the terms of the GNU Lesser General Public
00007  *  License as published by the Free Software Foundation; either
00008  *  version 2.1 of the License, or (at your option) any later version.
00009  *
00010  *  This library is distributed in the hope that it will be useful,
00011  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00012  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00013  *  Lesser General Public License for more details.
00014  *
00015  *  Further, this software is distributed without any warranty that it is
00016  *  free of the rightful claim of any third person regarding infringement
00017  *  or the like.  Any license provided herein, whether implied or
00018  *  otherwise, applies only to this software file.  Patent licenses, if
00019  *  any, provided herein do not apply to combinations of this program with
00020  *  other software, or any other product whatsoever.
00021  * 
00022  *  You should have received a copy of the GNU Lesser General Public
00023  *  License along with this library; if not, write to the Free Software
00024  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00025  *
00026  *  Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
00027  *  Mountain View, CA  94043, or:
00028  * 
00029  *  http://www.sgi.com 
00030  * 
00031  *  For further information regarding this notice, see: 
00032  * 
00033  *  http://oss.sgi.com/projects/GenInfo/NoticeExplan/
00034  *
00035  */
00036 
00037 
00038 /*
00039  * Copyright (C) 1990,91,92   Silicon Graphics, Inc.
00040  *
00041  _______________________________________________________________________
00042  ______________  S I L I C O N   G R A P H I C S   I N C .  ____________
00043  |
00044  |   $Revision: 1.1.1.1 $
00045  |
00046  |   Description:
00047  |      This file defines the one dimensional translate dragger class.
00048  |      This is a simple dragger that allows an object to
00049  |      be translated in one dimension, along a given direction
00050  |
00051  |      The mouse position is projected onto a line determined
00052  |      by the translation direction and the point that the mouse
00053  |      first hit. The amount moved along that line determines the 
00054  |      amount of translation.
00055  |
00056  | NOTE TO DEVELOPERS:
00057  |     For info about the structure of SoTranslate1Dragger:
00058  |     [1] compile: /usr/share/src/Inventor/samples/ivNodeKitStructure
00059  |     [2] type:    ivNodeKitStructure SoTranslate1Dragger.
00060  |     [3] The program prints a diagram of the scene graph and a table with 
00061  |         information about each part.
00062  |
00063  |  The following parts in this dragger are created at construction time.
00064  |  'ResourceName' corresponds to the name of the default geometry for the
00065  |  part. The dragger's constructor gets the scene graph for 'ResourceName'
00066  |  by querying the global dictionary ( SoDB::getByName("ResourceName"); ).  
00067  |
00068  |  Resource Name:                           Part Name:
00069  |
00070  |  translate1Translator                   - translator
00071  |  translate1TranslatorActive             - translatorActive
00072  |  translate1Feedback                     - feedback
00073  |  translate1FeedbackActive               - feedbackActive
00074  |
00075  |   Author(s): Paul Isaacs, Howard Look
00076  |
00077  ______________  S I L I C O N   G R A P H I C S   I N C .  ____________
00078  _______________________________________________________________________
00079  */
00080 
00081 #ifndef  _SO_TRANSLATE_1_DRAGGER_
00082 #define  _SO_TRANSLATE_1_DRAGGER_
00083 
00084 #include <Inventor/SbLinear.h>
00085 #include <Inventor/draggers/SoDragger.h>
00086 #include <Inventor/fields/SoSFVec3f.h>
00087 #include <Inventor/sensors/SoSensor.h>
00088 
00089 class SbDict;
00090 class SbLineProjector;
00091 class SoFieldSensor;
00092 
00095 
00150 
00151 
00152 class INVENTOR_API SoTranslate1Dragger : public SoDragger
00153 {
00154     SO_KIT_HEADER(SoTranslate1Dragger);
00155 
00156     SO_KIT_CATALOG_ENTRY_HEADER(translatorSwitch);
00157     SO_KIT_CATALOG_ENTRY_HEADER(translator);
00158     SO_KIT_CATALOG_ENTRY_HEADER(translatorActive);
00159     SO_KIT_CATALOG_ENTRY_HEADER(feedbackSwitch);
00160     SO_KIT_CATALOG_ENTRY_HEADER(feedback);
00161     SO_KIT_CATALOG_ENTRY_HEADER(feedbackActive);
00162 
00163   public:
00164 
00166     SoTranslate1Dragger();
00167 
00168     SoSFVec3f translation;
00169 
00170   SoINTERNAL public:
00171     static void initClass();  
00172 
00173   protected:
00174 
00175     SbLineProjector *lineProj; 
00176 
00177     static void startCB( void *, SoDragger * );
00178     static void motionCB( void *, SoDragger * );
00179     static void finishCB( void *, SoDragger * );
00180 
00181     SoFieldSensor *fieldSensor;
00182     static void fieldSensorCB( void *, SoSensor * );
00183     static void valueChangedCB( void *, SoDragger * );
00184 
00185     void dragStart();
00186     void drag();
00187     void dragFinish();
00188 
00195     virtual SbBool setUpConnections( SbBool onOff, SbBool doItAlways = FALSE );
00196 
00197     virtual ~SoTranslate1Dragger();
00198 
00199   private:
00200     static const char geomBuffer[];
00201 };    
00202 
00203 #endif  /* _SO_TRANSLATE_1_DRAGGER_ */