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

29 lines
506 B
C
Raw Normal View History

2015-12-09 19:21:38 +08:00
#ifndef SECTION_CONTENT_WIDGET_H
#define SECTION_CONTENT_WIDGET_H
#include <QFrame>
#include "ads/API.h"
#include "ads/SectionContent.h"
2015-12-09 19:21:38 +08:00
ADS_NAMESPACE_BEGIN
class ContainerWidget;
2015-12-09 19:21:38 +08:00
class SectionWidget;
class SectionContentWidget : public QFrame
{
Q_OBJECT
friend class ContainerWidget;
2015-12-09 19:21:38 +08:00
public:
SectionContentWidget(SectionContent::RefPtr c, QWidget* parent = 0);
virtual ~SectionContentWidget();
2015-12-09 19:21:38 +08:00
private:
SectionContent::RefPtr _content;
};
ADS_NAMESPACE_END
2016-02-12 14:15:10 +08:00
#endif