home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-10-10 | 1.3 KB | 44 lines | [TEXT/MPS ] |
- // Copyright © 1995 Apple Computer, Inc. All rights reserved.
- // Release Version: $ 1.0 d11 $
-
- #ifndef _SAMPLEFRAME_
- #define _SAMPLEFRAME_
-
- //=======================================================================
- // ----- Framework Includes -----
- #ifndef FWFRAME_H
- #include <FWFrame.h> // FW_CFrame
- #endif
-
- //=======================================================================
- class FW_CLASS_ATTR CSamplePart;
- class FW_CLASS_ATTR DevUniv_STalker;
- class FW_CLASS_ATTR FW_CPictureShape;
-
- //=======================================================================
- class FW_CLASS_ATTR CSampleFrame : public FW_CFrame {
- public:
- CSampleFrame(Environment* ev,
- ODFrame* odFrame,
- FW_CPresentation* presentation,
- CSamplePart* samplePart);
- virtual ~CSampleFrame();
- protected:
- // overrides
- virtual void Draw(Environment *ev,
- ODFacet* odFacet,
- ODShape* invalidShape);
- virtual FW_Boolean DoMouseDown(Environment* ev,
- const FW_CMouseEvent& theMouseEvent);
- virtual void FrameShapeChanged(Environment* ev);
- // new members
- virtual void MyInitPicture(Environment* ev);
- private:
- DevUniv_STalker* fSOMTalker; // SOM object for speech synthesis
- FW_CRect fFrameRect;
- FW_CPictureShape* fPictShape; // Mr. Pizza
- };
-
- //=======================================================================
- #endif
-