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 / UpdatedDialog. < prev    next >
Text File  |  1992-02-27  |  774b  |  32 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2.  
  3. //   Module      : UpdatedDialog.h   Version 1.2
  4. //   LastSCCS    : 2/26/92  16:39:12
  5. //   LastEdit    : "Wed Nov  6 09:05:12 1991"
  6. //   Description : 
  7. //   Author      : Andreas Baecker
  8. //   Copyright   : GMD Schloss Birlinghoven
  9.  
  10. #ifndef Updateddialog_h
  11. #define Updateddialog_h
  12.  
  13. class UpdatedDialog : public GnFormDialog {
  14.   public:
  15.     UpdatedDialog(Boolean p_self_update);
  16.     virtual void Update();
  17.   protected:
  18.     virtual void after_create();
  19.     virtual void after_manage();
  20.   protected:
  21.     virtual void Mapped();
  22.     virtual void Unmapped();
  23.   protected:
  24.     void CallWhenMapped(caddr_t);
  25.     void CallWhenUnmapped(caddr_t);
  26.   private:
  27.     Boolean self_update;
  28.     Boolean callbacks_attached;
  29. };
  30.  
  31. #endif
  32.