home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / vos2-121.zip / v / examp / protoapp.h < prev   
C/C++ Source or Header  |  1998-07-03  |  2KB  |  72 lines

  1. //=======================================================================
  2. //  protoapp.h:    Header file for minimal prototype V application
  3. //  Copyright (C) 1995  Bruce E. Wampler
  4. //
  5. //  This program is part of the V C++ GUI Framework example programs.
  6. //
  7. //  This program is free software; you can redistribute it and/or modify
  8. //  it under the terms of the GNU General Public License as published by
  9. //  the Free Software Foundation; either version 2 of the License, or
  10. //  (at your option) any later version.
  11. //
  12. //  This program is distributed in the hope that it will be useful,
  13. //  but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. //  GNU General Public License for more details.
  16. //
  17. //  You should have received a copy of the GNU General Public License
  18. //  (see COPYING) along with this program; if not, write to the Free
  19. //  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. //=======================================================================
  21.  
  22. //    mymodal.cxx    Soruce for sample modal dialog
  23. //
  24. //    While these files were generated by hand, they are intended to
  25. //    serve as an example of files that could have been generated by
  26. //    the V interface generator (Vigr)
  27. //
  28.  
  29. #ifndef PROTOAPP_H
  30. #define PROTOAPP_H
  31.  
  32. #ifdef vDEBUG
  33. #include <v/vdebug.h>
  34. #endif
  35.  
  36. #include <v/vapp.h>
  37. #include <v/vawinfo.h>    // for app info
  38.  
  39. #include "mycmdwin.h"    // we user our cmdwin class
  40.  
  41.     class myApp : public vApp
  42.       {
  43.     friend int AppMain(int, char**);    // allow AppMain access
  44.  
  45.       public:        //---------------------------------------- public
  46.  
  47.     myApp(char* name) : vApp(name) {}    // just call vApp
  48.  
  49.     virtual ~myApp() {}
  50.  
  51.     // Routines from vApp that are normally overridden
  52.  
  53.     virtual vWindow* NewAppWin(vWindow* win, char* name, int w, int h,
  54.         vAppWinInfo* winInfo);
  55.  
  56.     virtual void Exit(void);
  57.  
  58.     virtual int CloseAppWin(vWindow*);
  59.  
  60.     virtual void AppCommand(vWindow* win, ItemVal id, ItemVal val, CmdType cType);
  61.  
  62.     virtual void KeyIn(vWindow*, vKey, unsigned int);
  63.  
  64.     // New routines for this particular app
  65.  
  66.       protected:    //--------------------------------------- protected
  67.  
  68.       private:        //--------------------------------------- private
  69.  
  70.       };
  71. #endif
  72.