summaryrefslogtreecommitdiff
path: root/FL/Fl_Positioner.H
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1999-02-16 22:00:04 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1999-02-16 22:00:04 +0000
commitca41e69c27af0dee60b8186d06f5be0713d1a051 (patch)
tree85fd248b68d4d00414fef6488016da975f739bd2 /FL/Fl_Positioner.H
parent18312d3c1fb325c0d9ac92e98137cebbcadb563c (diff)
Updated headers to support WIN32 and OS/2 DLLs.
Updated VC++ project files. Removed dummymain.c (no longer needed). git-svn-id: file:///fltk/svn/fltk/trunk@278 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Positioner.H')
-rw-r--r--FL/Fl_Positioner.H24
1 files changed, 12 insertions, 12 deletions
diff --git a/FL/Fl_Positioner.H b/FL/Fl_Positioner.H
index b1938a920..f229deaea 100644
--- a/FL/Fl_Positioner.H
+++ b/FL/Fl_Positioner.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Positioner.H,v 1.4 1999/01/07 19:17:00 mike Exp $"
+// "$Id: Fl_Positioner.H,v 1.5 1999/02/16 21:59:42 mike Exp $"
//
// Positioner header file for the Fast Light Tool Kit (FLTK).
//
@@ -40,25 +40,25 @@ class Fl_Positioner : public Fl_Widget {
protected:
// these allow subclasses to put the dial in a smaller area:
- void draw(int, int, int, int);
- int handle(int, int, int, int, int);
- void draw();
+ FL_EXPORT void draw(int, int, int, int);
+ FL_EXPORT int handle(int, int, int, int, int);
+ FL_EXPORT void draw();
public:
- int handle(int);
- Fl_Positioner(int x,int y,int w,int h, const char *l=0);
+ FL_EXPORT int handle(int);
+ FL_EXPORT Fl_Positioner(int x,int y,int w,int h, const char *l=0);
double xvalue() const {return xvalue_;}
double yvalue() const {return yvalue_;}
- int xvalue(double);
- int yvalue(double);
- int value(double,double);
- void xbounds(double, double);
+ FL_EXPORT int xvalue(double);
+ FL_EXPORT int yvalue(double);
+ FL_EXPORT int value(double,double);
+ FL_EXPORT void xbounds(double, double);
double xminimum() const {return xmin;}
void xminimum(double a) {xbounds(a,xmax);}
double xmaximum() const {return xmax;}
void xmaximum(double a) {xbounds(xmin,a);}
- void ybounds(double, double);
+ FL_EXPORT void ybounds(double, double);
double yminimum() const {return ymin;}
void yminimum(double a) {ybounds(a,ymax);}
double ymaximum() const {return ymax;}
@@ -71,5 +71,5 @@ public:
#endif
//
-// End of "$Id: Fl_Positioner.H,v 1.4 1999/01/07 19:17:00 mike Exp $".
+// End of "$Id: Fl_Positioner.H,v 1.5 1999/02/16 21:59:42 mike Exp $".
//