12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /************************************************************************/
- /* Copyright (C), 2016-2020, [IT], 保留所有权利;
- /* 模 块 名:;
- /* 描 述:;
- /*
- /* 版 本:[V];
- /* 作 者:[IT];
- /* 日 期:[8/19/2016];
- /*
- /*
- /* 注 意:;
- /*
- /* 修改记录:[IT];
- /* 修改日期:;
- /* 修改版本:;
- /* 修改内容:;
- /************************************************************************/
- #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_)
|