1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #if !defined(AFX_SKINVIEW_H__5020CD39_3473_430A_B6A5_7C46CA8E3834__INCLUDED_)
- #define AFX_SKINVIEW_H__5020CD39_3473_430A_B6A5_7C46CA8E3834__INCLUDED_
- #include "EnBitmap.h" // Added by ClassView
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // SkinView.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // CSkinView window
- #include "EnBitmap.h"
- class CSkinView : public CStatic
- {
- // Construction
- public:
- CSkinView();
- // Attributes
- public:
- // Operations
- public:
- // Overrides
- // Implementation
- public:
- void SetBorderColor(COLORREF cr){m_ViewBorder=cr;}
- COLORREF m_ViewBackGround;
- COLORREF m_ViewBorder;
- void SetBKColor(COLORREF cr){m_ViewBackGround=cr;}
- CEnBitmap m_bmpBK;
- virtual ~CSkinView();
- BOOL LoadBKImage(LPCTSTR szImagePath);
- // Generated message map functions
- protected:
- //{{AFX_MSG(CSkinView)
- afx_msg void OnPaint();
- afx_msg BOOL OnEraseBkgnd(CDC* pDC);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- #endif // !defined(AFX_SKINVIEW_H__5020CD39_3473_430A_B6A5_7C46CA8E3834__INCLUDED_)
|