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
/
gemd.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-04-26
|
954b
|
38 lines
/////////////////////////////////////////////////////////////////////////////
//
// GEM Desktop
//
// A GEMdesktop is a replacement for the standard desktop.
//
// A GEMdesktop is a just a GEMformwindow that is never Topped,
// and has no features (title bar, etc).
//
// It is difficult to have more than one of these coexist, because of the
// nature of the GEM interface. Subsequent GEMdesktop objects will
// replace any predecessor, regardless of scope.
//
// This file is Copyright 1992 by Warwick W. Allison,
// and is freely distributable providing no charge is made.
//
/////////////////////////////////////////////////////////////////////////////
#ifndef GEMD_h
#define GEMD_h
#include "gemfeedb.h"
#include "gemfw.h"
#include <bool.h>
#include <gemfast.h>
class GEMdesktop : public GEMformwindow
{
public:
GEMdesktop(int RSCindex);
~GEMdesktop();
ClickResult Do(int x, int y);
};
#endif