home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-09-17 | 1.3 KB | 54 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: FWScrCon.h
- // Release Version: $ ODF 2 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef FWSCRCON_H
- #define FWSCRCON_H
-
- #ifndef FWGC_H
- #include "FWGC.h"
- #endif
-
- #ifndef SLGDEV_H
- #include "SLGDev.h"
- #endif
-
- //========================================================================================
- // Forward Class Declarations
- //========================================================================================
-
- class FW_CScreenContext;
-
- //========================================================================================
- // class FW_CScreenContext
- //========================================================================================
-
- class FW_CScreenContext : public FW_CGraphicContext
- {
- public:
- FW_DECLARE_AUTO(FW_CScreenContext)
-
- FW_CScreenContext(Environment* ev,
- ODShape* clipShape = NULL,
- ODTransform* transform = NULL);
- virtual ~FW_CScreenContext();
-
- virtual void Reset();
-
- private:
- #ifdef FW_BUILD_WIN
- HDC fDC;
- #endif
- #ifdef FW_BUILD_MAC
- CGrafPort fCGrafPort;
- #endif
- FW_HGDevice fGraphicDevice;
- };
-
- #endif // FWSCRCON_H
-