Subclass.h
上传用户:zhoushen
上传日期:2022-06-15
资源大小:84k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. ////////////////////////////////////////////////////////////////
  2. // CSubclassWnd Copyright 1996 Microsoft Systems Journal. 
  3. // If this code works, it was written by Paul DiLascia.
  4. // If not, I don't know who wrote it.
  5. //
  6. #ifndef _MSGHOOK_H
  7. #define _MSGHOOK_H
  8. //////////////////
  9. // Generic class to hook messages on behalf of a CWnd.
  10. // Once hooked, all messages go to CSubclassWnd::WindowProc before going
  11. // to the window. Specific subclasses can trap messages and do something.
  12. //
  13. // To use:
  14. //
  15. // * Derive a class from CSubclassWnd.
  16. //
  17. // * Override CSubclassWnd::WindowProc to handle messages. Make sure you call
  18. //   CSubclassWnd::WindowProc if you don't handle the message, or your window will
  19. //   never get messages. If you write seperate message handlers, you can call
  20. //   Default() to pass the message to the window.
  21. //
  22. // * Instantiate your derived class somewhere and call HookWindow(pWnd)
  23. //   to hook your window, AFTER it has been created.
  24. //  To unhook before the window is destroyed, call HookWindow(NULL).
  25. //
  26. class CSubclassWnd : public CObject 
  27. {
  28. protected:
  29. DECLARE_DYNAMIC(CSubclassWnd);
  30. CWnd* m_pWndHooked; // the window hooked
  31. WNDPROC m_pOldWndProc; // ..and original window proc
  32. CSubclassWnd* m_pNext; // next in chain of hooks for this window
  33. // Override this to handle messages in specific handlers
  34. virtual LRESULT WindowProc(UINT msg, WPARAM wp, LPARAM lp);
  35. LRESULT Default(); // call this at the end of handler fns
  36. public:
  37. CSubclassWnd();
  38. ~CSubclassWnd();
  39. // Hook a window. Hook(NULL) to unhook (automatic on WM_NCDESTROY)
  40. BOOL HookWindow(CWnd* pRealWnd);
  41. BOOL IsHooked() { return m_pWndHooked!=NULL; }
  42. friend LRESULT CALLBACK HookWndProc(HWND, UINT, WPARAM, LPARAM);
  43. friend class CSubclassWndMap;
  44. };
  45. #endif