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>
|
2018-12-20 23:25:30 +08:00
|
|
|
#include "ads_globals.h"
|
2018-08-24 19:41:58 +08:00
|
|
|
|
|
|
|
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;
|
2019-11-26 21:40:56 +08:00
|
|
|
class IFloatingWidget;
|
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.
|
2019-08-26 13:58:56 +08:00
|
|
|
* We cannot use QTabBar here because it does a lot of fancy animations
|
|
|
|
* that will crash the application if a tab is removed while the animation
|
|
|
|
* has not finished. And we need to remove a tab, if the user drags a
|
|
|
|
* a dock widget out of a group of tabbed widgets
|
2018-08-24 19:41:58 +08:00
|
|
|
*/
|
2019-10-18 13:41:28 +08:00
|
|
|
class ADS_EXPORT CDockAreaTabBar : public QScrollArea
|
2018-08-24 19:41:58 +08:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private:
|
|
|
|
DockAreaTabBarPrivate* d; ///< private data (pimpl)
|
2018-12-17 19:41:43 +08:00
|
|
|
friend struct 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;
|
2019-08-26 13:58:56 +08:00
|
|
|
|
2018-11-04 03:51:02 +08:00
|
|
|
|
2018-08-24 19:41:58 +08:00
|
|
|
public:
|
2018-10-12 17:51:35 +08:00
|
|
|
using Super = QScrollArea;
|
2019-08-26 13:58:56 +08:00
|
|
|
|
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;
|
|
|
|
|
2019-09-13 16:25:33 +08:00
|
|
|
/**
|
|
|
|
* Overrides the minimumSizeHint() function of QScrollArea
|
|
|
|
* The minimumSizeHint() is bigger than the sizeHint () for the scroll
|
|
|
|
* area because even if the scrollbars are invisible, the required speace
|
|
|
|
* is reserved in the minimumSizeHint(). This override simply returns
|
|
|
|
* sizeHint();
|
|
|
|
*/
|
|
|
|
virtual QSize minimumSizeHint() const override;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The function provides a sizeHint that matches the height of the
|
|
|
|
* internal viewport.
|
|
|
|
*/
|
|
|
|
virtual QSize sizeHint() const override;
|
|
|
|
|
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);
|
2020-02-06 22:21:19 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This signal is emitted when a tab title elide state has been changed
|
|
|
|
*/
|
|
|
|
void elidedChanged(bool elided);
|
2018-08-24 19:41:58 +08:00
|
|
|
}; // class CDockAreaTabBar
|
|
|
|
} // namespace ads
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#endif // DockAreaTabBarH
|
|
|
|
|