/* ==========================================================================
**
**                   Positioner.h
** Object<GraphicObject<Interactor<Valuator<Positioner
**
** A Positioner is a virtual class, derrived from class Valuator.
** Positioners are proportional gadgets.
**
**
** ©1991 WILLISoft
**
** ==========================================================================
*/

#ifndef POSITIONER_H
#define POSITIONER_H

#include "Valuator.h"



typedef Valuator Positioner;



USHORT KnobSize( Positioner *self );
   /*
   ** Returns the size of the knob (range 0..0xFFFF).
   */


USHORT SetKnobSize( Positioner *self, USHORT knobsize );
   /*
   ** Sets the size of the knob. Returns its size.
   */


#endif


