Open Inventor Reference
MeVis/ThirdParty/Sources/Inventor/inventor/lib/interaction/include/Inventor/draggers/SoScaleUniformDragger.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 uniform scale dragger class.
00048  |      This is a simple dragger that allows an object to
00049  |      be scaled uniformly based on some given scaleCenter, and
00050  |      a line from that scaleCenter to the point on the object that was
00051  |      picked.
00052  |
00053  |      The mouse position is projected on to the closest
00054  |      point on that line, and the change in distance along
00055  |      that line is used to determine the scale factor.
00056  |
00057  | NOTE TO DEVELOPERS:
00058  |     For info about the structure of SoScaleUniformDragger:
00059  |     [1] compile: /usr/share/src/Inventor/samples/ivNodeKitStructure
00060  |     [2] type:    ivNodeKitStructure SoScaleUniformDragger.
00061  |     [3] The program prints a diagram of the scene graph and a table with 
00062  |         information about each part.
00063  |
00064  |  The following parts in this dragger are created at construction time.
00065  |  'ResourceName' corresponds to the name of the default geometry for the
00066  |  part. The dragger's constructor gets the scene graph for 'ResourceName'
00067  |  by querying the global dictionary ( SoDB::getByName("ResourceName"); ).  
00068  |
00069  |  Resource Name:                           Part Name:
00070  |
00071  |  scaleUniformScaler                     - scaler
00072  |  scaleUniformScalerActive               - scalerActive
00073  |  scaleUniformFeedback                   - feedback
00074  |  scaleUniformFeedbackActive             - feedbackActive
00075  |
00076  |   Author(s): Paul Isaacs, Howard Look
00077  |
00078  ______________  S I L I C O N   G R A P H I C S   I N C .  ____________
00079  _______________________________________________________________________
00080  */
00081 
00082 #ifndef  _SO_SCALE_UNIFORM_DRAGGER_
00083 #define  _SO_SCALE_UNIFORM_DRAGGER_
00084 
00085 #include <Inventor/SbLinear.h>
00086 #include <Inventor/draggers/SoDragger.h>
00087 #include <Inventor/fields/SoSFVec3f.h>
00088 #include <Inventor/sensors/SoSensor.h>
00089 
00090 class SbDict;
00091 class SbLineProjector;
00092 class SoFieldSensor;
00093 
00096 
00149 
00150 
00151 class INVENTOR_API SoScaleUniformDragger : public SoDragger
00152 {
00153     SO_KIT_HEADER(SoScaleUniformDragger);
00154 
00155     SO_KIT_CATALOG_ENTRY_HEADER(scalerSwitch);
00156     SO_KIT_CATALOG_ENTRY_HEADER(scaler);
00157     SO_KIT_CATALOG_ENTRY_HEADER(scalerActive);
00158     SO_KIT_CATALOG_ENTRY_HEADER(feedbackSwitch);
00159     SO_KIT_CATALOG_ENTRY_HEADER(feedback);
00160     SO_KIT_CATALOG_ENTRY_HEADER(feedbackActive);
00161 
00162   public:
00163   
00165     SoScaleUniformDragger();
00166 
00167     SoSFVec3f scaleFactor;
00168 
00169   SoINTERNAL public:
00170     static void initClass();  
00171 
00172   protected:
00173 
00174     SbLineProjector *lineProj; 
00175 
00176     static void startCB( void *, SoDragger * );
00177     static void motionCB( void *, SoDragger * );
00178     static void finishCB( void *, SoDragger * );
00179 
00180     SoFieldSensor *fieldSensor;
00181     static void fieldSensorCB( void *, SoSensor * );
00182     static void valueChangedCB( void *, SoDragger * );
00183 
00184     void dragStart();
00185     void drag();
00186     void dragFinish();
00187 
00194     virtual SbBool setUpConnections( SbBool onOff, SbBool doItAlways = FALSE );
00195 
00196     virtual ~SoScaleUniformDragger();
00197 
00198   private:
00199     static const char geomBuffer[];
00200 };
00201 
00202 #endif  /* _SO_SCALE_UNIFORM_DRAGGER_ */
00203 
00204 
00205