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

  1. /*******************************************************************
  2. *  ABOUT.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, ResId& rResId );
  16.  
  17.     virtual void    Paint( const Rectangle& );
  18.     void            ButtonHdl( Button* );
  19. };
  20.