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: demowind.hpp $
- * Version: $Revision: 1.2 $
- *
- * Language: C++ 3.0
- * Environment: IBM PC (MS DOS)
- *
- * Description: Header file for the class DemoWindow, a class for
- * rendering the current demo in the window.
- *
- * $Id: demowind.hpp 1.2 1994/03/09 11:29:32 kjb release $
- *
- ****************************************************************************/
-
- #ifndef __DEMOWIND_HPP
- #define __DEMOWIND_HPP
-
- #ifndef __TDIALOG_HPP
- #include "tdialog.hpp"
- #endif
-
- /*-------------------------- Class definitions ----------------------------*/
-
- //---------------------------------------------------------------------------
- // The DemoWindow class is a special TDialog class used to display
- // the current rendering in a double buffered animation window.
- //---------------------------------------------------------------------------
-
- class DemoWindow : public TDialog {
- protected:
-
- // Method to draw the background
- virtual void drawBackground(const TRect& clip);
-
- public:
- // Constructor
- DemoWindow(const TRect& bounds);
-
- };
-
- #endif // __DEMOWIND_HPP
-