#ifndef __EVENTBOX_H #define __EVENTBOX_H #include // FlTk demo program for CS638 // Fall, 1999, Richard Yu Gu // Comments added, Fall 2000, Michael Gleicher // this class implements a very simple widget that responds to events // // the idea is to show how to handle events in fltk class EventBox: public Fl_Box { private: public: EventBox(int t, int l, int width, int height); int handle(int e); }; #endif