码迷,mamicode.com
首页 > Windows程序 > 详细

CWnd中PreCreateWindow、PreSubclassWindow、SubclassWindow的区别

时间:2016-04-18 06:23:33      阅读:328      评论:0      收藏:0      [点我收藏+]

标签:

http://blog.csdn.net/swimmer2000/archive/2007/10/30/1856213.aspx

MFC(VC6.0)的CWnd及其子类中,有如下三个函数:

技术分享    // From VS Install PathVC98MFCIncludeAFXWIN.H
技术分享    class CWnd : public CCmdTarget
技术分享    {
技术分享        ...
技术分享    public:
技术分享        ...
技术分享        virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
技术分享        virtual void PreSubclassWindow();
技术分享        BOOL SubclassWindow(HWND hWnd);
技术分享        ...
技术分享    };
技术分享    
技术分享

    
让人很不容易区分,不知道它们究竟干了些什么,在什么情况下要改写哪个函数?

想知道改写函数?让我先告诉你哪个不能改写,那就是SubclassWindow。Scott Meyers的杰作<<Effective C++>>的第36条是这样的:Differentiate between inheritance of interface and inheritance of implementation. 看了后你马上就知道,父类中的非虚拟函数是设计成不被子类改写的。根据有无virtual关键字,我们在排除了SubclassWindow后,也就知道PreCreateWindow和PreSubClassWindow是被设计成可改写的。接着的问题便是该在什么时候该写了。要知道什么时候该写,必须知道函数是在什么时候被调用,还有执行函数的想要达到的目的。我们先看看对这三个函数,MSDN给的解释:
    
    PreCreateWindow:
    
        Called by the framework before the creation of the Windows window 
        attached to this CWnd object.
        (译:在窗口被创建并attach到this指针所指的CWnd对象之前,被framework调用)
        
    PreSubclassWindow:
    
        This member function is called by the framework to allow other necessary 
        subclassing to occur before the window is subclassed.
        (译:在window被subclassed之前被framework调用,用来允许其它必要的
            subclassing发生)
            
虽然我已有译文,但还是让我对CWnd的attach和窗口的subclass作简单的解释吧!要理解attach,我们必须要知道一个C++的CWnd对象和窗口(window)的区别:window就是实在的窗口,而CWnd就是MFC用类对window所进行C++封装。attach,就是把窗口附加到CWnd对象上操作。附加(attach)完成后,CWnd对象才和窗口发生了联系。窗口的subclass是指修改窗口过程的操作,而不是面向对象中的派生子类。

好了,PreCreateWindow由framework在窗口创建前被调用,函数名也说明了这一点,Pre应该是previous的缩写,PreSubclassWindow由framework在subclass窗口前调用。 这段话说了等于没说,你可能还是不知道,什么时候该改写哪个函数。罗罗嗦嗦的作者,还是用代码说话吧!源码之前,了无秘密(候捷语)。我们就看看MFC中的这三个函数都是这样实现的吧! 

技术分享    // From VS Install PathVC98MFCSRCWINCORE.CPP
技术分享    BOOL CWnd::CreateEx(DWORD dwExStyle, LPCTSTR lpszClassName,
技术分享 LPCTSTR lpszWindowName, DWORD dwStyle,
技术分享 int x, int y, int nWidth, int nHeight,
技术分享 HWND hWndParent, HMENU nIDorHMenu, LPVOID lpParam)
技术分享    {
技术分享     // allow modification of several common create parameters
技术分享     CREATESTRUCT cs;
技术分享     cs.dwExStyle = dwExStyle;
技术分享     cs.lpszClass = lpszClassName;
技术分享     cs.lpszName = lpszWindowName;
技术分享     cs.style = dwStyle;
技术分享     cs.x = x;
技术分享     cs.y = y;
技术分享     cs.cx = nWidth;
技术分享     cs.cy = nHeight;
技术分享     cs.hwndParent = hWndParent;
技术分享     cs.hMenu = nIDorHMenu;
技术分享     cs.hInstance = AfxGetInstanceHandle();
技术分享     cs.lpCreateParams = lpParam;
技术分享    
技术分享     if (!PreCreateWindow(cs))
技术分享     {
技术分享      PostNcDestroy();
技术分享      return FALSE;
技术分享     }
技术分享    
技术分享     AfxHookWindowCreate(this);
技术分享     HWND hWnd = ::CreateWindowEx(cs.dwExStyle, cs.lpszClass,
技术分享       cs.lpszName, cs.style, cs.x, cs.y, cs.cx, cs.cy,
技术分享       cs.hwndParent, cs.hMenu, cs.hInstance, cs.lpCreateParams);
技术分享    
技术分享        ...
技术分享     return TRUE;
技术分享    }
技术分享    
技术分享    // for child windows
技术分享    BOOL CWnd::PreCreateWindow(CREATESTRUCT& cs)
技术分享    {
技术分享     if (cs.lpszClass == NULL)
技术分享     {
技术分享      // make sure the default window class is registered
技术分享      VERIFY(AfxDeferRegisterClass(AFX_WND_REG));
技术分享    
技术分享      // no WNDCLASS provided - use child window default
技术分享      ASSERT(cs.style & WS_CHILD);
技术分享      cs.lpszClass = _afxWnd;
技术分享     }
技术分享     return TRUE;
技术分享    }
技术分享
技术分享

CWnd::CreateEx先设定cs(CREATESTRUCT),在调用真正的窗口创建函数::CreateWindowEx之前,调用了CWnd::PreCreateWindow函数,并把参数cs以引用的方式传递了进去。而CWnd的PreCreateWindow函数也只是给cs.lpszClass赋值而已。毕竟,窗口创建函数CWnd::CreateEx的诸多参数中,并没有哪个指定了所要创建窗口的窗口类,而这又是不可缺少的(请参考<<windows程序设计>>第三章)。所以当你需要修改窗口的大小、风格、窗口所属的窗口类等cs成员变量时,要改写PreCreateWindow函数。 

