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 / ZatParameterDi < prev   
Text File  |  1992-02-27  |  942b  |  35 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2.  
  3. //   Module      : ZatParameterDialog.h   Version 1.2
  4. //   LastSCCS    : 2/26/92  16:39:14
  5. //   LastEdit    : "Tue Nov  5 14:53:12 1991"
  6. //   Description : 
  7. //   Author      : 
  8. //   Copyright   : GMD Schloss Birlinghoven
  9.  
  10. #ifndef Zatparameterdialog_h
  11. #define Zatparameterdialog_h
  12.  
  13. class ZatParameterDialog : public UpdatedDialog {
  14.   public:
  15.     ZatParameterDialog(SleuthDocument *p_document, ZatDialog *p_zat_dialog);
  16.     int GetNumQuestions();
  17.   protected:
  18.     virtual void before_create(GnWidget *parent);
  19.     virtual void after_create();
  20.   public:
  21.     virtual void Update();
  22.   protected:
  23.     void Print(caddr_t);
  24.     void UpdateZatDialog(caddr_t);
  25.   private:
  26.     SleuthDocument *document;
  27.     ZatDialog      *zat_dialog;
  28.     GnOptionGroup   select_printer;
  29.     GnPushButton    print_move;
  30.     GnScale         number_of_questions;
  31.     GnScale         number_of_copies;
  32. };
  33.  
  34. #endif
  35.