FLTK 1.3.2
Fl_Value_Input.H
1 //
2 // "$Id: Fl_Value_Input.H 8864 2011-07-19 04:49:30Z greg.ercolano $"
3 //
4 // Value input header file for the Fast Light Tool Kit (FLTK).
5 //
6 // Copyright 1998-2010 by Bill Spitzak and others.
7 //
8 // This library is free software. Distribution and use rights are outlined in
9 // the file "COPYING" which should have been included with this file. If this
10 // file is missing or damaged, see the license at:
11 //
12 // http://www.fltk.org/COPYING.php
13 //
14 // Please report all bugs and problems on the following page:
15 //
16 // http://www.fltk.org/str.php
17 //
18 
19 /* \file
20  Fl_Value_Input widget . */
21 
22 #ifndef Fl_Value_Input_H
23 #define Fl_Value_Input_H
24 
25 #include "Fl_Valuator.H"
26 #include "Fl_Input.H"
27 
56 class FL_EXPORT Fl_Value_Input : public Fl_Valuator {
57 public:
58  /* This is the encapsulated Fl_input attribute to which
59  this class delegates the value font, color and shortcut */
60  Fl_Input input;
61 private:
62  char soft_;
63  static void input_cb(Fl_Widget*,void*);
64  virtual void value_damage(); // cause damage() due to value() changing
65 public:
66  int handle(int);
67 protected:
68  void draw();
69 public:
70  void resize(int,int,int,int);
71  Fl_Value_Input(int x,int y,int w,int h,const char *l=0);
72  ~Fl_Value_Input();
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();}
122  void cursor_color(Fl_Color n) {input.cursor_color(n);}
123 
124 };
125 
126 #endif
127 
128 //
129 // End of "$Id: Fl_Value_Input.H 8864 2011-07-19 04:49:30Z greg.ercolano $".
130 //