-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathColorSchemeComboBox.h
More file actions
51 lines (41 loc) · 1.06 KB
/
Copy pathColorSchemeComboBox.h
File metadata and controls
51 lines (41 loc) · 1.06 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
#ifndef I_COLORSCHEMEBOX__
#define I_COLORSCHEMEBOX__
// ColorSchemeComboBox.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CColorSchemeComboBox window
class COnStationDoc;
class CColorSchemeComboBox : public CComboBox
{
// Construction
protected:
int m_iCurSel;
BOOL m_bEdited;
public:
CColorSchemeComboBox();
int GetColorScheme() {SetCurSel(m_iCurSel);return m_iCurSel;}
void InitialUpdate();
void UpdateEntries();
// Attributes
public:
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CColorSchemeComboBox)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CColorSchemeComboBox();
// Generated message map functions
protected:
//{{AFX_MSG(CColorSchemeComboBox)
afx_msg void OnSelchange();
afx_msg void OnKillfocus();
afx_msg void OnEditchange();
afx_msg void OnDropdown();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
#endif