FLTK 1.4.0
Loading...
Searching...
No Matches
Fl_Value_Input.H
1//
2// Value input 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_Value_Input widget . */
19
20#ifndef Fl_Value_Input_H
21#define Fl_Value_Input_H
22
23#include "Fl_Valuator.H"
24#include "Fl_Input.H"
25
56class FL_EXPORT Fl_Value_Input : public Fl_Valuator {
57public:
58 /* This is the encapsulated Fl_input attribute to which
59 this class delegates the value font, color and shortcut */
60 Fl_Input input;
61private:
62 char soft_;
63 static void input_cb(Fl_Widget*,void*);
64 void value_damage() FL_OVERRIDE; // cause damage() due to value() changing
65public:
66 int handle(int) FL_OVERRIDE;
67protected:
68 void draw() FL_OVERRIDE;
69public:
70 void resize(int,int,int,int) FL_OVERRIDE;
71 Fl_Value_Input(int x,int y,int w,int h,const char *l=0);
73
75 void soft(char s) {soft_ = s;}
82 char soft() const {return soft_;}
87 int shortcut() const {return input.shortcut();}
105 void shortcut(int s) {input.shortcut(s);}
106
108 Fl_Font textfont() const {return input.textfont();}
110 void textfont(Fl_Font s) {input.textfont(s);}
112 Fl_Fontsize textsize() const {return input.textsize();}
114 void textsize(Fl_Fontsize s) {input.textsize(s);}
116 Fl_Color textcolor() const {return input.textcolor();}
118 void textcolor(Fl_Color n) {input.textcolor(n);}
120 Fl_Color cursor_color() const {return input.cursor_color();}
123
124};
125
126#endif
int Fl_Font
A font number is an index into the internal font table.
Definition Enumerations.H:1044
unsigned int Fl_Color
An FLTK color value; see also Colors
Definition Enumerations.H:1101
int Fl_Fontsize
Size of a font in pixels.
Definition Enumerations.H:1073
Fl_Font textfont() const
Gets the font of the text in the input field.
Definition Fl_Input_.H:427
Fl_Color textcolor() const
Gets the color of the text in the input field.
Definition Fl_Input_.H:446
int shortcut() const
Return the shortcut key associated with this widget.
Definition Fl_Input_.H:415
Fl_Fontsize textsize() const
Gets the size of the text in the input field.
Definition Fl_Input_.H:436
Fl_Color cursor_color() const
Gets the color of the cursor.
Definition Fl_Input_.H:456
This is the FLTK text input widget.
Definition Fl_Input.H:220
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
The Fl_Value_Input widget displays a numeric value.
Definition Fl_Value_Input.H:56
void textfont(Fl_Font s)
Sets the typeface of the text in the value box.
Definition Fl_Value_Input.H:110
void shortcut(int s)
Sets the shortcut key to s.
Definition Fl_Value_Input.H:105
Fl_Color cursor_color() const
Gets the color of the text cursor.
Definition Fl_Value_Input.H:120
void soft(char s)
See void Fl_Value_Input::soft(char s)
Definition Fl_Value_Input.H:75
int shortcut() const
Returns the current shortcut key for the Input.
Definition Fl_Value_Input.H:87
Fl_Font textfont() const
Gets the typeface of the text in the value box.
Definition Fl_Value_Input.H:108
Fl_Color textcolor() const
Gets the color of the text in the value box.
Definition Fl_Value_Input.H:116
void cursor_color(Fl_Color n)
Sets the color of the text cursor.
Definition Fl_Value_Input.H:122
void textsize(Fl_Fontsize s)
Sets the size of the text in the value box.
Definition Fl_Value_Input.H:114
char soft() const
If "soft" is turned on, the user is allowed to drag the value outside the range.
Definition Fl_Value_Input.H:82
Fl_Fontsize textsize() const
Gets the size of the text in the value box.
Definition Fl_Value_Input.H:112
void textcolor(Fl_Color n)
Sets the color of the text in the value box.
Definition Fl_Value_Input.H:118
Fl_Widget is the base class for all widgets in FLTK.
Definition Fl_Widget.H:104
virtual void draw()=0
Draws the widget.
virtual int handle(int event)
Handles the specified event.
Definition Fl_Widget.cxx:102
virtual void resize(int x, int y, int w, int h)
Changes the size or position of the widget.
Definition Fl_Widget.cxx:136
#define FL_OVERRIDE
This macro makes it safe to use the C++11 keyword override with older compilers.
Definition fl_attr.h:46