home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: SysTools / SysTools.zip / taman002.zip / TASKMANA.ZIP / src / kAboutPage.h < prev    next >
C/C++ Source or Header  |  2000-04-29  |  706b  |  33 lines

  1. /* $Id: kAboutPage.h,v 1.1 2000/04/29 19:06:34 stknut Exp $
  2.  *
  3.  * class kAboutPage declaration.
  4.  *
  5.  * Copyright (c) 1999-2000 knut st. osmundsen
  6.  *
  7.  */
  8.  
  9. #ifndef _kAboutPage_h_
  10. #define _kAboutPage_h_
  11.  
  12. /**
  13.  * The about page.
  14.  * @author      knut st. osmundsen (knut.stange.osmundsen@pmsc.no)
  15.  */
  16. class kAboutPage : public kNotebookPageBase
  17. {
  18. protected:
  19.     /**@cat Common events*/
  20.     VOID  command(USHORT usCmd, USHORT usSource, BOOL fPointer); //WM_COMMAND
  21.  
  22. public:
  23.     /**@cat constructors */
  24.     kAboutPage(kNotebookBase *pNtbk);
  25.     ~kAboutPage();
  26.  
  27.     /**@cat event handlers */
  28.     virtual VOID  ntfySized(LONG cx, LONG cy);
  29.     virtual VOID  ntfyInserted();
  30. };
  31. #endif
  32.  
  33.