123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- //===========================================================================//
- // Copyright (C) Microsoft Corporation. All rights reserved. //
- //===========================================================================//
- #if !defined(AFX_OBJECTIVESDLG_H__2D45CD01_42FA_4FF0_AB18_BBBAA9B0E3A5__INCLUDED_)
- #define AFX_OBJECTIVESDLG_H__2D45CD01_42FA_4FF0_AB18_BBBAA9B0E3A5__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // ObjectivesDlg.h : header file
- //
- #include "Objective.h"
- /////////////////////////////////////////////////////////////////////////////
- // ObjectivesDlg dialog
- class ObjectivesDlg : public CDialog
- {
- // Construction
- public:
- ObjectivesDlg(CWnd* pParent = NULL); // standard constructor
- CObjectives m_ModifiedObjectives;
- int nSelectionIndex;
- // Dialog Data
- //{{AFX_DATA(ObjectivesDlg)
- enum { IDD = IDD_OBJECTIVES };
- CButton m_EditButton;
- CButton m_AddButton;
- CListBox m_List;
- int m_TeamEdit;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(ObjectivesDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(ObjectivesDlg)
- afx_msg void OnObjectivesAddButton();
- afx_msg void OnObjectivesRemoveButton();
- afx_msg void OnObjectivesEditButton();
- afx_msg void OnObjectivesCopyButton();
- afx_msg void OnObjectivesMoveUpButton();
- afx_msg void OnObjectivesMoveDownButton();
- virtual BOOL OnInitDialog();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_OBJECTIVESDLG_H__2D45CD01_42FA_4FF0_AB18_BBBAA9B0E3A5__INCLUDED_)
|