home *** CD-ROM | disk | FTP | other *** search
/ Media Share 13 / mediashare_13.zip / mediashare_13 / ZIPPED / PROGRAM / WTJ9403.ZIP / WILDASS / SOURCE / TASKDLG.H < prev    next >
C/C++ Source or Header  |  1993-08-14  |  1KB  |  45 lines

  1. // taskdlg.h : header file
  2. //
  3.          
  4. #include "tasks.h"         
  5.          
  6. /////////////////////////////////////////////////////////////////////////////
  7. // CTaskDlg dialog
  8.  
  9. class CTaskDlg : public CDialog
  10. {
  11. // Construction
  12. public:
  13.    CTaskDlg(CWnd* pParent = NULL);  // standard constructor
  14.  
  15. // Dialog Data
  16.    //{{AFX_DATA(CTaskDlg)
  17.    enum { IDD = IDD_TASKS };
  18.       // NOTE: the ClassWizard will add data members here
  19.    //}}AFX_DATA
  20.  
  21. // Implementation
  22. protected:
  23.    virtual void DoDataExchange(CDataExchange* pDX);   // DDX/DDV support
  24.  
  25.    // Generated message map functions
  26.    //{{AFX_MSG(CTaskDlg)
  27.    virtual BOOL OnInitDialog();
  28.    afx_msg void OnClickedKilltask();
  29.    afx_msg void OnClickedClosetask();
  30.    afx_msg void OnClickedRefreshtask();
  31.    afx_msg void OnClickedTaskinfo();
  32.     afx_msg void OnClickedExitWindows();
  33.     afx_msg void OnClickedHelp();
  34.     //}}AFX_MSG
  35.    DECLARE_MESSAGE_MAP()
  36.    
  37. public:
  38.    CTask*      GetSelectedTask(); // retrieve a ptr to the currently selected task  
  39.    
  40. private:   
  41.    CTaskList   m_lstTasks;        // list of tasks _displayed_
  42.    void        ListTasks();       // refill the taskslist
  43.    
  44. };
  45.