home *** CD-ROM | disk | FTP | other *** search
- /*
- File: ProgressPane.h
-
- Contains: Demonstration of different progress indicators
-
- Version: Appearance 1.0 SDK
-
- Copyright: © 1997 by Apple Computer, Inc., all rights reserved.
-
- File Ownership:
-
- DRI: Edward Voas
-
- Other Contact: 7 of 9, Borg Collective
-
- Technology: OS Technologies Group
-
- Writers:
-
- (edv) Ed Voas
-
- Change History (most recent first):
-
- <2> 9/25/97 edv Get rid of movie stuff for now.
- <1> 9/11/97 edv First checked in.
- */
-
- #pragma once
-
- #include "MegaPane.h"
- #include <Movies.h>
-
- class ProgressPane : public MegaPane
- {
- public:
- ProgressPane( DialogPtr dialog, SInt16 items );
- virtual ~ProgressPane();
-
- virtual void Idle();
-
- private:
- SInt16 fProgressValue;
- Boolean fIsAscending;
- ControlHandle fProgress1;
- ControlHandle fProgress2;
- };
-