diff options
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_Input_.H | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/FL/Fl_Input_.H b/FL/Fl_Input_.H index a800d7e49..e8ab6508c 100644 --- a/FL/Fl_Input_.H +++ b/FL/Fl_Input_.H @@ -239,6 +239,12 @@ public: int value(const char*, int); /* Changes the widget text. */ + int value(int value); + + /* Changes the widget text. */ + int value(double value); + + /* Changes the widget text. */ int static_value(const char*); /* Changes the widget text. */ @@ -256,6 +262,10 @@ public: */ const char* value() const {return value_;} + int ivalue() const; + + int dvalue() const; + /* Returns the Unicode character at index \p i. */ unsigned int index(int i) const; |
