FLTK 1.4.0
Loading...
Searching...
No Matches
Fl_Adjuster.H
1//
2// Adjuster widget header file for the Fast Light Tool Kit (FLTK).
3//
4// Copyright 1998-2010 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_Adjuster widget . */
19
20// 3-button "slider", made for Nuke
21
22#ifndef Fl_Adjuster_H
23#define Fl_Adjuster_H
24
25#ifndef Fl_Valuator_H
26#include "Fl_Valuator.H"
27#endif
28
41class FL_EXPORT Fl_Adjuster : public Fl_Valuator {
42 int drag;
43 int ix;
44 int soft_;
45protected:
46 void draw() FL_OVERRIDE;
47 int handle(int) FL_OVERRIDE;
49public:
50 Fl_Adjuster(int X,int Y,int W,int H,const char *l=0);
57 void soft(int s) {soft_ = s;}
64 int soft() const {return soft_;}
65};
66
67#endif
The Fl_Adjuster widget was stolen from Prisms, and has proven to be very useful for values that need ...
Definition Fl_Adjuster.H:41
void soft(int s)
If "soft" is turned on, the user is allowed to drag the value outside the range.
Definition Fl_Adjuster.H:57
int soft() const
If "soft" is turned on, the user is allowed to drag the value outside the range.
Definition Fl_Adjuster.H:64
The Fl_Valuator class controls a single floating-point value and provides a consistent interface to s...
Definition Fl_Valuator.H:47
virtual void value_damage()
Asks for partial redraw.
Definition Fl_Valuator.cxx:68
virtual void draw()=0
Draws the widget.
virtual int handle(int event)
Handles the specified event.
Definition Fl_Widget.cxx:102
#define FL_OVERRIDE
This macro makes it safe to use the C++11 keyword override with older compilers.
Definition fl_attr.h:46