Qt-Advanced-Docking-System/AdvancedDockingSystem/include/ads/SectionWidget.h

82 lines
2.2 KiB
C
Raw Normal View History

2015-12-09 19:21:38 +08:00
#ifndef SECTION_WIDGET_H
#define SECTION_WIDGET_H
#include <QDebug>
#include <QList>
#include <QHash>
#include <QFrame>
class QBoxLayout;
class QStackedLayout;
2015-12-09 19:21:38 +08:00
#include "ads/API.h"
#include "ads/Internal.h"
#include "ads/SectionContent.h"
2015-12-09 19:21:38 +08:00
ADS_NAMESPACE_BEGIN
class ContainerWidget;
class SectionTitleWidget;
class SectionContentWidget;
// SectionWidget manages multiple instances of SectionContent.
// It displays a title TAB, which is clickable and will switch to
// the contents associated to the title when clicked.
class ADS_EXPORT_API SectionWidget : public QFrame
2015-12-09 19:21:38 +08:00
{
Q_OBJECT
friend class ContainerWidget;
2015-12-09 19:21:38 +08:00
explicit SectionWidget(ContainerWidget* parent);
public:
2015-12-09 19:21:38 +08:00
virtual ~SectionWidget();
int uid() const;
ContainerWidget* containerWidget() const;
2015-12-09 19:21:38 +08:00
QRect titleAreaGeometry() const;
QRect contentAreaGeometry() const;
const QList<SectionContent::RefPtr>& contents() const { return _contents; }
void addContent(const SectionContent::RefPtr& c);
2015-12-09 19:21:38 +08:00
void addContent(const InternalContentData& data, bool autoActivate);
bool takeContent(int uid, InternalContentData& data);
int indexOfContent(const SectionContent::RefPtr& c) const;
int indexOfContentByTitlePos(const QPoint& pos, QWidget* exclude = NULL) const;
int currentIndex() const;
void moveContent(int from, int to);
2015-12-09 19:21:38 +08:00
public slots:
void setCurrentIndex(int index);
private slots:
void onSectionTitleClicked();
void onCloseButtonClicked();
2015-12-09 19:21:38 +08:00
private:
const int _uid;
ContainerWidget* _container;
QList<SectionContent::RefPtr> _contents;
QList<SectionTitleWidget*> _sectionTitles;
QList<SectionContentWidget*> _sectionContents;
QBoxLayout *_tabsLayout;
QStackedLayout *_contentsLayout;
QPoint _mousePressPoint;
SectionContent::RefPtr _mousePressContent;
SectionTitleWidget* _mousePressTitleWidget;
static int GetNextUid();
static QHash<int, SectionWidget*>& GetLookupMap();
static QHash<ContainerWidget*, QHash<int, SectionWidget*> >& GetLookupMapByContainer();
// static int NextUid;
// static QHash<int, SectionWidget*> LookupMap;
// static QHash<ContainerWidget*, QHash<int, SectionWidget*> > LookupMapByContainer;
2015-12-09 19:21:38 +08:00
};
ADS_NAMESPACE_END
2016-02-12 14:15:10 +08:00
#endif