2017-03-23 17:23:53 +08:00
|
|
|
#ifndef DockAreaWidgetH
|
|
|
|
#define DockAreaWidgetH
|
|
|
|
/*******************************************************************************
|
2017-06-10 04:04:02 +08:00
|
|
|
** Qt Advanced Docking System
|
2017-03-23 17:23:53 +08:00
|
|
|
** Copyright (C) 2017 Uwe Kindler
|
2017-06-10 04:04:02 +08:00
|
|
|
**
|
|
|
|
** 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,
|
2017-03-23 17:23:53 +08:00
|
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2017-06-10 04:04:02 +08:00
|
|
|
** 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/>.
|
2017-03-23 17:23:53 +08:00
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
/// \file DockAreaWidget.h
|
|
|
|
/// \author Uwe Kindler
|
|
|
|
/// \date 24.02.2017
|
|
|
|
/// \brief Declaration of CDockAreaWidget class
|
|
|
|
//============================================================================
|
|
|
|
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
// INCLUDES
|
|
|
|
//============================================================================
|
|
|
|
#include <QFrame>
|
|
|
|
|
2017-12-30 01:18:16 +08:00
|
|
|
class QXmlStreamWriter;
|
|
|
|
|
2017-03-23 17:23:53 +08:00
|
|
|
namespace ads
|
|
|
|
{
|
|
|
|
struct DockAreaWidgetPrivate;
|
|
|
|
class CDockManager;
|
|
|
|
class CDockContainerWidget;
|
|
|
|
class CDockWidget;
|
|
|
|
|
2017-03-24 17:18:25 +08:00
|
|
|
|
2017-03-23 17:23:53 +08:00
|
|
|
/**
|
|
|
|
* DockAreaWidget manages multiple instances of DckWidgets.
|
|
|
|
* It displays a title tab, which is clickable and will switch to
|
|
|
|
* the contents associated to the title when clicked.
|
|
|
|
*/
|
|
|
|
class CDockAreaWidget : public QFrame
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private:
|
|
|
|
DockAreaWidgetPrivate* d; ///< private data (pimpl)
|
|
|
|
friend class DockAreaWidgetPrivate;
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void onDockWidgetTitleClicked();
|
|
|
|
void onTabsMenuActionTriggered(QAction* Action);
|
|
|
|
void onCloseButtonClicked();
|
|
|
|
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Default Constructor
|
|
|
|
*/
|
|
|
|
CDockAreaWidget(CDockManager* DockManager, CDockContainerWidget* parent);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Virtual Destructor
|
|
|
|
*/
|
|
|
|
virtual ~CDockAreaWidget();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the dock manager object this dock area belongs to
|
|
|
|
*/
|
|
|
|
CDockManager* dockManager() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the dock container widget this dock area widget belongs to or 0
|
|
|
|
* if there is no
|
|
|
|
*/
|
|
|
|
CDockContainerWidget* dockContainer() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Inserts a dock widget into dock area.
|
|
|
|
* All dockwidgets in the dock area tabified in a stacked layout with tabs.
|
|
|
|
* The index indicates the index of the new dockwidget in the tabbar and
|
|
|
|
* in the stacked layout. If the Activate parameter is true, the new
|
|
|
|
* DockWidget will be the active one in the stacked layout
|
|
|
|
*/
|
|
|
|
void insertDockWidget(int index, CDockWidget* DockWidget, bool Activate = true);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a new dock widget to dock area.
|
|
|
|
* All dockwidgets in the dock area tabified in a stacked layout with tabs
|
|
|
|
*/
|
|
|
|
void addDockWidget(CDockWidget* DockWidget);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes the given dock widget from the dock area
|
|
|
|
*/
|
|
|
|
void removeDockWidget(CDockWidget* DockWidget);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the rectangle of the title area
|
|
|
|
*/
|
|
|
|
QRect titleAreaGeometry() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the rectangle of the content
|
|
|
|
*/
|
|
|
|
QRect contentAreaGeometry() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the tab index of the given DockWidget
|
|
|
|
*/
|
|
|
|
int tabIndex(CDockWidget* DockWidget);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the index of contents of the title widget that is located at
|
|
|
|
* mouse position pos
|
|
|
|
*/
|
|
|
|
int indexOfContentByTitlePos(const QPoint& pos, QWidget* exclude = nullptr) const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a list of all dock widgets in this dock area.
|
|
|
|
* This list contains open and closed dock widgets.
|
|
|
|
*/
|
|
|
|
QList<CDockWidget*> dockWidgets() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a list of dock widgets that are not closed
|
|
|
|
*/
|
|
|
|
QList<CDockWidget*> openedDockWidgets() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the number of dock widgets in this area
|
|
|
|
*/
|
|
|
|
int count() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a dock widget by its index
|
|
|
|
*/
|
|
|
|
CDockWidget* dockWidget(int Index) const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reorder the index position of DockWidget at fromIndx to toIndex.
|
|
|
|
*/
|
|
|
|
void reorderDockWidget(int fromIndex, int toIndex);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the index of the current active dock widget
|
|
|
|
*/
|
|
|
|
int currentIndex() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the current active dock widget
|
|
|
|
*/
|
|
|
|
CDockWidget* currentDockWidget() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shows the tab with tghe given dock widget
|
|
|
|
*/
|
|
|
|
void setCurrentDockWidget(CDockWidget* DockWidget);
|
|
|
|
|
2017-03-23 22:57:15 +08:00
|
|
|
/**
|
|
|
|
* Saves the state into the given stream
|
|
|
|
*/
|
2017-12-30 01:18:16 +08:00
|
|
|
void saveState(QXmlStreamWriter& Stream) const;
|
2017-03-23 22:57:15 +08:00
|
|
|
|
2017-03-23 17:23:53 +08:00
|
|
|
public slots:
|
|
|
|
/**
|
|
|
|
* This sets the index position of the current tab page.
|
|
|
|
*/
|
|
|
|
void setCurrentIndex(int index);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the dock area layout and components visibility
|
|
|
|
*/
|
|
|
|
void updateDockArea();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
/**
|
|
|
|
* This signal is emitted when user clicks on a tab at an index.
|
|
|
|
*/
|
|
|
|
void tabBarClicked(int index);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This signal is emitted when the tab bar's current tab changes. The new
|
|
|
|
* current has the given index, or -1 if there isn't a new one
|
|
|
|
* @param index
|
|
|
|
*/
|
|
|
|
void currentChanged(int index);
|
|
|
|
}; // class DockAreaWidget
|
|
|
|
}
|
|
|
|
// namespace ads
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#endif // DockAreaWidgetH
|