home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-07-20 | 429 b | 23 lines | [TEXT/CWIE] |
- //Copyright (c) 1997 Aidan Cully
- //All rights reserved
-
- #ifndef __SCROLLTEXTBOX_H
- #define __SCROLLTEXTBOX_H
-
- #include "CLPulsar.h"
- #include "CLStyleBox.h"
-
- class TScrollStyleBox:
- public TStyleBox,
- public MPulsar
- {
- protected:
- int mTime, mDelay;
- public:
- TScrollStyleBox( TLayoutBranch*, short );
- virtual ~TScrollStyleBox();
- virtual void AttachedToWindow( TBaseWindow*, Rect );
- virtual void Pulse( const TEvent* );
- };
-
- #endif