1 Star 0 Fork 0

吴显锋/mplane-plugin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
qMPlane.cpp 2.58 KB
一键复制 编辑 原始数据 按行查看 历史
Daniel Girardeau-Montaut 提交于 2021-03-06 12:28 . Compilation with Qt 5.15
//##########################################################################
//# #
//# CLOUDCOMPARE PLUGIN: qMPlane #
//# #
//# This program is free software; you can redistribute it and/or modify #
//# it under the terms of the GNU General Public License as published by #
//# the Free Software Foundation; version 2 of the License. #
//# #
//# This program is distributed in the hope that it will be useful, #
//# but WITHOUT ANY WARRANTY; without even the implied warranty of #
//# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
//# GNU General Public License for more details. #
//# #
//# COPYRIGHT: AIT Austrian Institute of Technology GmbH #
//# #
//##########################################################################
// Qt
#include <QtGui>
#include <QTableWidget>
// CC
#include <ccGLWindow.h>
#include <ccPickingHub.h>
// qCC_db
#include <ccHObject.h>
#include <ccScalarField.h>
#include <ccPlane.h>
// CCCoreLib
#include <DistanceComputationTools.h>
// Local dependencies
#include "qMPlane.h"
qMPlane::qMPlane( QObject *parent )
: QObject( parent )
, ccStdPluginInterface( ":/CC/plugin/qMPlane/info.json" )
, m_action( nullptr )
{
}
QList<QAction *> qMPlane::getActions()
{
if (!m_action)
{
m_action = new QAction(getName(), this);
m_action->setToolTip(getDescription());
m_action->setIcon(getIcon());
connect(m_action, &QAction::triggered, this, &qMPlane::doAction);
}
return{ m_action };
}
// Called when an item is selected
void qMPlane::onNewSelection( const ccHObject::Container &selectedEntities )
{
if ( m_action == nullptr )
{
return;
}
m_action->setEnabled(false);
if(selectedEntities.size() == 1) {
ccHObject *object = selectedEntities.at(0);
if (object->getClassID() == static_cast<CC_CLASS_ENUM>(CC_TYPES::POINT_CLOUD)) {
m_selectedCloud = static_cast<ccPointCloud*>(object);
m_action->setEnabled(true);
}
}
}
// Called when plugin icon is clicked
void qMPlane::doAction()
{
if (m_app == nullptr)
{
Q_ASSERT(false);
return;
}
if (!m_controller) {
m_controller = std::make_unique<ccMPlaneDlgController>(m_app);
}
m_controller->openDialog(m_selectedCloud);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wxf2wm/mplane-plugin.git
git@gitee.com:wxf2wm/mplane-plugin.git
wxf2wm
mplane-plugin
mplane-plugin
master

搜索帮助