home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Club Elmshorn Atari PD
/
CCE_PD.iso
/
pc
/
0400
/
CCE_0423.ZIP
/
CCE_0423.PD
/
GEM.ZOO
/
gemm.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-04-26
|
879b
|
34 lines
/////////////////////////////////////////////////////////////////////////////
//
// GEM Menu
//
// A GEMmenu in its base class is a standard GEM menu, for which every
// button is like a "quit" button. This class is intended to have the
// applications specific menu derived from it, to reimplement the
// "Do(item)" function, which should act according to the item chosen.
//
// This file is Copyright 1992 by Warwick W. Allison,
// and is freely distributable providing no charge is made.
//
/////////////////////////////////////////////////////////////////////////////
#ifndef GEMM_h
#define GEMM_h
#include "gemfeedb.h"
#include "gemf.h"
#include <gemfast.h>
class GEMmenu : public GEMform
{
public:
virtual ClickResult Do(int item);
void Show(bool on=TRUE);
void Hide() { Show(FALSE); }
friend class GEMactivity;
};
#endif