www.pudn.com > commspy.rar > util_pop.h


 
// util_pop.h 
 
#ifndef _INC_UTIL_POP_ 
#define _INC_UTIL_POP_ 
 
 
 
class GPopupWindow : public CWnd 
{ 
   DECLARE_MESSAGE_MAP() 
 
public: 
   GPopupWindow(); 
    
protected: 
   afx_msg int OnCreate(LPCREATESTRUCT lpcs); 
   afx_msg void OnLButtonDown(UINT nFlags, CPoint pt); 
   afx_msg void OnCaptureChanged(CWnd *pWnd); 
 
   virtual BOOL OnLButtonDownCheck(UINT nFlags, CPoint pt); 
   virtual void PostNcDestroy(); 
 
public: 
   virtual ~GPopupWindow(); 
}; 
 
 
#endif