mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 21:25:44 +08:00
06304b9818
Fixes a bug where SectionWidget removes itself from _sections list during a qDeleteAll call on _sections.. that was stupid..
63 lines
1.4 KiB
C++
63 lines
1.4 KiB
C++
#ifndef ADS_API_H
|
|
#define ADS_API_H
|
|
|
|
#include <QFlags>
|
|
class QWidget;
|
|
class QSplitter;
|
|
|
|
// DLL Export API
|
|
#ifdef _WIN32
|
|
#ifdef ADS_EXPORT
|
|
#define ADS_EXPORT_API __declspec(dllexport)
|
|
#else
|
|
#define ADS_EXPORT_API __declspec(dllimport)
|
|
#endif
|
|
#else
|
|
#define ADS_EXPORT_API
|
|
#endif
|
|
|
|
// Use namespace
|
|
// Disabled with Qt4!
|
|
#ifdef ADS_NAMESPACE_ENABLED
|
|
#define ADS_NAMESPACE_BEGIN namespace ads {
|
|
#define ADS_NAMESPACE_END }
|
|
#define ADS_NS ::ads
|
|
#else
|
|
#define ADS_NAMESPACE_BEGIN
|
|
#define ADS_NAMESPACE_END
|
|
#define ADS_NS
|
|
#endif
|
|
|
|
// Width of the native window frame border (based on OS).
|
|
#define ADS_WINDOW_FRAME_BORDER_WIDTH 7
|
|
|
|
// Indicates whether ADS should include animations.
|
|
//#define ADS_ANIMATIONS_ENABLED 1
|
|
//#define ADS_ANIMATION_DURATION 150
|
|
|
|
ADS_NAMESPACE_BEGIN
|
|
class ContainerWidget;
|
|
class SectionWidget;
|
|
|
|
enum DropArea
|
|
{
|
|
InvalidDropArea = 0,
|
|
TopDropArea = 1,
|
|
RightDropArea = 2,
|
|
BottomDropArea = 4,
|
|
LeftDropArea = 8,
|
|
CenterDropArea = 16,
|
|
|
|
AllAreas = TopDropArea | RightDropArea | BottomDropArea | LeftDropArea | CenterDropArea
|
|
};
|
|
Q_DECLARE_FLAGS(DropAreas, DropArea)
|
|
|
|
void deleteEmptySplitter(ContainerWidget* container);
|
|
ContainerWidget* findParentContainerWidget(QWidget* w);
|
|
SectionWidget* findParentSectionWidget(QWidget* w);
|
|
QSplitter* findParentSplitter(QWidget* w);
|
|
QSplitter* findImmediateSplitter(QWidget* w);
|
|
|
|
ADS_NAMESPACE_END
|
|
#endif
|