GroupDialog.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. //===========================================================================//
  2. // Copyright (C) Microsoft Corporation. All rights reserved. //
  3. //===========================================================================//
  4. #if !defined(AFX_GROUPDIALOG_H__E1CC8418_9550_4243_8187_6746DEF69E20__INCLUDED_)
  5. #define AFX_GROUPDIALOG_H__E1CC8418_9550_4243_8187_6746DEF69E20__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. // GroupDialog.h : header file
  10. //
  11. #include "CampaignData.h"
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CGroupDialog dialog
  14. class CGroupDialog : public CDialog
  15. {
  16. // Construction
  17. public:
  18. CGroupDialog(CWnd* pParent = NULL); // standard constructor
  19. int m_TuneNumber;
  20. CMissionList m_MissionList;
  21. // Dialog Data
  22. //{{AFX_DATA(CGroupDialog)
  23. enum { IDD = IDD_GROUP };
  24. CComboBox m_TuneComboControl;
  25. CListBox m_MissionListControl;
  26. CString m_OperationFileEdit;
  27. CString m_PreVideoFileEdit;
  28. CString m_VideoFileEdit;
  29. CString m_LabelEdit;
  30. int m_NumMissionsToCompleteEdit;
  31. //}}AFX_DATA
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CGroupDialog)
  35. protected:
  36. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. protected:
  40. // Generated message map functions
  41. //{{AFX_MSG(CGroupDialog)
  42. afx_msg void OnGrOperationFileBrowseButton();
  43. afx_msg void OnGrPrevideoFileBrowseButton();
  44. afx_msg void OnGrVideoFileBrowseButton();
  45. virtual BOOL OnInitDialog();
  46. afx_msg void OnGrAddButton();
  47. afx_msg void OnGrRemoveButton();
  48. afx_msg void OnGrEditButton();
  49. virtual void OnOK();
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_GROUPDIALOG_H__E1CC8418_9550_4243_8187_6746DEF69E20__INCLUDED_)