2017-02-25 05:44:02 +08:00
|
|
|
#ifndef ads_globalsH
|
|
|
|
#define ads_globalsH
|
2017-02-27 21:15:20 +08:00
|
|
|
/*******************************************************************************
|
2017-06-10 04:04:02 +08:00
|
|
|
** Qt Advanced Docking System
|
2017-02-27 21:15:20 +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-02-27 21:15:20 +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-02-27 21:15:20 +08:00
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
|
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>
|
2018-07-17 21:11:49 +08:00
|
|
|
#include <QtCore/QtGlobal>
|
2018-11-08 17:04:29 +08:00
|
|
|
#include <QPixmap>
|
2018-12-11 22:19:59 +08:00
|
|
|
#include <QWidget>
|
2019-11-26 21:40:56 +08:00
|
|
|
#include <QDebug>
|
2020-02-05 15:57:57 +08:00
|
|
|
#include <QStyle>
|
2021-01-03 03:29:59 +08:00
|
|
|
#include <QMouseEvent>
|
2020-02-05 15:57:57 +08:00
|
|
|
|
2019-09-12 10:44:12 +08:00
|
|
|
#ifdef Q_OS_LINUX
|
|
|
|
#include <xcb/xcb.h>
|
|
|
|
#endif
|
|
|
|
|
2020-05-14 13:27:48 +08:00
|
|
|
QT_FORWARD_DECLARE_CLASS(QAbstractButton)
|
2018-07-17 21:11:49 +08:00
|
|
|
|
2019-01-16 17:44:34 +08:00
|
|
|
#ifndef ADS_STATIC
|
2018-07-17 21:11:49 +08:00
|
|
|
#ifdef ADS_SHARED_EXPORT
|
|
|
|
#define ADS_EXPORT Q_DECL_EXPORT
|
|
|
|
#else
|
|
|
|
#define ADS_EXPORT Q_DECL_IMPORT
|
|
|
|
#endif
|
2019-01-16 17:44:34 +08:00
|
|
|
#else
|
|
|
|
#define ADS_EXPORT
|
|
|
|
#endif
|
2017-02-27 01:13:56 +08:00
|
|
|
|
2019-08-26 13:58:56 +08:00
|
|
|
// Define ADS_DEBUG_PRINT to enable a lot of debug output
|
2019-07-21 15:53:24 +08:00
|
|
|
#ifdef ADS_DEBUG_PRINT
|
|
|
|
#define ADS_PRINT(s) qDebug() << s
|
|
|
|
#else
|
|
|
|
#define ADS_PRINT(s)
|
|
|
|
#endif
|
|
|
|
|
2019-08-26 13:58:56 +08:00
|
|
|
// Set ADS_DEBUG_LEVEL to enable additional debug output and to enable layout
|
|
|
|
// dumps to qDebug and std::cout after layout changes
|
2018-09-14 14:46:10 +08:00
|
|
|
#define ADS_DEBUG_LEVEL 0
|
|
|
|
|
2020-05-14 13:27:48 +08:00
|
|
|
QT_FORWARD_DECLARE_CLASS(QSplitter)
|
2017-02-25 05:44:02 +08:00
|
|
|
|
|
|
|
namespace ads
|
|
|
|
{
|
2018-12-03 19:52:57 +08:00
|
|
|
class CDockSplitter;
|
|
|
|
|
2017-02-25 05:44:02 +08:00
|
|
|
enum DockWidgetArea
|
|
|
|
{
|
|
|
|
NoDockWidgetArea = 0x00,
|
|
|
|
LeftDockWidgetArea = 0x01,
|
|
|
|
RightDockWidgetArea = 0x02,
|
|
|
|
TopDockWidgetArea = 0x04,
|
|
|
|
BottomDockWidgetArea = 0x08,
|
|
|
|
CenterDockWidgetArea = 0x10,
|
|
|
|
|
2017-03-02 18:43:48 +08:00
|
|
|
InvalidDockWidgetArea = NoDockWidgetArea,
|
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)
|
|
|
|
|
2017-03-27 16:41:27 +08:00
|
|
|
|
2018-11-04 03:51:02 +08:00
|
|
|
enum TitleBarButton
|
|
|
|
{
|
|
|
|
TitleBarButtonTabsMenu,
|
|
|
|
TitleBarButtonUndock,
|
|
|
|
TitleBarButtonClose
|
|
|
|
};
|
|
|
|
|
2018-12-20 23:25:30 +08:00
|
|
|
/**
|
|
|
|
* The different dragging states
|
|
|
|
*/
|
|
|
|
enum eDragState
|
|
|
|
{
|
|
|
|
DraggingInactive, //!< DraggingInactive
|
|
|
|
DraggingMousePressed, //!< DraggingMousePressed
|
|
|
|
DraggingTab, //!< DraggingTab
|
|
|
|
DraggingFloatingWidget//!< DraggingFloatingWidget
|
|
|
|
};
|
|
|
|
|
2019-10-18 14:31:26 +08:00
|
|
|
/**
|
|
|
|
* The different icons used in the UI
|
|
|
|
*/
|
|
|
|
enum eIcon
|
|
|
|
{
|
|
|
|
TabCloseIcon, //!< TabCloseIcon
|
|
|
|
DockAreaMenuIcon, //!< DockAreaMenuIcon
|
|
|
|
DockAreaUndockIcon,//!< DockAreaUndockIcon
|
|
|
|
DockAreaCloseIcon, //!< DockAreaCloseIcon
|
|
|
|
|
|
|
|
IconCount, //!< just a delimiter for range checks
|
|
|
|
};
|
|
|
|
|
2020-01-06 18:42:36 +08:00
|
|
|
/**
|
|
|
|
* For bitwise combination of dock wdget features
|
|
|
|
*/
|
|
|
|
enum eBitwiseOperator
|
|
|
|
{
|
|
|
|
BitwiseAnd,
|
|
|
|
BitwiseOr
|
|
|
|
};
|
|
|
|
|
2019-09-12 10:44:12 +08:00
|
|
|
|
2017-02-25 05:44:02 +08:00
|
|
|
namespace internal
|
|
|
|
{
|
2018-12-11 22:19:59 +08:00
|
|
|
static const bool RestoreTesting = true;
|
|
|
|
static const bool Restore = false;
|
2019-10-01 17:48:53 +08:00
|
|
|
static const char* const ClosedProperty = "close";
|
|
|
|
static const char* const DirtyProperty = "dirty";
|
2017-02-27 01:13:56 +08:00
|
|
|
|
2019-09-12 10:44:12 +08:00
|
|
|
#ifdef Q_OS_LINUX
|
2020-08-31 14:32:56 +08:00
|
|
|
// Utils to directly communicate with the X server
|
|
|
|
/**
|
|
|
|
* Get atom from cache or request it from the XServer.
|
|
|
|
*/
|
|
|
|
xcb_atom_t xcb_get_atom(const char *name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a property to a window. Only works on "hidden" windows.
|
|
|
|
*/
|
|
|
|
void xcb_add_prop(bool state, WId window, const char *type, const char *prop);
|
|
|
|
/**
|
|
|
|
* Updates up to two window properties. Can be set on a visible window.
|
|
|
|
*/
|
|
|
|
void xcb_update_prop(bool set, WId window, const char *type, const char *prop, const char *prop2 = nullptr);
|
|
|
|
/**
|
|
|
|
* Only for debugging purposes.
|
|
|
|
*/
|
|
|
|
bool xcb_dump_props(WId window, const char *type);
|
|
|
|
/**
|
|
|
|
* Gets the active window manager from the X11 Server.
|
|
|
|
* Requires a EWMH conform window manager (Allmost all common used ones are).
|
|
|
|
* Returns "UNKNOWN" otherwise.
|
|
|
|
*/
|
|
|
|
QString windowManager();
|
2019-09-12 10:44:12 +08:00
|
|
|
#endif
|
|
|
|
|
2017-03-01 21:09:56 +08:00
|
|
|
/**
|
|
|
|
* Replace the from widget in the given splitter with the To widget
|
|
|
|
*/
|
|
|
|
void replaceSplitterWidget(QSplitter* Splitter, QWidget* From, QWidget* To);
|
|
|
|
|
2018-12-03 19:52:57 +08:00
|
|
|
/**
|
|
|
|
* This function walks the splitter tree upwards to hides all splitters
|
|
|
|
* that do not have visible content
|
|
|
|
*/
|
|
|
|
void hideEmptyParentSplitters(CDockSplitter* FirstParentSplitter);
|
|
|
|
|
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:
|
2021-01-03 01:06:45 +08:00
|
|
|
using QPair<Qt::Orientation, bool>::QPair;
|
2017-03-01 05:41:34 +08:00
|
|
|
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);
|
|
|
|
|
|
|
|
/**
|
2017-03-01 21:09:56 +08:00
|
|
|
* Searches for the parent widget of the given type.
|
|
|
|
* Returns the parent widget of the given widget or 0 if the widget is not
|
|
|
|
* child of any widget of type T
|
2018-10-15 14:29:30 +08:00
|
|
|
*
|
|
|
|
* It is not safe to use this function in in CDockWidget because only
|
|
|
|
* the current dock widget has a parent. All dock widgets that are not the
|
|
|
|
* current dock widget in a dock area have no parent.
|
2017-03-01 05:41:34 +08:00
|
|
|
*/
|
2017-03-01 21:09:56 +08:00
|
|
|
template <class T>
|
|
|
|
T findParent(const QWidget* w)
|
|
|
|
{
|
|
|
|
QWidget* parentWidget = w->parentWidget();
|
|
|
|
while (parentWidget)
|
|
|
|
{
|
2018-10-10 21:15:59 +08:00
|
|
|
T ParentImpl = qobject_cast<T>(parentWidget);
|
2017-03-01 21:09:56 +08:00
|
|
|
if (ParentImpl)
|
|
|
|
{
|
|
|
|
return ParentImpl;
|
|
|
|
}
|
|
|
|
parentWidget = parentWidget->parentWidget();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-11-08 17:04:29 +08:00
|
|
|
/**
|
|
|
|
* Creates a semi transparent pixmap from the given pixmap Source.
|
|
|
|
* The Opacity parameter defines the opacity from completely transparent (0.0)
|
|
|
|
* to completely opaque (1.0)
|
|
|
|
*/
|
|
|
|
QPixmap createTransparentPixmap(const QPixmap& Source, qreal Opacity);
|
|
|
|
|
2019-09-13 20:19:43 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function for settings flags in a QFlags instance.
|
|
|
|
*/
|
|
|
|
template <class T>
|
|
|
|
void setFlag(T& Flags, typename T::enum_type flag, bool on = true)
|
|
|
|
{
|
|
|
|
#if QT_VERSION >= 0x050700
|
|
|
|
Flags.setFlag(flag, on);
|
|
|
|
#else
|
|
|
|
if(on)
|
|
|
|
{
|
2019-09-13 20:26:18 +08:00
|
|
|
Flags |= flag;
|
2019-09-13 20:19:43 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-09-13 20:26:18 +08:00
|
|
|
Flags &= ~flag;
|
2019-09-13 20:19:43 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-02-05 15:33:40 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function for settings tooltips without cluttering the code with
|
|
|
|
* tests for preprocessor macros
|
|
|
|
*/
|
|
|
|
template <class QObjectPtr>
|
|
|
|
void setToolTip(QObjectPtr obj, const QString &tip)
|
|
|
|
{
|
|
|
|
#ifndef QT_NO_TOOLTIP
|
|
|
|
obj->setToolTip(tip);
|
|
|
|
#else
|
|
|
|
Q_UNUSED(obj);
|
|
|
|
Q_UNUSED(tip);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-02-05 15:57:57 +08:00
|
|
|
|
2021-01-03 03:29:59 +08:00
|
|
|
/**
|
|
|
|
* Helper function for access to mouse event global position in Qt5 and
|
|
|
|
*/
|
|
|
|
inline QPoint globalPositionOf(QMouseEvent* ev)
|
|
|
|
{
|
|
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
|
|
|
|
return ev->globalPosition().toPoint();
|
|
|
|
#else
|
|
|
|
return ev->globalPos();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-02-05 15:57:57 +08:00
|
|
|
/**
|
|
|
|
* Helper function to set the icon of a certain button.
|
|
|
|
* Use this function to set the icons for the dock area and dock widget buttons.
|
|
|
|
* The function first uses the CustomIconId to get an icon from the
|
|
|
|
* CIconProvider. You can register your custom icons with the icon provider, if
|
|
|
|
* you do not want to use the default buttons and if you do not want to use
|
|
|
|
* stylesheets.
|
|
|
|
* If the IconProvider does not return a valid icon (icon is null), the function
|
|
|
|
* fetches the given standard pixmap from the QStyle.
|
|
|
|
* param[in] Button The button whose icons are to be set
|
|
|
|
* param[in] StandardPixmap The standard pixmap to be used for the button
|
|
|
|
* param[in] CustomIconId The identifier for the custom icon.
|
|
|
|
*/
|
|
|
|
void setButtonIcon(QAbstractButton* Button, QStyle::StandardPixmap StandarPixmap,
|
|
|
|
ads::eIcon CustomIconId);
|
|
|
|
|
2020-05-11 01:30:34 +08:00
|
|
|
|
2020-06-07 23:19:07 +08:00
|
|
|
enum eRepolishChildOptions
|
|
|
|
{
|
|
|
|
RepolishIgnoreChildren,
|
|
|
|
RepolishDirectChildren,
|
|
|
|
RepolishChildrenRecursively
|
|
|
|
};
|
|
|
|
|
2020-05-11 01:30:34 +08:00
|
|
|
/**
|
|
|
|
* Calls unpolish() / polish for the style of the given widget to update
|
|
|
|
* stylesheet if a property changes
|
|
|
|
*/
|
2020-06-07 23:19:07 +08:00
|
|
|
void repolishStyle(QWidget* w, eRepolishChildOptions Options = RepolishIgnoreChildren);
|
2020-05-11 01:30:34 +08:00
|
|
|
|
2020-05-23 17:10:03 +08:00
|
|
|
|
2017-02-25 05:44:02 +08:00
|
|
|
} // namespace internal
|
|
|
|
} // namespace ads
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#endif // ads_globalsH
|