File: [Development] / inventor / libSoXt / include / _SoXtSlider.h (download)
Revision 1.1.1.1 (vendor branch), Tue Aug 15 12:56:27 2000 UTC (17 years, 2 months ago) by naaman
Branch: sgi, MAIN
CVS Tags: start, release-2_1_5-9, release-2_1_5-8, release-2_1_5-10, HEAD Changes since 1.1: +0 -0
lines
Initial check-in based on 2.1.5 (SGI IRIX) source tree.
|
/*
*
* Copyright (C) 2000 Silicon Graphics, Inc. All Rights Reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
* Mountain View, CA 94043, or:
*
* http://www.sgi.com
*
* For further information regarding this notice, see:
*
* http://oss.sgi.com/projects/GenInfo/NoticeExplan/
*
*/
// -*- C++ -*-
/*
* Copyright (C) 1990-93 Silicon Graphics, Inc.
*
_______________________________________________________________________
______________ S I L I C O N G R A P H I C S I N C . ____________
|
| $Revision: 1.1.1.1 $
|
| Description:
| This file contains the _SoXtSlider class which is a GL slider within
| a GLX widget. The slider contains a text label to its left, and a
| user editable text field to the right which displays the numeric value
| of the slider. There are methods to disable either of these text fields.
|
| Classes:
| _SoXtSlider
|
| Author(s) : Alain Dumesny
|
______________ S I L I C O N G R A P H I C S I N C . ____________
_______________________________________________________________________
*/
#ifndef _SO_XT_SLIDER_
#define _SO_XT_SLIDER_
#include <Inventor/misc/SoCallbackList.h>
#include <Inventor/Xt/SoXtGLWidget.h>
class SoFloatCallbackList;
class SoXtMouse;
// callback function prototypes
typedef void _SoXtSliderCB(void *userData, float val);
//////////////////////////////////////////////////////////////////////////////
//
// Class: _SoXtSlider
//
// This is the basic slider type, which lets you set the slider value and
// register callbacks when the slider is being moved (either as soon as the
// slider changes values, or when the slider has stopped moving (mouse up)).
//
//////////////////////////////////////////////////////////////////////////////
// C-api: prefix=SoXtSldr
class _SoXtSlider : public SoXtGLWidget {
public:
// constructor/destructor
_SoXtSlider(
Widget parent = NULL,
const char *name = NULL,
SbBool buildInsideParent = TRUE);
~_SoXtSlider();
//
// Those routines are used to specify the slider value (which is automatically
// reflected in the slider) and get the current value.
//
// NOTE: setValue() will call valueChanged callbacks if the value differs.
//
// NOTE: currently only values [0.0 , 1.0] are supported
//
void setValue(float v);
float getValue() const { return value; }
//
// Specifies the label string which appears before the slider. A NULL
// string will remove the label altogether. (default behavior)
//
void setLabel(const char *newlabel);
const char *getLabel() const { return labelStr; }
//
// Display a numeric value in a text field to the right of the slider
// which can be edited to change the value of the slider.
// Default is TRUE (display the numeric value).
//
void setNumericFieldVisible(SbBool b);
SbBool isNumericFieldVisible() const { return numberVisible; }
//
// Those routines are used to register callbacks for the different slider
// actions.
//
// NOTE: the start and finish callbacks are only to signal when the mouse
// goes down and up. No valid callback data is passed (0.0 passed).
//
// C-api: name=addStartCB
void addStartCallback(
_SoXtSliderCB *f,
void *userData = NULL);
// C-api: name=addValueChangedCB
void addValueChangedCallback(
_SoXtSliderCB *f,
void *userData = NULL);
// C-api: name=addFinishCB
void addFinishCallback(
_SoXtSliderCB *f,
void *userData = NULL);
// C-api: name=removeStartCB
void removeStartCallback(
_SoXtSliderCB *f,
void *userData = NULL);
// C-api: name=removeValueChangedCB
void removeValueChangedCallback(
_SoXtSliderCB *f,
void *userData = NULL);
// C-api: name=removeFinishCB
void removeFinishCallback(
_SoXtSliderCB *f,
void *userData = NULL);
// true while the value is changing interactively
SbBool isInteractive() { return interactive; }
// sets/gets the size of the actual slider, excluding the label and
// text field widget sizes which are fixed in size.
//
// This is the prefered behavior since it allows a user to align
// multiple sliders (same size) regardless of the text label size
// (which are usually different).
//
// NOTE: this is different from most widgets, which do resize their
// container widgets. This functionality can still be achieved using
// the setSize() and getSize() methods.
//
void setSliderSize(const SbVec2s &size);
SbVec2s getSliderSize();
protected:
// This constructor takes a boolean whether to build the widget now.
// Subclasses can pass FALSE, then call _SoXtSlider::buildWidget()
// when they are ready for it to be built.
SoEXTENDER
_SoXtSlider(
Widget parent,
const char *name,
SbBool buildInsideParent,
SbBool buildNow);
// redefine these to do slider specific things
virtual void redraw();
virtual void processEvent(XAnyEvent *anyevent);
virtual void sizeChanged(const SbVec2s &newSize);
Widget buildWidget(Widget parent);
//
// this is the routine subclasses would redefine to change the look of
// the actual slider top region, which defaults to grey with a thin white marker.
//
virtual void drawSliderTopRegion();
// slider top region area (used by subclasses to do their own
// drawings in there).
short slx1, sly1, slx2, sly2;
short thumx1, thumy1, thumx2, thumy2;
private:
Widget mgrWidget, numberWidget, sliderWidget, labelWidget;
SbBool numberVisible; // whether numeric field is visible
char *labelStr; // label preceeding slider
SbVec2s sliderSize; // size of the 'widget' and 'shell'
SoXtMouse *mouse;
// slider local variables (slider value, thum position)
float value;
short position, posdiff;
// build routines
void doLabelLayout();
void doNumberLayout();
// callback variables
SoFloatCallbackList *startCallbacks;
SoFloatCallbackList *changedCallbacks;
SoFloatCallbackList *finishCallbacks;
SbBool interactive;
// text field vars and callbacks
static void textFieldCB(Widget, _SoXtSlider *, XtPointer);
// this is called by both constructors
void constructorCommon(SbBool buildNow);
};
#endif /* _SO_XT_SLIDER_ */