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..
44 lines
1.0 KiB
C++
44 lines
1.0 KiB
C++
#ifndef FLOATINGWIDGET_H
|
|
#define FLOATINGWIDGET_H
|
|
|
|
#include <QWidget>
|
|
class QBoxLayout;
|
|
|
|
#include "ads/API.h"
|
|
#include "ads/SectionContent.h"
|
|
|
|
ADS_NAMESPACE_BEGIN
|
|
class ContainerWidget;
|
|
class SectionTitleWidget;
|
|
class SectionContentWidget;
|
|
class InternalContentData;
|
|
|
|
// 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
|
|
|
|
friend class ContainerWidget;
|
|
|
|
public:
|
|
FloatingWidget(ContainerWidget* container, SectionContent::RefPtr sc, SectionTitleWidget* titleWidget, SectionContentWidget* contentWidget, QWidget* parent = NULL);
|
|
virtual ~FloatingWidget();
|
|
|
|
SectionContent::RefPtr content() const { return _content; }
|
|
|
|
public://private:
|
|
bool takeContent(InternalContentData& data);
|
|
|
|
private:
|
|
ContainerWidget* _container;
|
|
SectionContent::RefPtr _content;
|
|
SectionTitleWidget* _titleWidget;
|
|
SectionContentWidget* _contentWidget;
|
|
|
|
QBoxLayout* _titleLayout;
|
|
};
|
|
|
|
ADS_NAMESPACE_END
|
|
#endif
|