home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / games / gnuchess / src / popcolor.h < prev    next >
C/C++ Source or Header  |  1993-11-27  |  419b  |  20 lines

  1. #ifndef popcolor_h
  2. #define popcolor_h
  3.  
  4.  
  5. #include "popupch.h"
  6.  
  7.  
  8. class PopupColourChoice : public ArrowablePopupChoice {
  9. public:
  10.     PopupColourChoice(GEMform&, int RSCindex, PopupList& popup);
  11.  
  12.     virtual void InitObject(GEMrawobject& object);
  13.     virtual void SetObject(int choice, GEMrawobject& object);
  14.     virtual void SelectObject(int choice, bool yes, GEMrawobject& object);
  15.     virtual int NumberOfChoices() const;
  16. };
  17.  
  18.  
  19. #endif
  20.