1 Star 0 Fork 1

第三方项目代码/QIpEditor

forked from Jackal/QIpEditor 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
qipeditorplugin.h 834 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jackal 提交于 2014-11-11 12:18 +08:00 . Init sources
#ifndef QIPEDITORPLUGIN_H
#define QIPEDITORPLUGIN_H
#include <QDesignerCustomWidgetInterface>
class QIpEditorPlugin : public QObject, public QDesignerCustomWidgetInterface
{
Q_OBJECT
Q_INTERFACES(QDesignerCustomWidgetInterface)
#if QT_VERSION >= 0x050000
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QDesignerCustomWidgetInterface")
#endif // QT_VERSION >= 0x050000
public:
QIpEditorPlugin(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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/third_party_project_code/QIpEditor.git
git@gitee.com:third_party_project_code/QIpEditor.git
third_party_project_code
QIpEditor
QIpEditor
master

搜索帮助