EDGAR.H 321 B

1234567891011121314151617
  1. #ifndef __GUIEDIT_H
  2. #define __GUIEDIT_H
  3. #include "gui.h"
  4. class EButton : public TextButton
  5. {
  6. public:
  7. EButton( int left, int top, int width, int height, char *text, MODAL_RESULT result ) :
  8. TextButton(left, top, width, height, text, result) {};
  9. virtual void HandleEvent( GEVENT *event );
  10. };
  11. #endif