2017-02-25 05:44:02 +08:00
|
|
|
#ifndef ads_globalsH
|
|
|
|
#define ads_globalsH
|
2017-02-27 21:15:20 +08:00
|
|
|
/*******************************************************************************
|
|
|
|
** QtAdcancedDockingSystem
|
|
|
|
** Copyright (C) 2017 Uwe Kindler
|
|
|
|
**
|
|
|
|
** This program is free software: you can redistribute it and/or modify
|
|
|
|
** it under the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
|
|
|
** This program 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 General Public License for more details.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU General Public License
|
|
|
|
** along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
|
2017-02-25 05:44:02 +08:00
|
|
|
//============================================================================
|
|
|
|
/// \file ads_globals.h
|
|
|
|
/// \author Uwe Kindler
|
|
|
|
/// \date 24.02.2017
|
2017-02-27 21:15:20 +08:00
|
|
|
/// \brief Declaration of
|
2017-02-25 05:44:02 +08:00
|
|
|
//============================================================================
|
|
|
|
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
// INCLUDES
|
|
|
|
//============================================================================
|
2017-02-27 01:13:56 +08:00
|
|
|
#include <QPair>
|
|
|
|
|
2017-02-25 05:44:02 +08:00
|
|
|
class QSplitter;
|
|
|
|
|
|
|
|
namespace ads
|
|
|
|
{
|
|
|
|
enum DockWidgetArea
|
|
|
|
{
|
|
|
|
NoDockWidgetArea = 0x00,
|
|
|
|
LeftDockWidgetArea = 0x01,
|
|
|
|
RightDockWidgetArea = 0x02,
|
|
|
|
TopDockWidgetArea = 0x04,
|
|
|
|
BottomDockWidgetArea = 0x08,
|
|
|
|
CenterDockWidgetArea = 0x10,
|
|
|
|
|
2017-02-27 01:13:56 +08:00
|
|
|
OuterDockAreas = TopDockWidgetArea | LeftDockWidgetArea | RightDockWidgetArea | BottomDockWidgetArea,
|
|
|
|
AllDockAreas = OuterDockAreas | CenterDockWidgetArea
|
2017-02-25 05:44:02 +08:00
|
|
|
};
|
|
|
|
Q_DECLARE_FLAGS(DockWidgetAreas, DockWidgetArea)
|
|
|
|
|
|
|
|
namespace internal
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Helper function to create new splitter widgets
|
|
|
|
*/
|
2017-02-27 01:13:56 +08:00
|
|
|
QSplitter* newSplitter(Qt::Orientation orientation, QWidget* parent = 0);
|
|
|
|
|
2017-03-01 05:41:34 +08:00
|
|
|
/**
|
|
|
|
* Convenience class for QPair to provide better naming than first and
|
|
|
|
* second
|
|
|
|
*/
|
|
|
|
class CDockInsertParam : public QPair<Qt::Orientation, bool>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
using QPair::QPair;
|
|
|
|
Qt::Orientation orientation() const {return this->first;}
|
|
|
|
bool append() const {return this->second;}
|
|
|
|
int insertOffset() const {return append() ? 1 : 0;}
|
|
|
|
};
|
|
|
|
|
2017-02-27 01:13:56 +08:00
|
|
|
/**
|
|
|
|
* Returns the insertion parameters for the given dock area
|
|
|
|
*/
|
2017-03-01 05:41:34 +08:00
|
|
|
CDockInsertParam dockAreaInsertParameters(DockWidgetArea Area);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the parent splitter of the given widget or 0 if the widget is not
|
|
|
|
* child of any splitter
|
|
|
|
*/
|
|
|
|
QSplitter* findParentSplitter(QWidget* w);
|
2017-02-25 05:44:02 +08:00
|
|
|
} // namespace internal
|
|
|
|
} // namespace ads
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#endif // ads_globalsH
|