home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / opmsam.zip / PRINTDLG.HPP < prev    next >
C/C++ Source or Header  |  1993-06-12  |  659b  |  33 lines

  1. /*  VCS_ID
  2.  *  $Filename:   printdlg.hxx
  3.  *  $Author  :   John Pompeii
  4.  *  $Revision:   1.1  $
  5.  *  $Date:   28 Dec 1991 14:18:38  $
  6.  */
  7.  
  8. #include "printdlg.h"
  9.  
  10. class PrintDlg : public wFormWindow
  11. {
  12.     private:
  13.         wPrinterSetup *currSetup, *origSetup;
  14.         wPrinterList  *prlist;
  15.         bool fChanged;
  16.         wListRegion *prLReg;
  17.         short currPrinter;
  18.  
  19.         short Init();    
  20.         short Save();
  21.         short ConfirmQuit();
  22.         short ProcJobProperties(wButtonField *);
  23.  
  24.     public:
  25.         PrintDlg(wWindow *parent, wPrinterSetup *origSetup);
  26.         ~PrintDlg();
  27.  
  28.         wPrinterSetup *GetSetup()     { return currSetup; }
  29.         bool IsChanged()             { return fChanged; }
  30. };
  31.  
  32.  
  33.