home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
vos2-121.zip
/
v
/
vopengl
/
bounce
/
bncapp.h
< prev
next >
Wrap
C/C++ Source or Header
|
1998-06-22
|
1KB
|
50 lines
// bncapp.h: Header for bncApp class
//=======================================================================
#ifndef bncAPP_H
#define bncAPP_H
// Include standard V files as needed
#ifdef vDEBUG
#include <v/vdebug.h>
#endif
#include <v/vapp.h>
#include <v/vawinfo.h>
#include "bnccmdw.h" // we use bncCommandWindow
class bncApp : public vApp
{
friend int AppMain(int, char**); // allow AppMain access
public: //---------------------------------------- public
bncApp(char* name, int sdi = 0, int h = 0, int w = 0);
virtual ~bncApp();
// 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
bncCmdWindow* _bncCmdWin; // Pointer to instance of first window
};
#endif