// // "$Id$" // // Spinner widget for the Fast Light Tool Kit (FLTK). // // Copyright 1998-2017 by Bill Spitzak and others. // // 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: // // http://www.fltk.org/COPYING.php // // Please report all bugs and problems on the following page: // // http://www.fltk.org/str.php // /* \file Fl_Spinner widget . */ #ifndef Fl_Spinner_H #define Fl_Spinner_H #include #include #include #include /** This widget is a combination of a numerical input widget and repeat buttons. The user can either type into the input area or use the buttons to change the value. \image html Fl_Spinner.png "Fl_Spinner widget" \image latex Fl_Spinner.png "Fl_Spinner widget" width=6cm */ class FL_EXPORT Fl_Spinner : public Fl_Group { double value_; // Current value double minimum_; // Minimum value double maximum_; // Maximum value double step_; // Amount to add/subtract for up/down const char *format_; // Format string for input field int wrap_; // wrap around at bounds (1/0) private: static void sb_cb(Fl_Widget *w, Fl_Spinner *sb); // internal callback void update(); // update input field protected: // This class works like Fl_Input but ignores FL_Up and FL_Down key // presses so they are handled by its parent, the Fl_Spinner widget. // See STR #2989. class FL_EXPORT Fl_Spinner_Input : public Fl_Input { public: Fl_Spinner_Input(int X, int Y, int W, int H) : Fl_Input(X, Y, W, H) {} int handle(int event); // implemented in src/Fl_Spinner.cxx }; Fl_Spinner_Input input_; // Input field for the value Fl_Repeat_Button up_button_, // Up button down_button_; // Down button public: // Constructor Fl_Spinner(int X, int Y, int W, int H, const char *L = 0); // Event handling int handle(int event); // Resize group and subwidgets void resize(int X, int Y, int W, int H); /** Returns the format string for the value. */ const char *format() const { return (format_); } /** Sets the format string for the value. */ void format(const char *f) { format_ = f; update(); } /** Gets the maximum value of the widget. */ double maximum() const { return (maximum_); } /** Sets the maximum value of the widget. */ void maximum(double m) { maximum_ = m; } /** Gets the minimum value of the widget. */ double minimum() const { return (minimum_); } /** Sets the minimum value of the widget. */ void minimum(double m) { minimum_ = m; } /** Sets the minimum and maximum values for the widget. */ void range(double a, double b) { minimum_ = a; maximum_ = b; } // Sets the amount to change the value when the user clicks a button. // Docs in src/Fl_Spinner.cxx void step(double s); /** Gets the amount to change the value when the user clicks a button. \see Fl_Spinner::step(double) */ double step() const { return (step_); } /** Sets whether the spinner wraps around at upper and lower bounds. If wrap mode is on the spinner value is set to the minimum() or maximum() if the value exceeds the upper or lower bounds, resp., if it was changed by one of the buttons or the FL_Up or FL_Down keys. The spinner stops at the upper and lower bounds if wrap mode is off. The default wrap mode is on for backwards compatibility with FLTK 1.3.x and older versions. \note Wrap mode does not apply to the input field if the input value is edited directly as a number. The input value is always clipped to the allowed range as if wrap mode was off when the input field is left (i.e. loses focus). \see minimum(), maximum() \param[in] set non-zero sets wrap mode, zero resets wrap mode \since 1.4.0 */ void wrap(int set) { wrap_ = set ? 1 : 0; } /** Gets the wrap mode of the Fl_Spinner widget. \see void wrap(int) \since 1.4.0 */ int wrap() const { return wrap_; } /** Gets the color of the text in the input field. */ Fl_Color textcolor() const { return (input_.textcolor()); } /** Sets the color of the text in the input field. */ void textcolor(Fl_Color c) { input_.textcolor(c); } /** Gets the font of the text in the input field. */ Fl_Font textfont() const { return (input_.textfont()); } /** Sets the font of the text in the input field. */ void textfont(Fl_Font f) { input_.textfont(f); } /** Gets the size of the text in the input field. */ Fl_Fontsize textsize() const { return (input_.textsize()); } /** Sets the size of the text in the input field. */ void textsize(Fl_Fontsize s) { input_.textsize(s); } // Sets the numeric representation in the input field. // Docs see src/Fl_Spinner.cxx void type(uchar v); /** Gets the numeric representation in the input field. \see Fl_Spinner::type(uchar) */ uchar type() const { return (input_.type()); } /** Gets the current value of the widget. */ double value() const { return (value_); } /** Sets the current value of the input widget. Before setting value to a non-integer value, the spinner type() should be changed to floating point. */ void value(double v) { value_ = v; update(); } /** Sets the background color of the spinner widget's input field. */ void color(Fl_Color v) { input_.color(v); } /** Returns the background color of the spinner widget's input field. */ Fl_Color color() const { return(input_.color()); } /** Sets the selection color of the spinner widget's input field. */ void selection_color(Fl_Color val) { input_.selection_color(val); } /** Returns the selection color of the spinner widget's input field. */ Fl_Color selection_color() const { return input_.selection_color(); } /** Sets the maximum width of the input field. */ void maximum_size(int m) { if (m > 0) input_.maximum_size(m); } /** Returns the maximum width of the input field. */ int maximum_size() const { return input_.maximum_size(); } }; #endif // !Fl_Spinner_H // // End of "$Id$". //