mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 21:25:44 +08:00
55 lines
1.0 KiB
C++
55 lines
1.0 KiB
C++
#ifndef ADS_INTERNAL_HEADER
|
|
#define ADS_INTERNAL_HEADER
|
|
|
|
#include <QSharedPointer>
|
|
#include <QWeakPointer>
|
|
|
|
#include "ads/API.h"
|
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
|
|
#else
|
|
#include "ads/SectionContent.h"
|
|
#endif
|
|
|
|
#define SCLookupMapById(X) X->_scLookupMapById
|
|
#define SCLookupMapByName(X) X->_scLookupMapByName
|
|
#define SWLookupMapById(X) X->_swLookupMapById
|
|
|
|
ADS_NAMESPACE_BEGIN
|
|
class SectionContent;
|
|
class SectionTitleWidget;
|
|
class SectionContentWidget;
|
|
|
|
|
|
class InternalContentData
|
|
{
|
|
public:
|
|
typedef QSharedPointer<InternalContentData> RefPtr;
|
|
typedef QWeakPointer<InternalContentData> WeakPtr;
|
|
|
|
InternalContentData();
|
|
~InternalContentData();
|
|
|
|
QSharedPointer<SectionContent> content;
|
|
SectionTitleWidget* titleWidget;
|
|
SectionContentWidget* contentWidget;
|
|
};
|
|
|
|
|
|
class HiddenSectionItem
|
|
{
|
|
public:
|
|
HiddenSectionItem() :
|
|
preferredSectionId(-1),
|
|
preferredSectionIndex(-1)
|
|
{}
|
|
|
|
int preferredSectionId;
|
|
int preferredSectionIndex;
|
|
InternalContentData data;
|
|
};
|
|
|
|
|
|
ADS_NAMESPACE_END
|
|
#endif
|