git-svn-id: svn://db.shs.com.ru/libs@1 a8b55f48-bf90-11e4-a774-851b48703e85
22 lines
485 B
C++
22 lines
485 B
C++
#ifndef QAD_BLOCKVIEW_H
|
|
#define QAD_BLOCKVIEW_H
|
|
|
|
#include <QtDesigner/QtDesigner>
|
|
#include <QtCore/qplugin.h>
|
|
|
|
class QADBlockView: public QObject, public QDesignerCustomWidgetCollectionInterface
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES(QDesignerCustomWidgetCollectionInterface)
|
|
|
|
public:
|
|
explicit QADBlockView(QObject * parent = 0);
|
|
virtual QList<QDesignerCustomWidgetInterface * > customWidgets() const;
|
|
|
|
private:
|
|
QList<QDesignerCustomWidgetInterface * > m_widgets;
|
|
|
|
};
|
|
|
|
#endif // QAD_BLOCKVIEW_H
|