annotate src/win32/ColorControl.h @ 1:f9f4f1b99eed

importing src directory
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Mar 2012 10:31:27 -0600
parents
children
rev   line source
rlm@1 1 #if !defined(AFX_COLORCONTROL_H__747E1E47_DDFA_4D67_B337_A473F2BACB86__INCLUDED_)
rlm@1 2 #define AFX_COLORCONTROL_H__747E1E47_DDFA_4D67_B337_A473F2BACB86__INCLUDED_
rlm@1 3
rlm@1 4 #if _MSC_VER > 1000
rlm@1 5 #pragma once
rlm@1 6 #endif // _MSC_VER > 1000
rlm@1 7 // ColorControl.h : header file
rlm@1 8 //
rlm@1 9
rlm@1 10 /////////////////////////////////////////////////////////////////////////////
rlm@1 11 // ColorControl window
rlm@1 12
rlm@1 13 class ColorControl : public CWnd
rlm@1 14 {
rlm@1 15 // Construction
rlm@1 16 public:
rlm@1 17 ColorControl();
rlm@1 18
rlm@1 19 // Attributes
rlm@1 20 public:
rlm@1 21 // Operations
rlm@1 22 static bool isRegistered;
rlm@1 23
rlm@1 24 // Operations
rlm@1 25 public:
rlm@1 26 // Overrides
rlm@1 27 // ClassWizard generated virtual function overrides
rlm@1 28 //{{AFX_VIRTUAL(ColorControl)
rlm@1 29 //}}AFX_VIRTUAL
rlm@1 30
rlm@1 31 // Implementation
rlm@1 32 public:
rlm@1 33 void setColor(u16 c);
rlm@1 34 u16 color;
rlm@1 35 virtual ~ColorControl();
rlm@1 36
rlm@1 37 // Generated message map functions
rlm@1 38 protected:
rlm@1 39 //{{AFX_MSG(ColorControl)
rlm@1 40 afx_msg void OnPaint();
rlm@1 41 afx_msg BOOL OnEraseBkgnd(CDC*pDC);
rlm@1 42 //}}AFX_MSG
rlm@1 43 DECLARE_MESSAGE_MAP()
rlm@1 44 private:
rlm@1 45 void registerClass();
rlm@1 46 };
rlm@1 47
rlm@1 48 /////////////////////////////////////////////////////////////////////////////
rlm@1 49
rlm@1 50 //{{AFX_INSERT_LOCATION}}
rlm@1 51 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
rlm@1 52
rlm@1 53 #endif // !defined(AFX_COLORCONTROL_H__747E1E47_DDFA_4D67_B337_A473F2BACB86__INCLUDED_)