-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathArenaDialog.h
More file actions
35 lines (27 loc) · 764 Bytes
/
ArenaDialog.h
File metadata and controls
35 lines (27 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#pragma once
#include "resource.h"
#include "afxwin.h"
#include "afxcmn.h"
// CArenaDialog dialog
class CArenaDialog : public CDialog
{
DECLARE_DYNAMIC(CArenaDialog)
public:
CArenaDialog(CWnd* pParent = NULL); // standard constructor
virtual ~CArenaDialog();
// Dialog Data
enum { IDD = IDD_ARENA_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
public:
CListCtrl m_ctrlArenaList;
CComboBoxEx m_ctrlRegionCombo;
CComboBoxEx m_ctrlLocationCombo;
afx_msg void OnCbnSelchangeArenaLocationCombo();
afx_msg void OnCbnSelchangeArenaRegionCombo();
afx_msg void OnLvnItemActivateArenaList(NMHDR *pNMHDR, LRESULT *pResult);
protected:
virtual void OnOK();
virtual void OnCancel();
};