mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-16 05:35:43 +08:00
2513ab1f2b
* Q_PROPERTY MEMBER wasn't available, use READ and WRITE instead * Disables namespace with qt4 * Updates default stylesheet to work with qt4 (no namespaces) Unifies include/forward-declaration style in header files. README status updates
28 lines
471 B
C++
28 lines
471 B
C++
#ifndef SECTION_CONTENT_WIDGET_H
|
|
#define SECTION_CONTENT_WIDGET_H
|
|
|
|
#include <QFrame>
|
|
|
|
#include "ads/API.h"
|
|
#include "ads/SectionContent.h"
|
|
|
|
ADS_NAMESPACE_BEGIN
|
|
class ContainerWidget;
|
|
class SectionWidget;
|
|
|
|
class SectionContentWidget : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
friend class ContainerWidget;
|
|
|
|
public:
|
|
SectionContentWidget(SectionContent::RefPtr c, QWidget* parent = 0);
|
|
|
|
private:
|
|
SectionContent::RefPtr _content;
|
|
};
|
|
|
|
ADS_NAMESPACE_END
|
|
#endif
|