2015-12-09 19:21:38 +08:00
|
|
|
#ifndef FLOATINGWIDGET_H
|
|
|
|
#define FLOATINGWIDGET_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QFrame>
|
2016-02-15 19:27:23 +08:00
|
|
|
class QBoxLayout;
|
2015-12-09 19:21:38 +08:00
|
|
|
|
2016-02-02 22:01:48 +08:00
|
|
|
#include "ads/API.h"
|
|
|
|
#include "ads/SectionContent.h"
|
2015-12-09 19:21:38 +08:00
|
|
|
|
|
|
|
ADS_NAMESPACE_BEGIN
|
2016-02-02 20:49:10 +08:00
|
|
|
class ContainerWidget;
|
2015-12-09 19:21:38 +08:00
|
|
|
class SectionTitleWidget;
|
|
|
|
class SectionContentWidget;
|
2016-02-12 15:00:31 +08:00
|
|
|
class InternalContentData;
|
2015-12-09 19:21:38 +08:00
|
|
|
|
|
|
|
// FloatingWidget holds and displays SectionContent as a floating window.
|
|
|
|
// It can be resized, moved and dropped back into a SectionWidget.
|
|
|
|
class FloatingWidget : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2016-02-15 18:13:58 +08:00
|
|
|
friend class ContainerWidget;
|
|
|
|
|
2015-12-09 19:21:38 +08:00
|
|
|
public:
|
2016-02-12 14:15:10 +08:00
|
|
|
FloatingWidget(ContainerWidget* container, SectionContent::RefPtr sc, SectionTitleWidget* titleWidget, SectionContentWidget* contentWidget, QWidget* parent = NULL);
|
2016-02-02 20:49:10 +08:00
|
|
|
virtual ~FloatingWidget();
|
|
|
|
|
|
|
|
SectionContent::RefPtr content() const { return _content; }
|
2015-12-09 19:21:38 +08:00
|
|
|
|
2016-02-15 17:28:42 +08:00
|
|
|
public://private:
|
|
|
|
bool takeContent(InternalContentData& data);
|
2015-12-09 19:21:38 +08:00
|
|
|
|
|
|
|
private:
|
2016-02-02 20:49:10 +08:00
|
|
|
ContainerWidget* _container;
|
2015-12-09 19:21:38 +08:00
|
|
|
SectionContent::RefPtr _content;
|
|
|
|
SectionTitleWidget* _titleWidget;
|
|
|
|
SectionContentWidget* _contentWidget;
|
|
|
|
|
|
|
|
QBoxLayout* _titleLayout;
|
|
|
|
};
|
|
|
|
|
|
|
|
ADS_NAMESPACE_END
|
2016-02-12 14:15:10 +08:00
|
|
|
#endif
|