www.pudn.com > tapi3.zip > XSTATIC.H


// xstatic.h : header file for CXstatic class 
// (c) Dialogic corp 1995, 1996 
// 
 
#define RED 		RGB(255, 0, 0) 
#define GREEN 		RGB(0, 255, 0) 
#define BLUE		RGB(0, 0, 255) 
#define BLACK		RGB(0, 0, 0) 
#define YELLOW 		RGB(255, 255, 0) 
#define PURPLE		RGB(150, 0, 150) 
#define BROWN		RGB(148, 62, 52) 
#define ORANGE		RGB(255, 100, 10) 
///////////////////////////////////////////////////////////////////////////// 
// CXstatic window 
 
class CXstatic : public CStatic 
{ 
// Construction 
public: 
	CXstatic(); 
 
// Attributes 
public: 
COLORREF m_Colorref; 
 
// Operations 
public: 
 
// Overrides 
	// ClassWizard generated virtual function overrides 
	//{{AFX_VIRTUAL(CXstatic) 
	//}}AFX_VIRTUAL 
 
// Implementation 
public: 
	virtual ~CXstatic(); 
 
	// Generated message map functions 
protected: 
	//{{AFX_MSG(CXstatic) 
	afx_msg void OnPaint(); 
	//}}AFX_MSG 
 
	DECLARE_MESSAGE_MAP() 
}; 
 
/////////////////////////////////////////////////////////////////////////////