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

  1. /* $Id: kProcessDetails.h,v 1.1 2000/04/29 19:06:35 stknut Exp $
  2.  *
  3.  * kProcessDetails - Process detail notebook.
  4.  *
  5.  * Copyright (c) 2000 knut st. osmundsen
  6.  *
  7.  */
  8.  
  9. #ifndef _kProcessDetails_h_
  10. #define _kProcessDetails_h_
  11.  
  12.  
  13. /**
  14.  * Process detail notebook.
  15.  * @author      knut st. osmundsen (knut.stange.osmundsen@pmsc.no)
  16.  */
  17. class kProcessDetails : public kNotebookBase, public kDetailBase
  18. {
  19. private:
  20.     /** @cat data members */
  21.     HWND        hwndOwner;              /* handle of the owner? */
  22.     USHORT      usPid;                  /* The Process ID we're displaying details of. */
  23.  
  24. public:
  25.     /** @cat constructor and destructor */
  26.     kProcessDetails(USHORT usPid, HWND hwndTaskMgr);
  27.     ~kProcessDetails();
  28.  
  29.     BOOL    show();
  30.     BOOL    update();
  31. };
  32.  
  33. #endif
  34.