summaryrefslogtreecommitdiff
path: root/FL/Fl_Positioner.H
diff options
context:
space:
mode:
authorFabien Costantini <fabien@onepost.net>2008-09-14 15:45:27 +0000
committerFabien Costantini <fabien@onepost.net>2008-09-14 15:45:27 +0000
commitce4d0fd5d86a1f725aba6093d9674b993d437d6c (patch)
tree4839ae652332f4ec80de23a21fb0ddd702a20330 /FL/Fl_Positioner.H
parent7f4e2867e84826d237e48f01f25de168cfdb986b (diff)
Doxygen Documentation WP4 Done. Has all documentation content but should be completed in increment 2. Registered for WP5.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6239 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Positioner.H')
-rw-r--r--FL/Fl_Positioner.H28
1 files changed, 25 insertions, 3 deletions
diff --git a/FL/Fl_Positioner.H b/FL/Fl_Positioner.H
index 9573381a6..12ebbf2fa 100644
--- a/FL/Fl_Positioner.H
+++ b/FL/Fl_Positioner.H
@@ -32,6 +32,13 @@
#include "Fl_Widget.H"
#endif
+/**
+ This class is provided for Forms compatibility. It provides 2D input.
+ It would be useful if this could be put atop another widget so that the
+ crosshairs are on top, but this is not implemented. The color of the
+ crosshairs is selection_color().
+ <P ALIGN=CENTER>\image html src=
+*/
class FL_EXPORT Fl_Positioner : public Fl_Widget {
double xmin, ymin;
@@ -49,25 +56,40 @@ protected:
public:
int handle(int);
+ /**
+ Creates a new Fl_Positioner widget using the given position,
+ size, and label string. The default boxtype is FL_NO_BOX.
+ */
Fl_Positioner(int x,int y,int w,int h, const char *l=0);
+ /** Gets the X axis coordinate.*/
double xvalue() const {return xvalue_;}
+ /** Gets the Y axis coordinate.*/
double yvalue() const {return yvalue_;}
int xvalue(double);
int yvalue(double);
int value(double,double);
void xbounds(double, double);
+ /** Gets the X axis minimum */
double xminimum() const {return xmin;}
+ /** Same as xbounds(a, xmaximum()) */
void xminimum(double a) {xbounds(a,xmax);}
+ /** Gets the X axis maximum */
double xmaximum() const {return xmax;}
+ /** Same as xbounds(xminimum(), a) */
void xmaximum(double a) {xbounds(xmin,a);}
void ybounds(double, double);
+ /** Gets the Y axis minimum */
double yminimum() const {return ymin;}
- void yminimum(double a) {ybounds(a,ymax);}
+ /** Same as ybounds(a, ymaximum()) */
+ void yminimum(double a) {ybounds(a, ymax);}
+ /** Gets the Y axis maximum */
double ymaximum() const {return ymax;}
- void ymaximum(double a) {ybounds(ymin,a);}
+ /** Same as ybounds(ymininimum(), a) */
+ void ymaximum(double a) {ybounds(ymin, a);}
+ /** Sets the stepping value for the X axis.*/
void xstep(double a) {xstep_ = a;}
+ /** Sets the stepping value for the Y axis.*/
void ystep(double a) {ystep_ = a;}
-
};
#endif