summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Fl_Adjuster.cxx8
-rw-r--r--src/Fl_Dial.cxx7
-rw-r--r--src/Fl_Roller.cxx7
-rw-r--r--src/Fl_Value_Output.cxx7
4 files changed, 21 insertions, 8 deletions
diff --git a/src/Fl_Adjuster.cxx b/src/Fl_Adjuster.cxx
index 421635739..cdccaf11a 100644
--- a/src/Fl_Adjuster.cxx
+++ b/src/Fl_Adjuster.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Adjuster.cxx,v 1.5.2.3.2.5 2002/01/01 15:11:29 easysw Exp $"
+// "$Id: Fl_Adjuster.cxx,v 1.5.2.3.2.6 2002/05/12 11:12:56 easysw Exp $"
//
// Adjuster widget for the Fast Light Tool Kit (FLTK).
//
@@ -146,6 +146,10 @@ int Fl_Adjuster::handle(int event) {
redraw();
return 1;
} else return 0;
+
+ case FL_ENTER :
+ case FL_LEAVE :
+ return 1;
}
return 0;
}
@@ -160,5 +164,5 @@ Fl_Adjuster::Fl_Adjuster(int x, int y, int w, int h, const char* l)
}
//
-// End of "$Id: Fl_Adjuster.cxx,v 1.5.2.3.2.5 2002/01/01 15:11:29 easysw Exp $".
+// End of "$Id: Fl_Adjuster.cxx,v 1.5.2.3.2.6 2002/05/12 11:12:56 easysw Exp $".
//
diff --git a/src/Fl_Dial.cxx b/src/Fl_Dial.cxx
index 3a09af7a6..1a6363a5d 100644
--- a/src/Fl_Dial.cxx
+++ b/src/Fl_Dial.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Dial.cxx,v 1.12.2.3.2.2 2002/04/11 10:46:19 easysw Exp $"
+// "$Id: Fl_Dial.cxx,v 1.12.2.3.2.3 2002/05/12 11:12:56 easysw Exp $"
//
// Circular dial widget for the Fast Light Tool Kit (FLTK).
//
@@ -113,6 +113,9 @@ int Fl_Dial::handle(int event, int x, int y, int w, int h) {
case FL_RELEASE:
handle_release();
return 1;
+ case FL_ENTER :
+ case FL_LEAVE :
+ return 1;
default:
return 0;
}
@@ -131,5 +134,5 @@ Fl_Dial::Fl_Dial(int x, int y, int w, int h, const char* l)
}
//
-// End of "$Id: Fl_Dial.cxx,v 1.12.2.3.2.2 2002/04/11 10:46:19 easysw Exp $".
+// End of "$Id: Fl_Dial.cxx,v 1.12.2.3.2.3 2002/05/12 11:12:56 easysw Exp $".
//
diff --git a/src/Fl_Roller.cxx b/src/Fl_Roller.cxx
index f949f8a1e..63f516bfe 100644
--- a/src/Fl_Roller.cxx
+++ b/src/Fl_Roller.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Roller.cxx,v 1.6.2.4.2.4 2002/01/01 15:11:31 easysw Exp $"
+// "$Id: Fl_Roller.cxx,v 1.6.2.4.2.5 2002/05/12 11:12:56 easysw Exp $"
//
// Roller widget for the Fast Light Tool Kit (FLTK).
//
@@ -73,6 +73,9 @@ int Fl_Roller::handle(int event) {
redraw();
return 1;
} else return 0;
+ case FL_ENTER :
+ case FL_LEAVE :
+ return 1;
default:
return 0;
}
@@ -168,5 +171,5 @@ Fl_Roller::Fl_Roller(int X,int Y,int W,int H,const char* L)
}
//
-// End of "$Id: Fl_Roller.cxx,v 1.6.2.4.2.4 2002/01/01 15:11:31 easysw Exp $".
+// End of "$Id: Fl_Roller.cxx,v 1.6.2.4.2.5 2002/05/12 11:12:56 easysw Exp $".
//
diff --git a/src/Fl_Value_Output.cxx b/src/Fl_Value_Output.cxx
index fd799caee..f3fe7c74a 100644
--- a/src/Fl_Value_Output.cxx
+++ b/src/Fl_Value_Output.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Value_Output.cxx,v 1.6.2.3.2.2 2002/01/01 15:11:31 easysw Exp $"
+// "$Id: Fl_Value_Output.cxx,v 1.6.2.3.2.3 2002/05/12 11:12:56 easysw Exp $"
//
// Value output widget for the Fast Light Tool Kit (FLTK).
//
@@ -78,6 +78,9 @@ int Fl_Value_Output::handle(int event) {
case FL_RELEASE:
handle_release();
return 1;
+ case FL_ENTER :
+ case FL_LEAVE :
+ return 1;
default:
return 0;
}
@@ -94,5 +97,5 @@ Fl_Value_Output::Fl_Value_Output(int x,int y,int w,int h,const char *l)
}
//
-// End of "$Id: Fl_Value_Output.cxx,v 1.6.2.3.2.2 2002/01/01 15:11:31 easysw Exp $".
+// End of "$Id: Fl_Value_Output.cxx,v 1.6.2.3.2.3 2002/05/12 11:12:56 easysw Exp $".
//