forked from paulhoad/gp2trackeditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJamList.h
More file actions
executable file
·60 lines (52 loc) · 1.28 KB
/
JamList.h
File metadata and controls
executable file
·60 lines (52 loc) · 1.28 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// JamList.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CJamList dialog
class CJamList : public CDialog
{
// Construction
public:
CJamList(GPTrack* track, CWnd* pParent = NULL);// standard constructor
~CJamList();
GPTrack* track;
int currentSelectionIndex;
// Dialog Data
//{{AFX_DATA(CJamList)
enum {
IDD = IDD_JAMLIST
};
CComboBox m_UnusedList;
CListCtrl m_ListBox;
CString m_Index;
CString m_Filename;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CJamList)
protected:
virtual void
DoDataExchange(CDataExchange* pDX);// DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CJamList)
virtual BOOL
OnInitDialog();
afx_msg void
OnDrawItem(int nIDCtl, LPDRAWITEMSTRUCT lpDrawItemStruct);
afx_msg void
OnClickList1(NMHDR* pNMHDR, LRESULT* pResult);
afx_msg void
OnItemchangedList1(NMHDR* pNMHDR, LRESULT* pResult);
afx_msg void
OnKeydownList1(NMHDR* pNMHDR, LRESULT* pResult);
afx_msg void
OnClose();
virtual void
OnCancel();
virtual void
OnOK();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};