| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- //##########################################################################
- //# #
- //# CLOUDCOMPARE #
- //# #
- //# 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 or later 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: EDF R&D / TELECOM ParisTech (ENST-TSI) #
- //# #
- //##########################################################################
- #include "ccEnvelopeExtractorDlg.h"
- //CCCoreLib
- #include <CCPlatform.h>
- //qCC_gl
- #include <ccGLWindowInterface.h>
- //Qt
- #include <QCoreApplication>
- //system
- #include <assert.h>
- #if defined(CC_WINDOWS)
- #include <windows.h>
- #else
- #include <time.h>
- #include <unistd.h>
- #endif
- ccEnvelopeExtractorDlg::ccEnvelopeExtractorDlg(QWidget* parent/*=nullptr*/)
- : QDialog(parent, Qt::WindowMaximizeButtonHint | Qt::WindowCloseButtonHint)
- , Ui::EnvelopeExtractorDlg()
- , m_skipped(false)
- , m_glWindow(nullptr)
- {
- setupUi(this);
- }
- void ccEnvelopeExtractorDlg::init()
- {
- if (m_glWindow)
- {
- //already initialized
- assert(false);
- return;
- }
- connect(nextPushButton, &QAbstractButton::clicked, &m_loop, &QEventLoop::quit);
- connect(skipPushButton, &QAbstractButton::clicked, this, &ccEnvelopeExtractorDlg::onSkipButtonClicked);
- nextPushButton->setFocus();
- //create 3D window
- {
- QWidget* glWidget = nullptr;
- ccGLWindowInterface::Create(m_glWindow, glWidget, false, true);
- assert(m_glWindow && glWidget);
- ccGui::ParamStruct params = m_glWindow->getDisplayParameters();
- //black (text) & white (background) display by default
- params.backgroundCol = ccColor::white;
- params.textDefaultCol = ccColor::black;
- params.pointsDefaultCol = ccColor::black;
- params.drawBackgroundGradient = false;
- params.decimateMeshOnMove = false;
- params.displayCross = false;
- params.colorScaleUseShader = false;
- m_glWindow->setDisplayParameters(params, true);
- m_glWindow->setPerspectiveState(false, true);
- m_glWindow->setInteractionMode(ccGLWindowInterface::INTERACT_PAN | ccGLWindowInterface::INTERACT_ZOOM_CAMERA | ccGLWindowInterface::INTERACT_CLICKABLE_ITEMS);
- m_glWindow->setPickingMode(ccGLWindowInterface::NO_PICKING);
- m_glWindow->displayOverlayEntities(true, false);
- m_glWindow->setSunLight(true);
- m_glWindow->setCustomLight(false);
- viewFrame->setLayout(new QHBoxLayout);
- viewFrame->layout()->addWidget(glWidget);
- }
- }
- void ccEnvelopeExtractorDlg::zoomOn(const ccBBox& box)
- {
- if (!m_glWindow)
- return;
- double pixSize = std::max(box.getDiagVec().x / std::max(20, m_glWindow->glWidth() - 20), box.getDiagVec().y / std::max(20, m_glWindow->glHeight() - 20));
- CCVector3d C = box.getCenter();
- m_glWindow->setPivotPoint(C);
- m_glWindow->setCameraPos(C);
- m_glWindow->setCameraFocalToFitWidth(pixSize * m_glWindow->glWidth());
- }
- bool ccEnvelopeExtractorDlg::isSkipped() const
- {
- return skipPushButton->isChecked();
- }
- void ccEnvelopeExtractorDlg::addToDisplay(ccHObject* obj, bool noDependency/*=true*/)
- {
- if (m_glWindow && obj)
- {
- m_glWindow->addToOwnDB(obj,noDependency);
- }
- }
- void ccEnvelopeExtractorDlg::removFromDisplay(ccHObject* obj)
- {
- if (m_glWindow && obj)
- {
- m_glWindow->removeFromOwnDB(obj);
- }
- }
- void ccEnvelopeExtractorDlg::refresh()
- {
- if (m_skipped)
- return;
- if (m_glWindow)
- {
- m_glWindow->redraw();
- QCoreApplication::processEvents();
- }
- }
- void ccEnvelopeExtractorDlg::displayMessage(QString message, bool waitForUserConfirmation/*=false*/)
- {
- if (m_skipped)
- return;
- messageLabel->setText(message);
- if (waitForUserConfirmation)
- waitForUser(20);
- }
- void ccEnvelopeExtractorDlg::onSkipButtonClicked()
- {
- m_skipped = true;
- hide();
- QCoreApplication::processEvents();
- }
- void ccEnvelopeExtractorDlg::waitForUser(unsigned defaultDelay_ms/*=100*/)
- {
- if (m_skipped)
- return;
- if (autoCheckBox->isChecked())
- {
- //simply wait a pre-determined time
- #if defined(CC_WINDOWS)
- ::Sleep(defaultDelay_ms);
- #else
- usleep(defaultDelay_ms * 1000);
- #endif
- }
- else
- {
- setModal(true);
- //wait for the user to click on the 'Next' button
- m_loop.exec();
- setModal(false);
- //exec();
- }
- }
|