home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************************
- *
- * Demo - Demonstration Program for the
- * MegaGraph Graphics Library
- *
- * Copyright (C) 1994 SciTech Software.
- * All rights reserved.
- *
- * Filename: $RCSfile: titlwind.hpp $
- * Version: $Revision: 1.2 $
- *
- * Language: C++ 3.0
- * Environment: IBM PC (MS DOS)
- *
- * Description: Header file for the class TitleWindow, a class for
- * displaying the title information for the current
- * demo at the top of the display.
- *
- * $Id: titlwind.hpp 1.2 1994/03/09 11:29:32 kjb release $
- *
- ****************************************************************************/
-
- #ifndef __TITLWIND_HPP
- #define __TITLWIND_HPP
-
- #ifndef __TDIALOG_HPP
- #include "tdialog.hpp"
- #endif
-
- #ifndef __TSTTEXT_HPP
- #include "tsttext.hpp"
- #endif
-
- /*-------------------------- Class definitions ----------------------------*/
-
- class TitleWindow : public TDialog {
- protected:
- TStaticText *title; // Text for the title
-
- public:
- // Constructor
- TitleWindow(const TRect& bounds);
-
- // Method handle events
- virtual void handleEvent(TEvent& event,phaseType phase = phFocused);
- };
-
- #endif // __TITLWIND_HPP
-