home *** CD-ROM | disk | FTP | other *** search
- /*************************************************************************************************
- *
- *
- * ObjectMacZapp -- a standard Mac OOP application template
- *
- *
- *
- * ZPictWindow.h -- a window that displays PICT files
- *
- *
- *
- *
- *
- * © 1996, Graham Cox
- *
- *
- *
- *
- *************************************************************************************************/
-
-
- #pragma once
-
- #ifndef __ZPICTWINDOW__
- #define __ZPICTWINDOW__
-
-
- #include "ZScroller.h"
-
-
-
- class ZPictWindow : public ZScroller
- {
- public:
- PicHandle thePicture;
-
- ZPictWindow(ZCommander* aBoss, short windID);
- ~ZPictWindow();
-
- virtual void DrawContent();
- virtual void OpenFile(OSType fType);
- virtual void SaveFile();
- };
-
-
-
-
- #endif