diff --git a/CHANGES b/CHANGES index 18a0375d8..3cf1a9e85 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,7 @@ CHANGES IN FLTK 1.1.0 + - The fl_msg structure now contains all data passed to + the WndProc function under WIN32. - Fixed some window focus/positioning problems under MacOS X. - Added fl_create_alphamask() function to create an alpha diff --git a/documentation/Fl_Valuator.html b/documentation/Fl_Valuator.html index e72d7cce3..4903c144c 100644 --- a/documentation/Fl_Valuator.html +++ b/documentation/Fl_Valuator.html @@ -36,101 +36,146 @@ defined as zero.
|
|
| - |
Creates a new Fl_Valuator widget using the given position, size, and label string. The default boxtype is FL_NO_BOX. -
The minimum may be greater than the maximum. This has the effect of -"reversing" the object so the larger values are in the opposite -direction. This also switches which end of the filled sliders is -filled.
-Some widgets consider this a "soft" range. This means they will -stop at the range, but if the user releases and grabs the control again -and tries to move it further, it is allowed.
-The range may affect the display. You must redraw() the -widget after changing the range.
-For precision the step is stored as the ratio of two integers, A/B. - You can set these integers directly. Currently setting a floating -point value sets the nearest A/1 or 1/B value possible.
-Destroys the valuator. + +
Sets the minimum (a) and maximum (b) values for +the valuator widget. + +
This value is true if the user has moved the slider. It is +turned off by value(x) and just before doing a callback +(the callback can turn it back on if desired). +
Clamps the passed value to the valuator range. + +
Clears the changed() flag. + +
Format the passed value to show enough digits so that for the +current step value. If the step has been set to zero then it +does a %g format. The characters are written into the +passed buffer. +