home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-25 | 602 b | 25 lines | [TEXT/CWIE] |
- //
- // CSliderDemoWindow.h
- //
-
- #pragma once
-
- #include <LWindow.h>
- #include <LListener.h>
-
- class CSliderDemoWindow : public LWindow, LListener {
- public:
- enum { class_ID = 'Demo' };
- static CSliderDemoWindow* CreateSliderDemoWindowStream(LStream *inStream);
- static void Register(void)
- { URegistrar::RegisterClass(CSliderDemoWindow::class_ID,
- (ClassCreatorFunc) CSliderDemoWindow::CreateSliderDemoWindowStream); }
-
- CSliderDemoWindow(LStream *inStream);
-
- virtual void ListenToMessage(
- MessageT inMessage,
- void *ioParam);
- virtual void DoSliderEnable( Boolean inEnable );
- };
-