FLTK 1.4.0
Loading...
Searching...
No Matches
Fl_Valuator.H
1//
2// Valuator header file for the Fast Light Tool Kit (FLTK).
3//
4// Copyright 1998-2022 by Bill Spitzak and others.
5//
6// This library is free software. Distribution and use rights are outlined in
7// the file "COPYING" which should have been included with this file. If this
8// file is missing or damaged, see the license at:
9//
10// https://www.fltk.org/COPYING.php
11//
12// Please see the following page on how to report bugs and issues:
13//
14// https://www.fltk.org/bugs.php
15//
16
17/* \file
18 Fl_Valuator widget . */
19
20#ifndef Fl_Valuator_H
21#define Fl_Valuator_H
22
23#ifndef Fl_Widget_H
24#include "Fl_Widget.H"
25#endif
26
27// shared type() values for classes that work in both directions:
28#define FL_VERTICAL 0
29#define FL_HORIZONTAL 1
30
47class FL_EXPORT Fl_Valuator : public Fl_Widget {
48
49 double value_;
50 double previous_value_;
51 double min, max; // truncates to this range *after* rounding
52 double A; int B; // rounds to multiples of A/B, or no rounding if A is zero
53
54protected:
56 int horizontal() const {return type()& FL_HORIZONTAL;}
57 Fl_Valuator(int X, int Y, int W, int H, const char* L);
58
60 double previous_value() const {return previous_value_;}
62 void handle_push() {previous_value_ = value_;}
63 double softclamp(double);
64 void handle_drag(double newvalue);
65 void handle_release(); // use drag() value
66 virtual void value_damage(); // cause damage() due to value() changing
68 void set_value(double v) {value_ = v;}
69
70public:
71
73 void bounds(double a, double b) {min=a; max=b;}
75 double minimum() const {return min;}
77 void minimum(double a) {min = a;}
79 double maximum() const {return max;}
81 void maximum(double a) {max = a;}
102 void range(double a, double b) {min = a; max = b;}
104 void step(int a) {A = a; B = 1;}
106 void step(double a, int b) {A = a; B = b;}
107 void step(double s);
119 double step() const {return A/B;}
120 void precision(int digits);
121
123 double value() const {return value_;}
124 int value(double);
125
126 virtual int format(char*);
127 double round(double); // round to nearest multiple of step
128 double clamp(double); // keep in range
129 double increment(double, int); // add n*step to value
130};
131
132#endif
Fl_Widget and Fl_Label classes.
The Fl_Valuator class controls a single floating-point value and provides a consistent interface to s...
Definition Fl_Valuator.H:47
double step() const
Gets or sets the step value.
Definition Fl_Valuator.H:119
double value() const
Gets the floating point(double) value.
Definition Fl_Valuator.H:123
void set_value(double v)
Sets the current floating point value.
Definition Fl_Valuator.H:68
void step(int a)
See double Fl_Valuator::step() const
Definition Fl_Valuator.H:104
double minimum() const
Gets the minimum value for the valuator.
Definition Fl_Valuator.H:75
void range(double a, double b)
Sets the minimum and maximum values for the valuator.
Definition Fl_Valuator.H:102
void handle_push()
Stores the current value in the previous value.
Definition Fl_Valuator.H:62
double previous_value() const
Gets the previous floating point value before an event changed it.
Definition Fl_Valuator.H:60
double maximum() const
Gets the maximum value for the valuator.
Definition Fl_Valuator.H:79
void minimum(double a)
Sets the minimum value for the valuator.
Definition Fl_Valuator.H:77
void maximum(double a)
Sets the maximum value for the valuator.
Definition Fl_Valuator.H:81
void bounds(double a, double b)
Sets the minimum (a) and maximum (b) values for the valuator widget.
Definition Fl_Valuator.H:73
void step(double a, int b)
See double Fl_Valuator::step() const
Definition Fl_Valuator.H:106
int horizontal() const
Tells if the valuator is an FL_HORIZONTAL one.
Definition Fl_Valuator.H:56
Fl_Widget is the base class for all widgets in FLTK.
Definition Fl_Widget.H:104
uchar type() const
Gets the widget type.
Definition Fl_Widget.H:343