home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / starview / examples / tutorial / example3 / about3.hxx < prev    next >
Encoding:
Text File  |  1992-07-31  |  522 b   |  20 lines

  1. /*******************************************************************
  2. *  ABOUT3.HXX
  3. *  (c) 1992 STAR DIVISION
  4. *******************************************************************/
  5.  
  6. // --- class AboutBox ----------------------------------------------
  7.  
  8. class AboutBox : public ModalDialog
  9. {
  10. private:
  11.     FixedText       aText;
  12.     DefPushButton   aButton;
  13.  
  14. public:
  15.                     AboutBox( Window* pParent );
  16.  
  17.     virtual void    Paint( const Rectangle& );
  18.     void            ButtonHdl( Button* );
  19. };
  20.