mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-16 05:35:43 +08:00
83 lines
2.8 KiB
C++
83 lines
2.8 KiB
C++
/*******************************************************************************
|
|
** Qt Advanced Docking System
|
|
** Copyright (C) 2017 Uwe Kindler
|
|
**
|
|
** This library is free software; you can redistribute it and/or
|
|
** modify it under the terms of the GNU Lesser General Public
|
|
** License as published by the Free Software Foundation; either
|
|
** version 2.1 of the License, or (at your option) any later version.
|
|
**
|
|
** This library is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
** Lesser General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU Lesser General Public
|
|
** License along with this library; If not, see <http://www.gnu.org/licenses/>.
|
|
******************************************************************************/
|
|
|
|
|
|
//============================================================================
|
|
/// \file ads_globals.cpp
|
|
/// \author Uwe Kindler
|
|
/// \date 24.02.2017
|
|
/// \brief Implementation of
|
|
//============================================================================
|
|
|
|
|
|
//============================================================================
|
|
// INCLUDES
|
|
//============================================================================
|
|
#include <QVariant>
|
|
|
|
#include "DockSplitter.h"
|
|
#include "ads_globals.h"
|
|
|
|
|
|
namespace ads
|
|
{
|
|
|
|
namespace internal
|
|
{
|
|
//============================================================================
|
|
QSplitter* newSplitter(Qt::Orientation orientation, QWidget* parent)
|
|
{
|
|
QSplitter* s = new CDockSplitter(orientation, parent);
|
|
s->setProperty("ads-splitter", QVariant(true));
|
|
s->setChildrenCollapsible(false);
|
|
s->setOpaqueResize(false);
|
|
return s;
|
|
}
|
|
|
|
//============================================================================
|
|
void replaceSplitterWidget(QSplitter* Splitter, QWidget* From, QWidget* To)
|
|
{
|
|
int index = Splitter->indexOf(From);
|
|
From->setParent(0);
|
|
Splitter->insertWidget(index, To);
|
|
}
|
|
|
|
//============================================================================
|
|
CDockInsertParam dockAreaInsertParameters(DockWidgetArea Area)
|
|
{
|
|
switch (Area)
|
|
{
|
|
case TopDockWidgetArea: return QPair<Qt::Orientation, bool>(Qt::Vertical, false);
|
|
case RightDockWidgetArea: return QPair<Qt::Orientation, bool>(Qt::Horizontal, true);
|
|
case CenterDockWidgetArea:
|
|
case BottomDockWidgetArea: return QPair<Qt::Orientation, bool>(Qt::Vertical, true);
|
|
case LeftDockWidgetArea: return QPair<Qt::Orientation, bool>(Qt::Horizontal, false);
|
|
default: QPair<Qt::Orientation, bool>(Qt::Vertical, false);
|
|
} // switch (Area)
|
|
|
|
return CDockInsertParam(Qt::Vertical, false);
|
|
}
|
|
|
|
} // namespace internal
|
|
} // namespace ads
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
// EOF ads_globals.cpp
|