34 lines
674 B
C++
34 lines
674 B
C++
#ifndef MAPPLUGIN_H
|
|
#define MAPPLUGIN_H
|
|
|
|
#include <QObject>
|
|
#include <QtUiPlugin/QDesignerCustomWidgetInterface>
|
|
|
|
|
|
class MapPlugin
|
|
: public QObject
|
|
, public QDesignerCustomWidgetInterface {
|
|
Q_OBJECT
|
|
Q_INTERFACES(QDesignerCustomWidgetInterface)
|
|
|
|
public:
|
|
explicit MapPlugin(QObject * parent = 0);
|
|
|
|
bool isContainer() const;
|
|
bool isInitialized() const;
|
|
QIcon icon() const;
|
|
QString domXml() const;
|
|
QString group() const;
|
|
QString includeFile() const;
|
|
QString name() const;
|
|
QString toolTip() const;
|
|
QString whatsThis() const;
|
|
QWidget * createWidget(QWidget * parent);
|
|
void initialize(QDesignerFormEditorInterface * core);
|
|
|
|
private:
|
|
bool m_initialized;
|
|
};
|
|
|
|
#endif
|