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.
147 lines
3.4 KiB
C++
147 lines
3.4 KiB
C++
// XTPDockingPaneBase.cpp : implementation of the CXTPDockingPaneBase class.
|
|
//
|
|
// This file is a part of the XTREME DOCKINGPANE 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
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "Common/XTPSystemHelpers.h"
|
|
|
|
#include "TabManager/XTPTabManager.h"
|
|
|
|
#include "XTPDockingPaneDefines.h"
|
|
#include "XTPDockingPaneBase.h"
|
|
#include "XTPDockingPaneBaseContainer.h"
|
|
#include "XTPDockingPaneManager.h"
|
|
#include "XTPDockingPane.h"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// CXTPDockingPaneBaseContainer
|
|
|
|
CXTPDockingPaneBaseContainer::CXTPDockingPaneBaseContainer(XTPDockingPaneType type, CXTPDockingPaneLayout* pLayout)
|
|
: CXTPDockingPaneBase(type, pLayout)
|
|
{
|
|
}
|
|
|
|
CXTPDockingPaneBaseContainer::~CXTPDockingPaneBaseContainer()
|
|
{
|
|
}
|
|
|
|
POSITION CXTPDockingPaneBaseContainer::ContainPane(CXTPDockingPaneBase* pPane) const
|
|
{
|
|
if (pPane == (CXTPDockingPaneBase*)this)
|
|
return (POSITION)TRUE;
|
|
|
|
POSITION pos = m_lstPanes.GetHeadPosition();
|
|
while (pos)
|
|
{
|
|
POSITION posContain = pos;
|
|
|
|
if (m_lstPanes.GetNext(pos)->ContainPane(pPane))
|
|
return posContain;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
void CXTPDockingPaneBaseContainer::FindPane(XTPDockingPaneType type, CXTPDockingPaneBaseList* pList) const
|
|
{
|
|
if (GetType() == type)
|
|
{
|
|
if (IsEmpty())
|
|
{
|
|
return;
|
|
}
|
|
|
|
pList->AddTail((CXTPDockingPaneBase*)this);
|
|
}
|
|
|
|
POSITION pos = m_lstPanes.GetHeadPosition();
|
|
while (pos)
|
|
{
|
|
CXTPDockingPaneBase* pPane = m_lstPanes.GetNext(pos);
|
|
pPane->FindPane(type, pList);
|
|
}
|
|
}
|
|
|
|
BOOL CXTPDockingPaneBaseContainer::IsEmpty() const
|
|
{
|
|
POSITION pos = m_lstPanes.GetHeadPosition();
|
|
while (pos)
|
|
{
|
|
CXTPDockingPaneBase* pPane = m_lstPanes.GetNext(pos);
|
|
|
|
if (!pPane->IsEmpty())
|
|
{
|
|
return FALSE;
|
|
}
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
POSITION CXTPDockingPaneBaseContainer::GetHeadPosition() const
|
|
{
|
|
return m_lstPanes.GetHeadPosition();
|
|
}
|
|
|
|
CXTPDockingPaneBase* CXTPDockingPaneBaseContainer::GetNext(POSITION& pos) const
|
|
{
|
|
return m_lstPanes.GetNext(pos);
|
|
}
|
|
|
|
CXTPDockingPaneBase* CXTPDockingPaneBaseContainer::GetFirstPane() const
|
|
{
|
|
if (m_lstPanes.IsEmpty())
|
|
return NULL;
|
|
|
|
return m_lstPanes.GetHead();
|
|
}
|
|
|
|
CXTPDockingPaneBase* CXTPDockingPaneBaseContainer::GetLastPane() const
|
|
{
|
|
if (m_lstPanes.IsEmpty())
|
|
return NULL;
|
|
|
|
return m_lstPanes.GetTail();
|
|
}
|
|
|
|
BOOL CXTPDockingPaneBaseContainer::OnAction(XTPDockingPaneAction action)
|
|
{
|
|
CXTPDockingPaneManager* pManager = GetDockingPaneManager();
|
|
CXTPDockingPaneBaseList lstChilds;
|
|
|
|
FindPane(xtpPaneTypeDockingPane, &lstChilds);
|
|
POSITION pos = lstChilds.GetHeadPosition();
|
|
|
|
while (pos)
|
|
{
|
|
|
|
CXTPDockingPane* pPane = static_cast<CXTPDockingPane*>(lstChilds.GetNext(pos));
|
|
|
|
if (pManager->NotifyAction(action, pPane, this))
|
|
return TRUE;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|