13 Star 39 Fork 6

zjzdy / Offline-small-search

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
more_search_obj.cpp 1.40 KB
一键复制 编辑 原始数据 按行查看 历史
zjzdy 提交于 2016-11-06 16:31 . V2.3.0_beta1
#include "more_search_obj.h"
more_search_obj::more_search_obj(QObject *parent) : QObject(parent)
{
}
QString more_search_obj::type() const
{
return m_type;
}
void more_search_obj::setType(const QString & type)
{
m_type = type;
Q_EMIT typeChanged(m_type);
}
QString more_search_obj::name() const
{
return m_name;
}
void more_search_obj::setName(const QString & name)
{
m_name = name;
Q_EMIT nameChanged(m_name);
}
QString more_search_obj::name_code() const
{
return m_name_code;
}
void more_search_obj::setName_code(const QString & name_code)
{
m_name_code = name_code;
Q_EMIT name_codeChanged(m_name_code);
}
bool more_search_obj::is_plugin() const
{
return m_is_plugin;
}
void more_search_obj::setIs_plugin(const bool & is_plugin)
{
m_is_plugin = is_plugin;
Q_EMIT is_pluginChanged(m_is_plugin);
}
QString more_search_obj::pluginQmlPath() const
{
return m_pluginQmlPath;
}
void more_search_obj::setPluginQmlPath(const QString & pluginQmlPath)
{
m_pluginQmlPath = pluginQmlPath;
Q_EMIT pluginQmlPathChanged(m_pluginQmlPath);
}
QString more_search_obj::absoluteQmlPath() const
{
return m_absoluteQmlPath;
}
void more_search_obj::setAbsoluteQmlPath(const QString & absoluteQmlPath)
{
m_absoluteQmlPath = absoluteQmlPath;
Q_EMIT absoluteQmlPathChanged(m_absoluteQmlPath);
}
C++
1
https://gitee.com/zjzdy/Offline-small-search.git
git@gitee.com:zjzdy/Offline-small-search.git
zjzdy
Offline-small-search
Offline-small-search
master

搜索帮助