You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
152 lines
5.1 KiB
C
152 lines
5.1 KiB
C
2 years ago
|
// XTPDockBar.h : interface for the CXTPDockBar class.
|
||
|
//
|
||
|
// This file is a part of the XTREME COMMANDBARS MFC class library.
|
||
|
// (c)1998-2012 Codejock Software, All Rights Reserved.
|
||
|
//
|
||
|
// THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
|
||
|
// RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
|
||
|
// CONSENT OF CODEJOCK SOFTWARE.
|
||
|
//
|
||
|
// THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
|
||
|
// IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
|
||
|
// YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
|
||
|
// SINGLE COMPUTER.
|
||
|
//
|
||
|
// CONTACT INFORMATION:
|
||
|
// support@codejock.com
|
||
|
// http://www.codejock.com
|
||
|
//
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
//{{AFX_CODEJOCK_PRIVATE
|
||
|
#if !defined(__XTPDOCKBAR_H__)
|
||
|
#define __XTPDOCKBAR_H__
|
||
|
//}}AFX_CODEJOCK_PRIVATE
|
||
|
|
||
|
#if _MSC_VER >= 1000
|
||
|
#pragma once
|
||
|
#endif // _MSC_VER >= 1000
|
||
|
|
||
|
|
||
|
class CXTPToolBar;
|
||
|
class CXTPCommandBars;
|
||
|
|
||
|
//===========================================================================
|
||
|
// Summary:
|
||
|
// CXTPDockBar is a CWnd derived class. It is used internally by
|
||
|
// CXTPCommandBars.
|
||
|
//===========================================================================
|
||
|
class _XTP_EXT_CLASS CXTPDockBar : public CWnd
|
||
|
{
|
||
|
private:
|
||
|
DECLARE_DYNCREATE(CXTPDockBar)
|
||
|
|
||
|
public:
|
||
|
//-----------------------------------------------------------------------
|
||
|
// Summary:
|
||
|
// Array of CXTPToolBar objects.
|
||
|
//-----------------------------------------------------------------------
|
||
|
typedef CArray<CXTPToolBar*, CXTPToolBar*> CToolBarArray;
|
||
|
|
||
|
private:
|
||
|
class CDockInfoArray;
|
||
|
struct DOCK_INFO;
|
||
|
|
||
|
public:
|
||
|
//-----------------------------------------------------------------------
|
||
|
// Summary:
|
||
|
// Constructs a CXTPDockBar object
|
||
|
//-----------------------------------------------------------------------
|
||
|
CXTPDockBar();
|
||
|
|
||
|
//-----------------------------------------------------------------------
|
||
|
// Summary:
|
||
|
// Destroys a CXTPDockBar object, handles cleanup and deallocation.
|
||
|
//-----------------------------------------------------------------------
|
||
|
virtual ~CXTPDockBar();
|
||
|
|
||
|
public:
|
||
|
//-----------------------------------------------------------------------
|
||
|
// Summary:
|
||
|
// Retrieves the dockbar position.
|
||
|
// Returns:
|
||
|
// Position of the dock bar.
|
||
|
//-----------------------------------------------------------------------
|
||
|
XTPBarPosition GetPosition() const;
|
||
|
|
||
|
//-----------------------------------------------------------------------
|
||
|
// Summary:
|
||
|
// Checks if dockbar is vertical.
|
||
|
// Returns:
|
||
|
// TRUE if docked vertically; otherwise returns FALSE
|
||
|
//-----------------------------------------------------------------------
|
||
|
BOOL IsVerticalPosition() const;
|
||
|
|
||
|
CXTPCommandBars* GetCommandBars() const;
|
||
|
|
||
|
protected:
|
||
|
//{{AFX_CODEJOCK_PRIVATE
|
||
|
// Implementation
|
||
|
|
||
|
BOOL RemoveCommandBar(CXTPToolBar* pBar, int nPosExclude = -1);
|
||
|
BOOL Create(CWnd* pParentWnd, DWORD dwStyle, UINT nID);
|
||
|
BOOL PreCreateWindow(CREATESTRUCT& cs);
|
||
|
BOOL DockCommandBar(CXTPToolBar* bBar);
|
||
|
void DockCommandBar(CXTPToolBar* pBar, LPCRECT lpRect);
|
||
|
|
||
|
CXTPToolBar* GetDockedCommandBar(int nPos) const;
|
||
|
int GetDockedCount() const;
|
||
|
int GetDockedVisibleCount() const;
|
||
|
int FindBar(CXTPToolBar* pBar, int nPosExclude = -1);
|
||
|
int Insert(CXTPToolBar* pBarIns, CRect rect, CPoint ptMid);
|
||
|
|
||
|
void GetVisibleToolbars(int nPos, CToolBarArray& arrBars);
|
||
|
void AdjustStretchBars();
|
||
|
|
||
|
int AdjustRow(CToolBarArray&, CPoint pt, int nLength, BOOL bHorz, AFX_SIZEPARENTPARAMS* lpLayout);
|
||
|
int _AdjustRow(CToolBarArray&, CPoint pt, int nLength, BOOL bHorz, AFX_SIZEPARENTPARAMS* lpLayout, int& nRemove);
|
||
|
int _GetMode(BOOL bHorz, CXTPToolBar* pBar);
|
||
|
|
||
|
CSize CalcFixedLayout(BOOL bStretch, BOOL bHorz, AFX_SIZEPARENTPARAMS* lpLayout);
|
||
|
CSize CalcDynamicLayout(int, DWORD nMode, AFX_SIZEPARENTPARAMS* lpLayout);
|
||
|
//}}AFX_CODEJOCK_PRIVATE
|
||
|
|
||
|
protected:
|
||
|
|
||
|
//{{AFX_CODEJOCK_PRIVATE
|
||
|
//{{AFX_MSG(CXTPDockBar)
|
||
|
DECLARE_MESSAGE_MAP()
|
||
|
|
||
|
afx_msg void OnPaint();
|
||
|
afx_msg LRESULT OnPrintClient(WPARAM wParam, LPARAM);
|
||
|
afx_msg BOOL OnEraseBkgnd(CDC* pDC);
|
||
|
afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
|
||
|
afx_msg LRESULT OnSizeParent(WPARAM, LPARAM lParam);
|
||
|
afx_msg LRESULT OnNcHitTest(CPoint /*point*/);
|
||
|
afx_msg void OnSize(UINT nType, int cx, int cy);
|
||
|
//}}AFX_MSG
|
||
|
//}}AFX_CODEJOCK_PRIVATE
|
||
|
|
||
|
private:
|
||
|
BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
|
||
|
|
||
|
protected:
|
||
|
DWORD m_dwStyle; // Style of the control.
|
||
|
CToolBarArray m_arrBars; // Toolbar list
|
||
|
CXTPCommandBars* m_pCommandBars; // Parent CommandBars object
|
||
|
|
||
|
friend class CXTPToolBar;
|
||
|
friend class CXTPCommandBars;
|
||
|
friend class CXTPReBar;
|
||
|
|
||
|
};
|
||
|
|
||
|
AFX_INLINE BOOL CXTPDockBar::Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext) {
|
||
|
return CWnd::Create(lpszClassName, lpszWindowName, dwStyle, rect, pParentWnd, nID, pContext);
|
||
|
}
|
||
|
AFX_INLINE CXTPCommandBars* CXTPDockBar::GetCommandBars() const {
|
||
|
return m_pCommandBars;
|
||
|
}
|
||
|
|
||
|
#endif // #if !defined(__XTPDOCKBAR_H__)
|