技术分享    // From VS Install PathVC98MFCSRCWINCORE.CPP
技术分享    BOOL CWnd::SubclassWindow(HWND hWnd)
技术分享    {
技术分享     if (!Attach(hWnd))
技术分享      return FALSE;
技术分享    
技术分享     // allow any other subclassing to occur
技术分享     PreSubclassWindow();
技术分享    
技术分享     // now hook into the AFX WndProc
技术分享     WNDPROC* lplpfn = GetSuperWndProcAddr();
技术分享     WNDPROC oldWndProc = (WNDPROC)::SetWindowLong(hWnd, GWL_WNDPROC,
技术分享      (DWORD)AfxGetAfxWndProc());
技术分享     ASSERT(oldWndProc != (WNDPROC)AfxGetAfxWndProc());
技术分享    
技术分享     if (*lplpfn == NULL)
技术分享      *lplpfn = oldWndProc;   // the first control of that type created
技术分享    #ifdef _DEBUG
技术分享     else if (*lplpfn != oldWndProc)
技术分享     {
技术分享      ...
技术分享      ::SetWindowLong(hWnd, GWL_WNDPROC, (DWORD)oldWndProc);
技术分享     }
技术分享    #endif
技术分享    
技术分享     return TRUE;
技术分享    }
技术分享
技术分享    void CWnd::PreSubclassWindow()
技术分享    {
技术分享     // no default processing
技术分享    }
技术分享
技术分享

CWnd::SubclassWindow先调用函数Attach(hWnd)让CWnd对象和hWnd所指的窗口发生关联。接着在用::SetWindowLong修改窗口过程(subclass)前,调用了PreSubclassWindow。CWnd::PreSubclassWindow则是什么都没有做。

在CWnd的实现中,除了CWnd::SubclassWindow会调用PreSubclassWindow外,还有一处。上面所列函数CreateEx的代码,其中调用了一个AfxHookWindowCreate函数,见下面代码: 

技术分享    // From VS Install PathVC98MFCSRCWINCORE.CPP
技术分享    BOOL CWnd::CreateEx(...)
技术分享    {
技术分享     // allow modification of several common create parameters
技术分享        ...
技术分享    
技术分享     if (!PreCreateWindow(cs))
技术分享     {
技术分享      PostNcDestroy();
技术分享      return FALSE;
技术分享     }
技术分享    
技术分享     AfxHookWindowCreate(this); 
技术分享     HWND hWnd = ::CreateWindowEx(cs.dwExStyle, cs.lpszClass,
技术分享       cs.lpszName, cs.style, cs.x, cs.y, cs.cx, cs.cy,
技术分享       cs.hwndParent, cs.hMenu, cs.hInstance, cs.lpCreateParams);
技术分享    
技术分享        ...
技术分享     return TRUE;
技术分享    }
技术分享

    
接着察看AfxHookWindowCreate的代码:

技术分享    // From VS Install PathVC98MFCSRCWINCORE.CPP
技术分享    void AFXAPI AfxHookWindowCreate(CWnd* pWnd)
技术分享    {
技术分享     ...
技术分享    
技术分享     if (pThreadState->m_hHookOldCbtFilter == NULL)
技术分享     {
技术分享      pThreadState->m_hHookOldCbtFilter = ::SetWindowsHookEx(WH_CBT,
技术分享       _AfxCbtFilterHook, NULL, ::GetCurrentThreadId());
技术分享      if (pThreadState->m_hHookOldCbtFilter == NULL)
技术分享       AfxThrowMemoryException();
技术分享     }
技术分享     ...
技术分享    }
技术分享

其主要作用的::SetWindowsHookEx函数用于设置一个挂钩函数(Hook函数)_AfxCbtFilterHook,每当Windows产生一个窗口时(还有许多其它类似,请参考<<深入浅出MFC>>第9章,563页),就会调用你设定的Hook函数。

这样设定完成后,回到CWnd::CreateEx函数中,执行::CreateWindowEx进行窗口创建,窗口一产生,就会调用上面设定的Hook函数_AfxCbtFilterHook。而正是在_AfxCbtFilterHook中对函数PreSubclassWindow进行了第二次调用。见如下代码:

技术分享    // From VS Install PathVC98MFCSRCWINCORE.CPP
技术分享    /////////////////////////////////////////////////////////////////////////////
技术分享    // Window creation hooks
技术分享    
技术分享    LRESULT CALLBACK
技术分享    _AfxCbtFilterHook(int code, WPARAM wParam, LPARAM lParam)
技术分享    {
技术分享            ...       
技术分享                 ...
技术分享        // connect the HWND to pWndInit...
技术分享      pWndInit->Attach(hWnd);
技术分享        // allow other subclassing to occur first
技术分享        pWndInit->PreSubclassWindow();
技术分享                ...
技术分享        {
技术分享                // subclass the window with standard AfxWndProc
技术分享                oldWndProc = (WNDPROC)SetWindowLong(hWnd, GWL_WNDPROC, (DWORD)afxWndProc);
技术分享            ASSERT(oldWndProc != NULL);
技术分享                *pOldWndProc = oldWndProc;
技术分享        }
技术分享           ...
技术分享    }
技术分享


也在调用函数SetWindowLong进行窗口subclass前调用了PreSubclassWindow.

http://blog.csdn.net/xiexievv/article/details/6233423

CWnd中PreCreateWindow、PreSubclassWindow、SubclassWindow的区别

标签:

原文地址:http://www.cnblogs.com/findumars/p/5402956.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!