ObjectivesDlg.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. //===========================================================================//
  2. // Copyright (C) Microsoft Corporation. All rights reserved. //
  3. //===========================================================================//
  4. #if !defined(AFX_OBJECTIVESDLG_H__2D45CD01_42FA_4FF0_AB18_BBBAA9B0E3A5__INCLUDED_)
  5. #define AFX_OBJECTIVESDLG_H__2D45CD01_42FA_4FF0_AB18_BBBAA9B0E3A5__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. // ObjectivesDlg.h : header file
  10. //
  11. #include "Objective.h"
  12. /////////////////////////////////////////////////////////////////////////////
  13. // ObjectivesDlg dialog
  14. class ObjectivesDlg : public CDialog
  15. {
  16. // Construction
  17. public:
  18. ObjectivesDlg(CWnd* pParent = NULL); // standard constructor
  19. CObjectives m_ModifiedObjectives;
  20. int nSelectionIndex;
  21. // Dialog Data
  22. //{{AFX_DATA(ObjectivesDlg)
  23. enum { IDD = IDD_OBJECTIVES };
  24. CButton m_EditButton;
  25. CButton m_AddButton;
  26. CListBox m_List;
  27. int m_TeamEdit;
  28. //}}AFX_DATA
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(ObjectivesDlg)
  32. protected:
  33. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. protected:
  37. // Generated message map functions
  38. //{{AFX_MSG(ObjectivesDlg)
  39. afx_msg void OnObjectivesAddButton();
  40. afx_msg void OnObjectivesRemoveButton();
  41. afx_msg void OnObjectivesEditButton();
  42. afx_msg void OnObjectivesCopyButton();
  43. afx_msg void OnObjectivesMoveUpButton();
  44. afx_msg void OnObjectivesMoveDownButton();
  45. virtual BOOL OnInitDialog();
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_OBJECTIVESDLG_H__2D45CD01_42FA_4FF0_AB18_BBBAA9B0E3A5__INCLUDED_)