131 lines
3.6 KiB
C++
131 lines
3.6 KiB
C++
#ifndef DockWidgetSideTabH
|
|
#define DockWidgetSideTabH
|
|
/*******************************************************************************
|
|
** 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 DockWidgetTab.h
|
|
/// \author Syarif Fakhri
|
|
/// \date 05.09.2022
|
|
/// \brief Declaration of CDockWidgetSideTab class
|
|
//============================================================================
|
|
|
|
//============================================================================
|
|
// INCLUDES
|
|
//============================================================================
|
|
#include "PushButton.h"
|
|
|
|
#include "ads_globals.h"
|
|
|
|
namespace ads
|
|
{
|
|
struct AutoHideTabPrivate;
|
|
class CDockWidget;
|
|
class CAutoHideSideBar;
|
|
class CDockWidgetTab;
|
|
struct SideTabIconLabelPrivate;
|
|
|
|
/**
|
|
* A dock widget Side tab that shows a title or an icon.
|
|
* The dock widget tab is shown in the side tab bar to switch between
|
|
* pinned dock widgets
|
|
*/
|
|
class ADS_EXPORT CAutoHideTab : public CPushButton
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(int sideTabBarArea READ sideTabBarArea)
|
|
Q_PROPERTY(Qt::Orientation orientation READ orientation)
|
|
Q_PROPERTY(bool activeTab READ isActiveTab)
|
|
|
|
private:
|
|
AutoHideTabPrivate* d; ///< private data (pimpl)
|
|
friend struct AutoHideTabPrivate;
|
|
friend class CDockWidget;
|
|
friend class CAutoHideDockContainer;
|
|
|
|
protected:
|
|
friend class CAutoHideSideBar;
|
|
friend class CDockAreaWidget;
|
|
friend class CDockContainerWidget;
|
|
|
|
void setSideBar(CAutoHideSideBar *SideTabBar);
|
|
void removeFromSideBar();
|
|
|
|
public:
|
|
using Super = CPushButton;
|
|
|
|
/**
|
|
* Default Constructor
|
|
* param[in] DockWidget The dock widget this title bar belongs to
|
|
* param[in] parent The parent widget of this title bar
|
|
*/
|
|
CAutoHideTab(QWidget* parent = nullptr);
|
|
|
|
/**
|
|
* Virtual Destructor
|
|
*/
|
|
virtual ~CAutoHideTab();
|
|
|
|
/**
|
|
* Update stylesheet style if a property changes
|
|
*/
|
|
void updateStyle();
|
|
|
|
/**
|
|
* Getter for side tab bar area property
|
|
*/
|
|
SideBarLocation sideTabBarArea() const;
|
|
|
|
/**
|
|
* Set orientation vertical or horizontal
|
|
*/
|
|
void setOrientation(Qt::Orientation Orientation);
|
|
|
|
/**
|
|
* Returns the current orientation
|
|
*/
|
|
Qt::Orientation orientation() const;
|
|
|
|
/**
|
|
* Update the orientation, visibility and spacing based on the area and the config
|
|
*/
|
|
void updateOrientationForArea(SideBarLocation area);
|
|
|
|
/**
|
|
* Returns true, if this is the active tab. The tab is active if the auto hide widget is visible
|
|
*/
|
|
bool isActiveTab() const;
|
|
|
|
/**
|
|
* returns the dock widget this belongs to
|
|
*/
|
|
CDockWidget* dockWidget() const;
|
|
|
|
/**
|
|
* Sets the dock widget that is controlled by this tab
|
|
*/
|
|
void setDockWidget(CDockWidget* DockWidget);
|
|
}; // class DockWidgetSideTab
|
|
}
|
|
// namespace ads
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#endif
|