summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_Clock.H25
1 files changed, 17 insertions, 8 deletions
diff --git a/FL/Fl_Clock.H b/FL/Fl_Clock.H
index a095c6452..8a17ee338 100644
--- a/FL/Fl_Clock.H
+++ b/FL/Fl_Clock.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Clock.H,v 1.4 1999/01/07 19:16:52 mike Exp $"
+// "$Id: Fl_Clock.H,v 1.5 1999/01/13 15:45:48 mike Exp $"
//
// Clock header file for the Fast Light Tool Kit (FLTK).
//
@@ -36,19 +36,17 @@
#define FL_ANALOG_CLOCK FL_SQUARE_CLOCK
#define FL_DIGITAL_CLOCK FL_SQUARE_CLOCK // nyi
-class Fl_Clock : public Fl_Widget {
+// a Fl_Clock_Output can be used to display a program-supplied time:
+
+class Fl_Clock_Output : public Fl_Widget {
int hour_, minute_, second_;
ulong value_;
void drawhands(Fl_Color,Fl_Color); // part of draw
protected:
void draw(int, int, int, int);
void draw();
- void _Fl_Clock();
- int handle(int);
public:
- Fl_Clock(int x,int y,int w,int h, const char *l = 0);
- Fl_Clock(uchar t,int x,int y,int w,int h, const char *l);
- ~Fl_Clock();
+ Fl_Clock_Output(int x,int y,int w,int h, const char *l = 0);
void value(ulong v); // set to this Unix time
void value(int,int,int); // set hour, minute, second
ulong value() const {return value_;}
@@ -57,8 +55,19 @@ public:
int second() const {return second_;}
};
+// a Fl_Clock displays the current time always by using a timeout:
+
+class Fl_Clock : public Fl_Clock_Output {
+ int handle(int);
+public:
+ void update();
+ Fl_Clock(int x,int y,int w,int h, const char *l = 0);
+ Fl_Clock(uchar t,int x,int y,int w,int h, const char *l);
+ ~Fl_Clock();
+};
+
#endif
//
-// End of "$Id: Fl_Clock.H,v 1.4 1999/01/07 19:16:52 mike Exp $".
+// End of "$Id: Fl_Clock.H,v 1.5 1999/01/13 15:45:48 mike Exp $".
//