home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
vos2-121.zip
/
v
/
examp
/
protoapp.h
< prev
Wrap
C/C++ Source or Header
|
1998-07-03
|
2KB
|
72 lines
//=======================================================================
// protoapp.h: Header file for minimal prototype V application
// Copyright (C) 1995 Bruce E. Wampler
//
// This program is part of the V C++ GUI Framework example programs.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// (see COPYING) along with this program; if not, write to the Free
// Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//=======================================================================
// mymodal.cxx Soruce for sample modal dialog
//
// While these files were generated by hand, they are intended to
// serve as an example of files that could have been generated by
// the V interface generator (Vigr)
//
#ifndef PROTOAPP_H
#define PROTOAPP_H
#ifdef vDEBUG
#include <v/vdebug.h>
#endif
#include <v/vapp.h>
#include <v/vawinfo.h> // for app info
#include "mycmdwin.h" // we user our cmdwin class
class myApp : public vApp
{
friend int AppMain(int, char**); // allow AppMain access
public: //---------------------------------------- public
myApp(char* name) : vApp(name) {} // just call vApp
virtual ~myApp() {}
// Routines from vApp that are normally overridden
virtual vWindow* NewAppWin(vWindow* win, char* name, int w, int h,
vAppWinInfo* winInfo);
virtual void Exit(void);
virtual int CloseAppWin(vWindow*);
virtual void AppCommand(vWindow* win, ItemVal id, ItemVal val, CmdType cType);
virtual void KeyIn(vWindow*, vKey, unsigned int);
// New routines for this particular app
protected: //--------------------------------------- protected
private: //--------------------------------------- private
};
#endif