2018-08-24 19:41:58 +08:00
|
|
|
#ifndef DockAreaTabBarH
|
|
|
|
#define DockAreaTabBarH
|
2018-10-12 21:29:41 +08:00
|
|
|
/*******************************************************************************
|
|
|
|
** 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/>.
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
|
2018-08-24 19:41:58 +08:00
|
|
|
//============================================================================
|
|
|
|
/// \file DockAreaTabBar.h
|
|
|
|
/// \author Uwe Kindler
|
|
|
|
/// \date 24.08.2018
|
|
|
|
/// \brief Declaration of CDockAreaTabBar class
|
|
|
|
//============================================================================
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
// INCLUDES
|
|
|
|
//============================================================================
|
|
|
|
#include <QScrollArea>
|
|
|
|
|
|
|
|
namespace ads
|
|
|
|
{
|
|
|
|
class CDockAreaWidget;
|
2018-10-10 21:15:59 +08:00
|
|
|
class CDockWidgetTab;
|
2018-08-24 19:41:58 +08:00
|
|
|
struct DockAreaTabBarPrivate;
|
2018-11-04 03:51:02 +08:00
|
|
|
class CDockAreaTitleBar;
|
|
|
|
class CFloatingDockContainer;
|
2018-08-24 19:41:58 +08:00
|
|
|
|
|
|
|
/**
|
2018-08-24 20:04:21 +08:00
|
|
|
* Custom tabbar implementation for tab area that is shown on top of a
|
|
|
|
* dock area widget.
|
|
|
|
* The tabbar displays the tab widgets of the contained dock widgets.
|
2018-08-24 19:41:58 +08:00
|
|
|
*/
|
|
|
|
class CDockAreaTabBar : public QScrollArea
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private:
|
|
|
|
DockAreaTabBarPrivate* d; ///< private data (pimpl)
|
|
|
|
friend class DockAreaTabBarPrivate;
|
2018-11-04 03:51:02 +08:00
|
|
|
friend class CDockAreaTitleBar;
|
2018-08-24 19:41:58 +08:00
|
|
|
|
2018-10-10 21:15:59 +08:00
|
|
|
private slots:
|
|
|
|
void onTabClicked();
|
2018-11-09 17:07:56 +08:00
|
|
|
void onTabCloseRequested();
|
|
|
|
void onCloseOtherTabsRequested();
|
2018-10-12 15:17:14 +08:00
|
|
|
void onTabWidgetMoved(const QPoint& GlobalPos);
|
2018-10-10 21:15:59 +08:00
|
|
|
|
2018-08-24 19:41:58 +08:00
|
|
|
protected:
|
|
|
|
virtual void wheelEvent(QWheelEvent* Event) override;
|
|
|
|
/**
|
|
|
|
* Stores mouse position to detect dragging
|
|
|
|
*/
|
|
|
|
virtual void mousePressEvent(QMouseEvent* ev) override;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stores mouse position to detect dragging
|
|
|
|
*/
|
|
|
|
virtual void mouseReleaseEvent(QMouseEvent* ev) override;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Starts floating the complete docking area including all dock widgets,
|
|
|
|
* if it is not the last dock area in a floating widget
|
|
|
|
*/
|
|
|
|
virtual void mouseMoveEvent(QMouseEvent* ev) override;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Double clicking the title bar also starts floating of the complete area
|
|
|
|
*/
|
|
|
|
virtual void mouseDoubleClickEvent(QMouseEvent *event) override;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Starts floating
|
|
|
|
*/
|
|
|
|
void startFloating(const QPoint& Pos);
|
|
|
|
|
2018-11-04 03:51:02 +08:00
|
|
|
/**
|
|
|
|
* Makes the dock area loating
|
|
|
|
*/
|
|
|
|
CFloatingDockContainer* makeAreaFloating(const QPoint& Pos);
|
|
|
|
|
|
|
|
|
2018-08-24 19:41:58 +08:00
|
|
|
public:
|
2018-10-12 17:51:35 +08:00
|
|
|
using Super = QScrollArea;
|
2018-08-24 19:41:58 +08:00
|
|
|
/**
|
|
|
|
* Default Constructor
|
|
|
|
*/
|
|
|
|
CDockAreaTabBar(CDockAreaWidget* parent);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Virtual Destructor
|
|
|
|
*/
|
|
|
|
virtual ~CDockAreaTabBar();
|
2018-10-10 21:15:59 +08:00
|
|
|
|
|
|
|
/**
|
2018-10-11 15:21:01 +08:00
|
|
|
* Inserts the given dock widget tab at the given position.
|
|
|
|
* Inserting a new tab at an index less than or equal to the current index
|
|
|
|
* will increment the current index, but keep the current tab.
|
2018-10-10 21:15:59 +08:00
|
|
|
*/
|
|
|
|
void insertTab(int Index, CDockWidgetTab* Tab);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes the given DockWidgetTab from the tabbar
|
|
|
|
*/
|
|
|
|
void removeTab(CDockWidgetTab* Tab);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the number of tabs in this tabbar
|
|
|
|
*/
|
|
|
|
int count() const;
|
|
|
|
|
|
|
|
/**
|
2018-11-04 04:48:35 +08:00
|
|
|
* Returns the current index or -1 if no tab is selected
|
2018-10-10 21:15:59 +08:00
|
|
|
*/
|
|
|
|
int currentIndex() const;
|
|
|
|
|
|
|
|
/**
|
2018-11-04 04:48:35 +08:00
|
|
|
* Returns the current tab or a nullptr if no tab is selected.
|
2018-10-10 21:15:59 +08:00
|
|
|
*/
|
|
|
|
CDockWidgetTab* currentTab() const;
|
|
|
|
|
2018-10-12 15:17:14 +08:00
|
|
|
/**
|
|
|
|
* Returns the tab with the given index
|
|
|
|
*/
|
|
|
|
CDockWidgetTab* tab(int Index) const;
|
|
|
|
|
2018-10-12 17:51:35 +08:00
|
|
|
/**
|
|
|
|
* Filters the tab widget events
|
|
|
|
*/
|
|
|
|
virtual bool eventFilter(QObject *watched, QEvent *event) override;
|
|
|
|
|
2018-10-12 19:37:37 +08:00
|
|
|
/**
|
|
|
|
* This function returns true if the tab is open, that means if it is
|
|
|
|
* visible to the user. If the function returns false, the tab is
|
|
|
|
* closed
|
|
|
|
*/
|
|
|
|
bool isTabOpen(int Index) const;
|
|
|
|
|
2018-10-10 21:15:59 +08:00
|
|
|
public slots:
|
|
|
|
/**
|
|
|
|
* This property sets the index of the tab bar's visible tab
|
|
|
|
*/
|
|
|
|
void setCurrentIndex(int Index);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function will close the tab given in Index param.
|
|
|
|
* Closing a tab means, the tab will be hidden, it will not be removed
|
|
|
|
*/
|
2018-10-11 14:54:32 +08:00
|
|
|
void closeTab(int Index);
|
2018-10-10 21:15:59 +08:00
|
|
|
|
|
|
|
signals:
|
|
|
|
/**
|
|
|
|
* This signal is emitted when the tab bar's current tab is about to be changed. The new
|
|
|
|
* current has the given index, or -1 if there isn't a new one.
|
|
|
|
*/
|
|
|
|
void currentChanging(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
|
|
|
|
*/
|
|
|
|
void currentChanged(int Index);
|
|
|
|
|
|
|
|
/**
|
2018-10-15 21:09:59 +08:00
|
|
|
* This signal is emitted when user clicks on a tab
|
2018-10-10 21:15:59 +08:00
|
|
|
*/
|
|
|
|
void tabBarClicked(int index);
|
2018-10-11 14:54:32 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This signal is emitted when the close button on a tab is clicked.
|
|
|
|
* The index is the index that should be closed.
|
|
|
|
*/
|
|
|
|
void tabCloseRequested(int index);
|
2018-10-12 15:17:14 +08:00
|
|
|
|
2018-10-12 19:37:37 +08:00
|
|
|
/**
|
|
|
|
* This signal is emitted if a tab has been closed
|
|
|
|
*/
|
|
|
|
void tabClosed(int index);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This signal is emitted if a tab has been opened.
|
|
|
|
* A tab is opened if it has been made visible
|
|
|
|
*/
|
|
|
|
void tabOpened(int index);
|
|
|
|
|
2018-10-12 15:17:14 +08:00
|
|
|
/**
|
|
|
|
* This signal is emitted when the tab has moved the tab at index position
|
|
|
|
* from to index position to.
|
|
|
|
*/
|
|
|
|
void tabMoved(int from, int to);
|
2018-10-12 19:37:37 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This signal is emitted, just before the tab with the given index is
|
|
|
|
* removed
|
|
|
|
*/
|
|
|
|
void removingTab(int index);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This signal is emitted if a tab has been inserted
|
|
|
|
*/
|
|
|
|
void tabInserted(int index);
|
2018-08-24 19:41:58 +08:00
|
|
|
}; // class CDockAreaTabBar
|
|
|
|
} // namespace ads
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#endif // DockAreaTabBarH
|
|
|
|
|