home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / freedraft.tar.gz / freedraft.tar / FREEdraft-050298 / VIEWPORT / parameterdialog.h < prev    next >
C/C++ Source or Header  |  1998-04-29  |  2KB  |  41 lines

  1. // sysparamdialog.h
  2.  
  3. // Copyright (C) 1997  Cliff Johnson                                       //
  4. //                                                                         //
  5. // This program is free software; you can redistribute it and/or           //
  6. // modify it under the terms of the GNU  General Public                    //
  7. // License as published by the Free Software Foundation; either            //
  8. // version 2 of the License, or (at your option) any later version.        //
  9. //                                                                         //
  10. // This software is distributed in the hope that it will be useful,        //
  11. // but WITHOUT ANY WARRANTY; without even the implied warranty of          //
  12. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU       //
  13. // General Public License for more details.                                //
  14. //                                                                         //
  15. // You should have received a copy of the GNU General Public License       //
  16. // along with this software (see COPYING); if not, write to the        //
  17. // Free Software Foundation, Inc., 675 Mas
  18.  
  19. #ifndef SYSPARAMDIALOG_H
  20. #define SYSPARAMDIALOG_H
  21.  
  22. #include <v/vdialog.h>  // we derive from vDialog
  23.  
  24.     class SysParamDialog: public vDialog
  25.       {
  26.       public:           //---------------------------------------- public
  27.         SysParamDialog(vBaseWindow*);
  28.         virtual ~SysParamDialog();             // Destructor
  29.         virtual void DialogCommand(ItemVal id, ItemVal retval,
  30.                 CmdType ctype);
  31.  
  32. // status checks for the menuhandler class to use
  33. //    bool Centerlines();
  34. //    int HoleStyle();         // returns 0 = hole, 1 = threaded, 2=tapped
  35.  
  36.       protected:        //------------------------------------- protected
  37.  
  38.       private:          //--------------------------------------- private
  39.       };
  40. #endif
  41.