| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- /************************************************************************
- * 程序名: 精仿QQ主界面
- * 制作人: 李克平, 2011年04月11日
- * 版本号: 1.0
- ************************************************************************/
- // SkinWin.h: interface for the CSkinWin class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_SKINWIN_H__F010D322_E34F_4F9E_87E8_E76E9611942D__INCLUDED_)
- #define AFX_SKINWIN_H__F010D322_E34F_4F9E_87E8_E76E9611942D__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- #include "Subclass.h"
- class CSkinWin : public CSubclassWnd
- {
- //public:
- // int m_TitleHeight;
- // int m_BorderLeftWidth;
- // int m_BorderRightWidth;
- // int m_BorderBottomHeight;
- public:
- BOOL InstallSkin( CWnd * wnd );
- CSkinWin();
- CSkinWin( const char * skinfile )
- {
- CSkinWin();
- }
- virtual ~CSkinWin();
- //skinfile: full path name to skin inifile
- //vitrual functions
- virtual LRESULT WindowProc(UINT msg, WPARAM wp, LPARAM lp);
- UINT OnNcHitTest(CPoint point);
- };
- #endif // !defined(AFX_SKINWIN_H__F010D322_E34F_4F9E_87E8_E76E9611942D__INCLUDED_)
|