XTPReBar.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:9k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // XTPReBar.h : header file
  2. //
  3. // This file is a part of the XTREME COMMANDBARS MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. //{{AFX_CODEJOCK_PRIVATE
  21. #if !defined(__XTPREBAR_H__)
  22. #define __XTPREBAR_H__
  23. //}}AFX_CODEJOCK_PRIVATE
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif // _MSC_VER > 1000
  27. class CXTPToolBar;
  28. //{{AFX_CODEJOCK_PRIVATE
  29. #if _MSC_VER < 1200 // MFC 6.0
  30. #ifndef AFX_IDW_REBAR
  31. #define AFX_IDW_REBAR                   0xE804
  32. #endif
  33. class _XTP_EXT_CLASS CXTPReBarBase : public CControlBar
  34. {
  35. DECLARE_DYNAMIC(CXTPReBarBase)
  36. // Construction
  37. public:
  38. CXTPReBarBase();
  39. BOOL Create(CWnd* pParentWnd, DWORD dwCtrlStyle = RBS_BANDBORDERS,
  40. DWORD dwStyle = WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CLIPCHILDREN | CBRS_TOP,
  41. UINT nID = AFX_IDW_REBAR);
  42. // Attributes
  43. public:
  44. int m_iComCtlVersion;
  45. // Operations
  46. public:
  47. BOOL AddBar(CWnd* pBar, LPCTSTR pszText = NULL, CBitmap* pbmp = NULL,
  48. DWORD dwStyle = RBBS_GRIPPERALWAYS | RBBS_FIXEDBMP);
  49. BOOL AddBar(CWnd* pBar, COLORREF clrFore, COLORREF clrBack,
  50. LPCTSTR pszText = NULL, DWORD dwStyle = RBBS_GRIPPERALWAYS);
  51. // Implementation
  52. virtual void OnUpdateCmdUI(CFrameWnd* pTarget, BOOL bDisableIfNoHndler);
  53. virtual INT_PTR OnToolHitTest(CPoint point, TOOLINFO* pTI) const;
  54. virtual CSize CalcFixedLayout(BOOL bStretch, BOOL bHorz);
  55. virtual CSize CalcDynamicLayout(int nLength, DWORD nMode);
  56. #ifdef _DEBUG
  57. void EnableDocking(DWORD dwDockStyle);
  58. #endif
  59. protected:
  60. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  61. BOOL _AddBar(CWnd* pBar, REBARBANDINFO* pRBBI);
  62. //{{AFX_MSG(CReBar)
  63. afx_msg BOOL OnNcCreate(LPCREATESTRUCT);
  64. afx_msg void OnHeightChange(NMHDR* pNMHDR, LRESULT* pResult);
  65. afx_msg void OnNcPaint();
  66. afx_msg void OnNcCalcSize(BOOL, NCCALCSIZE_PARAMS*);
  67. afx_msg LRESULT OnShowBand(WPARAM wParam, LPARAM lParam);
  68. afx_msg void OnRecalcParent();
  69. //}}AFX_MSG
  70. DECLARE_MESSAGE_MAP()
  71. };
  72. #else
  73. #define CXTPReBarBase CReBar
  74. #endif
  75. //}}AFX_CODEJOCK_PRIVATE
  76. //===========================================================================
  77. // Summary:
  78. //     The CXTPReBar object extends the standard MFC CReBar class to
  79. //     provide extended functionality such as saving and restoring of
  80. //     band layouts.
  81. //===========================================================================
  82. class _XTP_EXT_CLASS CXTPReBar : public CXTPReBarBase
  83. {
  84. DECLARE_DYNAMIC(CXTPReBar)
  85. public:
  86. //-------------------------------------------------------------------------
  87. // Summary:
  88. //     Constructs a CXTPReBar object.
  89. //-------------------------------------------------------------------------
  90. CXTPReBar();
  91. //-------------------------------------------------------------------------
  92. // Summary:
  93. //     Destroys a CXTPReBar object, handles cleanup and deallocation.
  94. //-------------------------------------------------------------------------
  95. virtual ~CXTPReBar();
  96. public:
  97. //-----------------------------------------------------------------------
  98. // Summary:
  99. //     Call this member to add a band to the rebar. The specified Toolbar
  100. //     will be inserted into the band.
  101. // Parameters:
  102. //     pToolBar - Pointer to the Toolbar object that will be added to
  103. //                rebar band.
  104. //     dwStyle  - Contains styles that can be applied to the rebar.
  105. //                <p>RBBS_BREAK          - The band is on a new line.
  106. //                <p>RBBS_CHILDEDGE      - The band has an edge at the top and bottom of the child window.
  107. //                <p>RBBS_FIXEDBMP       - The background bitmap does not move when the band is resized.
  108. //                <p>RBBS_FIXEDSIZE      - The band cannot be sized. With this style, the sizing grip is not displayed on the band.
  109. //                <p>RBBS_GRIPPERALWAYS  - The band will always have sizing grip, even if it is the only band in the rebar.
  110. //                <p>RBBS_HIDDEN         - The band will not be visible.
  111. //                <p>RBBS_NOVERT         - The band is not displayed when the rebar control uses the CCS_VERT style.
  112. // Remarks:
  113. //     The id of the band that contains the toolbar is assigned the same id
  114. //     as the toolbar.
  115. // Returns:
  116. //     TRUE is the bar was added successfully, FALSE if the bar wasn't added.
  117. //-----------------------------------------------------------------------
  118. BOOL AddToolBar(CXTPToolBar* pToolBar, DWORD dwStyle = RBBS_GRIPPERALWAYS);
  119. //-----------------------------------------------------------------------
  120. // Summary:
  121. //     Call this member to remove a toolbar within the rebar.  This will
  122. //     also remove the band that contained the toolbar.
  123. // Parameters:
  124. //     pToolBar - Pointer to the toolbar that will be removed.
  125. //-----------------------------------------------------------------------
  126. void DeleteToolBar(CXTPToolBar* pToolBar);
  127. //-----------------------------------------------------------------------
  128. // Summary:
  129. //     Call this member to locate the band that contains a toolbar.
  130. // Parameters:
  131. //     pToolBar - Pointer to the toolbar you want to find.
  132. // Returns: -1 if the toolbar was not found on a band in the rebar.  If found
  133. //          the Id of the band that contains the toolbar is returned.
  134. //-----------------------------------------------------------------------
  135. int FindBand(CXTPToolBar* pToolBar);
  136. //-----------------------------------------------------------------------
  137. // Summary:
  138. //     Call this member to retrieve a pointer to a toolbar that is contained
  139. //     in the band with the specified id.
  140. // Parameters:
  141. //     nBand - Id of a band in the rebar.
  142. // Returns:
  143. //     A pointer to the toolbar contained in the specified band.
  144. //-----------------------------------------------------------------------
  145. CXTPToolBar* GetToolBar(int nBand);
  146. //-----------------------------------------------------------------------
  147. // Summary:
  148. //     Call this function to retrieve state information from the
  149. //     registry.
  150. // Parameters:
  151. //     lpszProfileName - Points to a null-teminated string that specifies
  152. //     the name of a key in the Windows registry where state
  153. //     information is stored.
  154. //-----------------------------------------------------------------------
  155. void LoadState(LPCTSTR lpszProfileName);
  156. //-----------------------------------------------------------------------
  157. // Summary:
  158. //     Call this function to save state information from the
  159. //     registry.
  160. // Parameters:
  161. //     lpszProfileName - Points to a null-teminated string that specifies
  162. //     the name of a key in the Windows registry where the state
  163. //     information should be stored.
  164. //-----------------------------------------------------------------------
  165. void SaveState(LPCTSTR lpszProfileName);
  166. //-----------------------------------------------------------------------
  167. // Summary:
  168. //     This member function implements the behavior of the Win32 message
  169. //     RB_SETBANDINFO, as described in the Platform SDK.
  170. // Parameters:
  171. //     uBand - Zero-based index of the band to receive the new settings.
  172. //             prbbi - Pointer to a REBARBANDINFO structure that defines the band to be inserted.
  173. //             You must set the 'cbSize' member of this structure to sizeof(REBARBANDINFO)
  174. //             before sending this message.
  175. // Returns:
  176. //     Nonzero if successful, otherwise returns zero.
  177. // Example:
  178. // <code>
  179. // int nCount = m_wndReBar.GetReBarCtrl().GetBandCount();
  180. // CString strText = "Band #:";
  181. //
  182. // int i;
  183. // for (i = 0; i<nCount; i++)
  184. // {
  185. //     LPREBARBANDINFO prbbi = (LPREBARBANDINFO)alloca(sizeof(REBARBANDINFO));
  186. //     prbbi->cbSize = sizeof(REBARBANDINFO);
  187. //
  188. //     CString strText;
  189. //     strText.Format("Band #: %d", i);
  190. //
  191. //     LPTSTR lpszText = strText.GetBuffer(strText.GetLength());
  192. //     prbbi->lpText = lpszText;
  193. //     prbbi->cch = strlen(lpszText) + 1;
  194. //     prbbi->fMask = RBBIM_TEXT;
  195. //
  196. //     m_wndReBar.SetBandInfo(i, prbbi);
  197. //
  198. //     strText.ReleaseBuffer();
  199. // }
  200. // </code>
  201. //-----------------------------------------------------------------------
  202. BOOL SetBandInfo(UINT uBand, REBARBANDINFO* prbbi);
  203. protected:
  204. //{{AFX_CODEJOCK_PRIVATE
  205. DECLARE_MESSAGE_MAP()
  206. //{{AFX_MSG(CXTPReBar)
  207. void OnChildSize(NMHDR* pNotifyStruct, LRESULT* result);
  208. void OnPaint();
  209. BOOL OnEraseBkgnd(CDC* pDC);
  210. virtual CSize CalcFixedLayout(BOOL bStretch, BOOL bHorz);
  211. //}}AFX_MSG
  212. //}}AFX_CODEJOCK_PRIVATE
  213. private:
  214. static const LPCTSTR m_lpszStateInfoEntry;
  215. static const LPCTSTR m_lpszStateInfoFormat;
  216. };
  217. AFX_INLINE BOOL CXTPReBar::SetBandInfo(UINT uBand, REBARBANDINFO* prbbi) {
  218. return (BOOL)DefWindowProc(RB_SETBANDINFO, uBand, (LPARAM)prbbi);
  219. }
  220. /////////////////////////////////////////////////////////////////////////////
  221. #endif // !defined(__XTPREBAR_H__)