1998-10-20 01:39:29 +04:00
|
|
|
//
|
|
|
|
// Value input header file for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2022-10-09 20:34:34 +03:00
|
|
|
// Copyright 1998-2022 by Bill Spitzak and others.
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
// This library is free software. Distribution and use rights are outlined in
|
|
|
|
// the file "COPYING" which should have been included with this file. If this
|
|
|
|
// file is missing or damaged, see the license at:
|
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/COPYING.php
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// Please see the following page on how to report bugs and issues:
|
2005-04-16 04:13:17 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/bugs.php
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2008-10-15 17:46:06 +04:00
|
|
|
/* \file
|
2008-09-16 11:26:22 +04:00
|
|
|
Fl_Value_Input widget . */
|
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
#ifndef Fl_Value_Input_H
|
|
|
|
#define Fl_Value_Input_H
|
|
|
|
|
|
|
|
#include "Fl_Valuator.H"
|
|
|
|
#include "Fl_Input.H"
|
|
|
|
|
2008-09-15 16:46:49 +04:00
|
|
|
/**
|
|
|
|
The Fl_Value_Input widget displays a numeric value.
|
|
|
|
The user can click in the text field and edit it - there is in
|
|
|
|
fact a hidden Fl_Input widget with
|
|
|
|
type(FL_FLOAT_INPUT) or type(FL_INT_INPUT) in
|
|
|
|
there - and when they hit return or tab the value updates to
|
|
|
|
what they typed and the callback is done.
|
2020-07-01 19:03:10 +03:00
|
|
|
|
2008-09-15 16:46:49 +04:00
|
|
|
<P>If step() is non-zero and integral, then the range of numbers
|
|
|
|
is limited to integers instead of floating point numbers. As
|
|
|
|
well as displaying the value as an integer, typed input is also
|
|
|
|
limited to integer values, even if the hidden Fl_Input widget
|
|
|
|
is of type(FL_FLOAT_INPUT).</P>
|
2020-07-01 19:03:10 +03:00
|
|
|
|
2008-09-15 16:46:49 +04:00
|
|
|
<P>If step() is non-zero, the user can also drag the
|
|
|
|
mouse across the object and thus slide the value. The left
|
|
|
|
button moves one step() per pixel, the middle by 10
|
|
|
|
* step(), and the right button by 100 * step(). It
|
|
|
|
is therefore impossible to select text by dragging across it,
|
|
|
|
although clicking can still move the insertion cursor.</P>
|
2020-07-01 19:03:10 +03:00
|
|
|
|
2022-10-09 20:34:34 +03:00
|
|
|
If step() is non-zero and integral, then the range
|
2008-09-15 16:46:49 +04:00
|
|
|
of numbers are limited to integers instead of floating point
|
|
|
|
values.
|
2020-07-01 19:03:10 +03:00
|
|
|
|
2022-10-09 20:34:34 +03:00
|
|
|
\image html Fl_Value_Input.png
|
2010-12-09 15:19:03 +03:00
|
|
|
\image latex Fl_Value_Input.png "Fl_Value_Input" width=4cm
|
2022-10-09 20:34:34 +03:00
|
|
|
|
2020-01-26 21:14:45 +03:00
|
|
|
\see Fl_Widget::shortcut_label(int)
|
2008-09-15 16:46:49 +04:00
|
|
|
*/
|
2002-08-14 20:49:38 +04:00
|
|
|
class FL_EXPORT Fl_Value_Input : public Fl_Valuator {
|
1998-10-06 22:21:25 +04:00
|
|
|
public:
|
2020-07-01 19:03:10 +03:00
|
|
|
/* This is the encapsulated Fl_input attribute to which
|
2008-09-18 23:09:34 +04:00
|
|
|
this class delegates the value font, color and shortcut */
|
1998-10-06 22:21:25 +04:00
|
|
|
Fl_Input input;
|
|
|
|
private:
|
|
|
|
char soft_;
|
2002-08-14 20:49:38 +04:00
|
|
|
static void input_cb(Fl_Widget*,void*);
|
2022-12-30 21:14:36 +03:00
|
|
|
void value_damage() FL_OVERRIDE; // cause damage() due to value() changing
|
1998-10-06 22:21:25 +04:00
|
|
|
public:
|
2022-12-30 21:14:36 +03:00
|
|
|
int handle(int) FL_OVERRIDE;
|
2009-02-18 12:27:54 +03:00
|
|
|
protected:
|
2022-12-30 21:14:36 +03:00
|
|
|
void draw() FL_OVERRIDE;
|
2009-02-18 12:27:54 +03:00
|
|
|
public:
|
2022-12-30 21:14:36 +03:00
|
|
|
void resize(int,int,int,int) FL_OVERRIDE;
|
2002-08-14 20:49:38 +04:00
|
|
|
Fl_Value_Input(int x,int y,int w,int h,const char *l=0);
|
2009-01-08 20:12:34 +03:00
|
|
|
~Fl_Value_Input();
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2008-09-15 16:46:49 +04:00
|
|
|
/** See void Fl_Value_Input::soft(char s) */
|
2002-08-09 05:09:49 +04:00
|
|
|
void soft(char s) {soft_ = s;}
|
2008-09-15 16:46:49 +04:00
|
|
|
/**
|
2008-09-17 19:44:43 +04:00
|
|
|
If "soft" is turned on, the user is allowed to drag
|
2008-09-15 16:46:49 +04:00
|
|
|
the value outside the range. If they drag the value to one of
|
|
|
|
the ends, let go, then grab again and continue to drag, they can
|
|
|
|
get to any value. The default is true.
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
char soft() const {return soft_;}
|
2008-09-15 16:46:49 +04:00
|
|
|
/**
|
2011-01-30 12:04:59 +03:00
|
|
|
Returns the current shortcut key for the Input.
|
2020-07-01 19:03:10 +03:00
|
|
|
\see Fl_Value_Input::shortcut(int)
|
2008-09-15 16:46:49 +04:00
|
|
|
*/
|
2008-04-23 18:19:58 +04:00
|
|
|
int shortcut() const {return input.shortcut();}
|
2020-07-01 19:03:10 +03:00
|
|
|
/**
|
2011-01-30 12:04:59 +03:00
|
|
|
Sets the shortcut key to \p s. Setting this
|
|
|
|
overrides the use of '&' in the label(). The value is a bitwise
|
|
|
|
OR of a key and a set of shift flags, for example FL_ALT | 'a'
|
|
|
|
, FL_ALT | (FL_F + 10), or just 'a'. A value
|
|
|
|
of 0 disables the shortcut.
|
2020-07-01 19:03:10 +03:00
|
|
|
|
|
|
|
The key can be any value returned by
|
2011-01-30 12:04:59 +03:00
|
|
|
Fl::event_key(), but will usually be an ASCII letter. Use
|
|
|
|
a lower-case letter unless you require the shift key to be held down.
|
2020-07-01 19:03:10 +03:00
|
|
|
|
|
|
|
The shift flags can be any set of values accepted by
|
2011-01-30 12:04:59 +03:00
|
|
|
Fl::event_state(). If the bit is on that shift key must
|
|
|
|
be pushed. Meta, Alt, Ctrl, and Shift must be off if they are not in
|
|
|
|
the shift flags (zero for the other bits indicates a "don't care"
|
|
|
|
setting).
|
|
|
|
*/
|
2008-04-23 18:19:58 +04:00
|
|
|
void shortcut(int s) {input.shortcut(s);}
|
|
|
|
|
2008-09-15 16:46:49 +04:00
|
|
|
/** Gets the typeface of the text in the value box. */
|
1998-10-06 22:21:25 +04:00
|
|
|
Fl_Font textfont() const {return input.textfont();}
|
2008-09-15 16:46:49 +04:00
|
|
|
/** Sets the typeface of the text in the value box. */
|
2008-04-23 23:09:28 +04:00
|
|
|
void textfont(Fl_Font s) {input.textfont(s);}
|
2008-09-15 16:46:49 +04:00
|
|
|
/** Gets the size of the text in the value box. */
|
2008-08-16 01:11:21 +04:00
|
|
|
Fl_Fontsize textsize() const {return input.textsize();}
|
2008-09-15 16:46:49 +04:00
|
|
|
/** Sets the size of the text in the value box. */
|
2008-08-16 01:11:21 +04:00
|
|
|
void textsize(Fl_Fontsize s) {input.textsize(s);}
|
2008-09-15 16:46:49 +04:00
|
|
|
/** Gets the color of the text in the value box. */
|
1998-10-06 22:21:25 +04:00
|
|
|
Fl_Color textcolor() const {return input.textcolor();}
|
2008-09-15 16:46:49 +04:00
|
|
|
/** Sets the color of the text in the value box.*/
|
2009-09-27 15:06:56 +04:00
|
|
|
void textcolor(Fl_Color n) {input.textcolor(n);}
|
2008-09-15 16:46:49 +04:00
|
|
|
/** Gets the color of the text cursor. The text cursor is black by default. */
|
1998-10-06 22:21:25 +04:00
|
|
|
Fl_Color cursor_color() const {return input.cursor_color();}
|
2008-09-15 16:46:49 +04:00
|
|
|
/** Sets the color of the text cursor. The text cursor is black by default. */
|
2009-09-27 15:06:56 +04:00
|
|
|
void cursor_color(Fl_Color n) {input.cursor_color(n);}
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|