home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / g / gina15.zip / demos / sleuth / CardView.h < prev    next >
C/C++ Source or Header  |  1992-02-27  |  693b  |  28 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2.  
  3. //   Module      : CardView.h   Version 1.2
  4. //   LastSCCS    : 2/26/92  16:38:41
  5. //   LastEdit    : "Thu Nov  7 16:34:55 1991"
  6. //   Description : 
  7. //   Author      : 
  8. //   Copyright   : GMD Schloss Birlinghoven
  9.  
  10. #ifndef Cardview_h
  11. #define Cardview_h
  12.  
  13. class CardView : public SleuthView {
  14.   public:
  15.     CardView(SleuthDocument *document);
  16.     void Update();
  17.     void UpdateCard(Card *c);
  18.     void UpdateGameName();
  19.   protected:
  20.     void button_press( int code, int repetition, int x, int y );
  21.     virtual void draw(int count, int x, int y,
  22.               Dimension width, Dimension height );
  23.   protected:
  24.     void DrawGameName();
  25. };
  26.  
  27. #endif
  28.