| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- #if !defined(AFX_WNDEX_H__E14EA019_CE71_469A_AEB4_3D3CB271C531__INCLUDED_)
- #define AFX_WNDEX_H__E14EA019_CE71_469A_AEB4_3D3CB271C531__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // WndEx.h : header file
- //
- #include "DittoWindow.h"
- #include "GdipButton.h"
- #include "SnapWindow.h"
- #define SWAP_MIN_MAX 1
- #define FORCE_MIN 2
- #define FORCE_MAX 3
- class CWndEx : public CWnd
- {
- // Construction
- public:
- CWndEx();
- // Attributes
- public:
- // Operations
- public:
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CWndEx)
- public:
- virtual BOOL Create(const CRect& crStart, CWnd* pParentWnd);
- virtual BOOL PreTranslateMessage(MSG* pMsg);
- //}}AFX_VIRTUAL
- public:
- void InvalidateNc();
- void SetCaptionOn(int nPos, bool bOnstartup, int captionSize, int captionFontSize);
- void MinMaxWindow(long lOption = SWAP_MIN_MAX);
- void GetWindowRectEx(LPRECT lpRect);
- bool SetCaptionColorActive(BOOL bPersistant, BOOL ConnectedToClipboard);
- void SetAutoMaxDelay(long lDelay) { m_lDelayMaxSeconds = lDelay; }
- bool GetMinimized() { return m_DittoWindow.m_bMinimized; }
- void SetCustomWindowTitle(CString title);
- void SetToolTipText(CString text);
- int GetCaptionSize() { return m_DittoWindow.m_captionBorderWidth; }
- CDittoWindow m_DittoWindow;
- protected:
-
- bool m_bMaxSetTimer;
- int m_lDelayMaxSeconds;
- CToolTipCtrl m_toolTip;
- SnapWindow m_snap;
- // Implementation
- public:
- virtual ~CWndEx();
- // Generated message map functions
- protected:
- //{{AFX_MSG(CWndEx)
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- afx_msg void OnNcPaint();
- afx_msg void OnNcCalcSize(BOOL bCalcValidRects, NCCALCSIZE_PARAMS FAR* lpncsp);
- afx_msg HITTEST_RET OnNcHitTest(CPoint point);
- afx_msg void OnNcLButtonDown(UINT nHitTest, CPoint point);
- afx_msg void OnNcMouseMove(UINT nHitTest, CPoint point);
- afx_msg void OnNcLButtonUp(UINT nHitTest, CPoint point);
- afx_msg BOOL OnEraseBkgnd(CDC* pDC);
- afx_msg void OnTimer(UINT_PTR nIDEvent);
- afx_msg void OnWindowPosChanging(WINDOWPOS* lpwndpos);
- afx_msg void OnInitMenuPopup(CMenu *pPopupMenu, UINT nIndex,BOOL bSysMenu);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- public:
- afx_msg void OnSize(UINT nType, int cx, int cy);
- afx_msg void OnMoving(UINT fwSide, LPRECT pRect);
- afx_msg void OnEnterSizeMove();
- };
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_WNDEX_H__E14EA019_CE71_469A_AEB4_3D3CB271C531__INCLUDED_)
|