12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #if !defined(AFX_SKINTABCTRL_H__A21C8BDE_2C6B_4CDF_83A5_2F82275BCDED__INCLUDED_)
- #define AFX_SKINTABCTRL_H__A21C8BDE_2C6B_4CDF_83A5_2F82275BCDED__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // SkinTabCtrl.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // CSkinTabCtrl window
- #include "EnBitmap.h"
- class CSkinTabCtrl : public CStatic
- {
- // Construction
- public:
- CSkinTabCtrl();
- CPtrArray m_ImageArray;
- // Attributes
- public:
- // Operations
- public:
- // Overrides
- protected:
- // Implementation
- public:
- void Clear();
- void AddTab(LPCTSTR szImagePath);
- void LoadBitmap(LPCTSTR szImagePath);
- void ClearMemory();
- virtual ~CSkinTabCtrl();
- int m_tabCurrent;
- CEnBitmap m_bmpTabBk;
- // Generated message map functions
- protected:
- //{{AFX_MSG(CSkinTabCtrl)
- afx_msg BOOL OnEraseBkgnd(CDC* pDC);
- afx_msg void OnPaint();
- afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
- afx_msg void OnMouseMove(UINT nFlags, CPoint point);
- afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_SKINTABCTRL_H__A21C8BDE_2C6B_4CDF_83A5_2F82275BCDED__INCLUDED_)
|