Subclass.cpp
上传用户:czfddz
上传日期:2013-03-20
资源大小:1517k
文件大小:7k
源码类别:

酒店行业

开发平台:

C/C++

  1. ////////////////////////////////////////////////////////////////
  2. // VCKBASE -- August 2000
  3. // Compiles with Visual C++ 6.0, runs on Windows 98 and probably NT too.
  4. //
  5. // CSubclassWnd is a generic class for hooking another window's messages.
  6. #include "StdAfx.h"
  7. #include "Subclass.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. //////////////////
  14. // The message hook map is derived from CMapPtrToPtr, which associates
  15. // a pointer with another pointer. It maps an HWND to a CSubclassWnd, like
  16. // the way MFC's internal maps map HWND's to CWnd's. The first CSubclassWnd
  17. // attached to a window is stored in the map; all other CSubclassWnd's for that
  18. // window are then chained via CSubclassWnd::m_pNext.
  19. //
  20. class CSubclassWndMap : private CMapPtrToPtr {
  21. public:
  22. CSubclassWndMap();
  23. ~CSubclassWndMap();
  24. static CSubclassWndMap& GetHookMap();
  25. void Add(HWND hwnd, CSubclassWnd* pSubclassWnd);
  26. void Remove(CSubclassWnd* pSubclassWnd);
  27. void RemoveAll(HWND hwnd);
  28. CSubclassWnd* Lookup(HWND hwnd);
  29. };
  30. // This trick is used so the hook map isn't
  31. // instantiated until someone actually requests it.
  32. //
  33. #define theHookMap (CSubclassWndMap::GetHookMap())
  34. IMPLEMENT_DYNAMIC(CSubclassWnd, CWnd);
  35. CSubclassWnd::CSubclassWnd()
  36. {
  37. m_pNext = NULL;
  38. m_pOldWndProc = NULL;
  39. m_hWnd  = NULL;
  40. }
  41. CSubclassWnd::~CSubclassWnd()
  42. {
  43. if (m_hWnd) 
  44. HookWindow((HWND)NULL); // unhook window
  45. }
  46. //////////////////
  47. // Hook a window.
  48. // This installs a new window proc that directs messages to the CSubclassWnd.
  49. // pWnd=NULL to remove.
  50. //
  51. BOOL CSubclassWnd::HookWindow(HWND hwnd)
  52. {
  53. ASSERT_VALID(this);
  54. if (hwnd) {
  55. // Hook the window
  56. ASSERT(m_hWnd==NULL);
  57. ASSERT(::IsWindow(hwnd));
  58. theHookMap.Add(hwnd, this); // Add to map of hooks
  59. } else if (m_hWnd) {
  60. // Unhook the window
  61. theHookMap.Remove(this); // Remove from map
  62. m_pOldWndProc = NULL;
  63. }
  64. m_hWnd = hwnd;
  65. return TRUE;
  66. }
  67. //////////////////
  68. // Window proc-like virtual function which specific CSubclassWnds will
  69. // override to do stuff. Default passes the message to the next hook; 
  70. // the last hook passes the message to the original window.
  71. // You MUST call this at the end of your WindowProc if you want the real
  72. // window to get the message. This is just like CWnd::WindowProc, except that
  73. // a CSubclassWnd is not a window.
  74. //
  75. LRESULT CSubclassWnd::WindowProc(UINT msg, WPARAM wp, LPARAM lp)
  76. {
  77. // ASSERT_VALID(this);  // removed for speed
  78. ASSERT(m_pOldWndProc);
  79. return m_pNext ? m_pNext->WindowProc(msg, wp, lp) :
  80. ::CallWindowProc(m_pOldWndProc, m_hWnd, msg, wp, lp);//AfxMessageBox("hello");
  81. }
  82. //////////////////
  83. // Like calling base class WindowProc, but with no args, so individual
  84. // message handlers can do the default thing. Like CWnd::Default
  85. //
  86. LRESULT CSubclassWnd::Default()
  87. {
  88. // MFC stores current MSG in thread state
  89. MSG& curMsg = AfxGetThreadState()->m_lastSentMsg;
  90. // Note: must explicitly call CSubclassWnd::WindowProc to avoid infinte
  91. // recursion on virtual function
  92. return CSubclassWnd::WindowProc(curMsg.message, curMsg.wParam, curMsg.lParam);
  93. }
  94. #ifdef _DEBUG
  95. void CSubclassWnd::AssertValid() const
  96. {
  97. CObject::AssertValid();
  98. ASSERT(m_hWnd==NULL || ::IsWindow(m_hWnd));
  99. if (m_hWnd) {
  100. for (CSubclassWnd* p = theHookMap.Lookup(m_hWnd); p; p=p->m_pNext) {
  101. if (p==this)
  102. break;
  103. }
  104. ASSERT(p); // should have found it!
  105. }
  106. }
  107. void CSubclassWnd::Dump(CDumpContext& dc) const
  108. {
  109. CObject::Dump(dc);
  110. }
  111. #endif
  112. //////////////////
  113. // Subclassed window proc for message hooks. Replaces AfxWndProc (or whatever
  114. // else was there before.)
  115. //
  116. LRESULT CALLBACK
  117. HookWndProc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp)
  118. {
  119. #ifdef _USRDLL
  120. // If this is a DLL, need to set up MFC state
  121. AFX_MANAGE_STATE(AfxGetStaticModuleState());
  122. #endif
  123. // Set up MFC message state just in case anyone wants it
  124. // This is just like AfxCallWindowProc, but we can't use that because
  125. // a CSubclassWnd is not a CWnd.
  126. //
  127. MSG& curMsg = AfxGetThreadState()->m_lastSentMsg;
  128. MSG  oldMsg = curMsg;   // save for nesting
  129. curMsg.hwnd = hwnd;
  130. curMsg.message = msg;
  131. curMsg.wParam  = wp;
  132. curMsg.lParam  = lp;
  133. // Get hook object for this window. Get from hook map
  134. CSubclassWnd* pSubclassWnd = theHookMap.Lookup(hwnd);
  135. ASSERT(pSubclassWnd);
  136. LRESULT lr;
  137. if (msg==WM_NCDESTROY) {
  138. // Window is being destroyed: unhook all hooks (for this window)
  139. // and pass msg to orginal window proc
  140. //
  141. WNDPROC wndproc = pSubclassWnd->m_pOldWndProc;
  142. theHookMap.RemoveAll(hwnd);
  143. lr = ::CallWindowProc(wndproc, hwnd, msg, wp, lp);
  144. } else {
  145. // pass to msg hook
  146. lr = pSubclassWnd->WindowProc(msg, wp, lp);
  147. }
  148. curMsg = oldMsg; // pop state
  149. // AfxMessageBox("正在初始化!");
  150. return lr;
  151. }
  152. ////////////////////////////////////////////////////////////////
  153. // CSubclassWndMap implementation
  154. //
  155. CSubclassWndMap::CSubclassWndMap()
  156. {
  157. }
  158. CSubclassWndMap::~CSubclassWndMap()
  159. {
  160. // This assert bombs when posting WM_QUIT, so I've deleted it.
  161. // ASSERT(IsEmpty()); // all hooks should be removed!
  162. }
  163. //////////////////
  164. // Get the one and only global hook map
  165. // 
  166. CSubclassWndMap& CSubclassWndMap::GetHookMap()
  167. {
  168. // By creating theMap here, C++ doesn't instantiate it until/unless
  169. // it's ever used! This is a good trick to use in C++, to
  170. // instantiate/initialize a static object the first time it's used.
  171. //
  172. static CSubclassWndMap theMap;
  173. return theMap;
  174. }
  175. /////////////////
  176. // Add hook to map; i.e., associate hook with window
  177. //
  178. void CSubclassWndMap::Add(HWND hwnd, CSubclassWnd* pSubclassWnd)
  179. {
  180. ASSERT(hwnd && ::IsWindow(hwnd));
  181. // Add to front of list
  182. pSubclassWnd->m_pNext = Lookup(hwnd);
  183. SetAt(hwnd, pSubclassWnd);
  184. // AfxMessageBox("Hello");
  185. if (pSubclassWnd->m_pNext==NULL) {
  186. // If this is the first hook added, subclass the window
  187. pSubclassWnd->m_pOldWndProc = 
  188. (WNDPROC)SetWindowLong(hwnd, GWL_WNDPROC, (DWORD)HookWndProc);
  189. } else {
  190. // just copy wndproc from next hook
  191. pSubclassWnd->m_pOldWndProc=pSubclassWnd->m_pNext->m_pOldWndProc;
  192. }
  193. ASSERT(pSubclassWnd->m_pOldWndProc);
  194. }
  195. //////////////////
  196. // Remove hook from map
  197. //
  198. void CSubclassWndMap::Remove(CSubclassWnd* pUnHook)
  199. {
  200. HWND hwnd = pUnHook->m_hWnd;
  201. ASSERT(hwnd && ::IsWindow(hwnd));
  202. CSubclassWnd* pHook = Lookup(hwnd);
  203. ASSERT(pHook);
  204. if (pHook==pUnHook) {
  205. // hook to remove is the one in the hash table: replace w/next
  206. if (pHook->m_pNext)
  207. SetAt(hwnd, pHook->m_pNext);
  208. else {
  209. // This is the last hook for this window: restore wnd proc
  210. RemoveKey(hwnd);
  211. SetWindowLong(hwnd, GWL_WNDPROC, (DWORD)pHook->m_pOldWndProc);
  212. }
  213. } else {
  214. // Hook to remove is in the middle: just remove from linked list
  215. while (pHook->m_pNext!=pUnHook)
  216. pHook = pHook->m_pNext;
  217. ASSERT(pHook && pHook->m_pNext==pUnHook);
  218. pHook->m_pNext = pUnHook->m_pNext;
  219. }
  220. }
  221. //////////////////
  222. // Remove all the hooks for a window
  223. //
  224. void CSubclassWndMap::RemoveAll(HWND hwnd)
  225. {
  226. CSubclassWnd* pSubclassWnd;
  227. while ((pSubclassWnd = Lookup(hwnd))!=NULL)
  228. pSubclassWnd->HookWindow((HWND)NULL); // (unhook)
  229. }
  230. /////////////////
  231. // Find first hook associate with window
  232. //
  233. CSubclassWnd* CSubclassWndMap::Lookup(HWND hwnd)
  234. {
  235. CSubclassWnd* pFound = NULL;
  236. if (!CMapPtrToPtr::Lookup(hwnd, (void*&)pFound))
  237. return NULL;
  238. ASSERT_KINDOF(CSubclassWnd, pFound);
  239. return pFound;
  240. }