home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-04-20 | 994 b | 39 lines | [TEXT/MPS ] |
- // Copyright © 1992-1993 Emergent Behavior. All rights reserved.
-
- #ifndef _TBENCHMARKVIEW_
- #define _TBENCHMARKVIEW_
-
- #ifndef _TVIEW_
- #include "TView.h"
- #endif
-
- class TBenchMarkDocument;
- //=================================================================
- class TBenchMarkView : public TBufferedView {
- public:
- TBenchMarkView(Point size, TDocument* theDoc);
- virtual ~TBenchMarkView();
- virtual void DisplayWaitPict();
- protected:
- virtual TBenchMarkDocument* GetBenchMarkDocument();
- virtual void SetHardwareDisplay();
- virtual void UninitializedHardwareDisplay();
-
- // overrides
- virtual void Draw();
- virtual void DoMakeItems();
- enum {kTicksInSecond = 60};
- private:
- TText* fHasMathChipText;
- TText* fHas32BitQDText;
- TText* fUsingSystem7Text;
- TText* fHasColorQDText;
- TText* fAdditionTimeText;
- TText* fDivisionTimeText;
- TText* fRandomNumberTimeText;
- TText* fCompositeScoreText;
- };
-
- //=================================================================
- #endif
-