mirror of https://github.com/CGAL/cgal
62 lines
1.1 KiB
C++
62 lines
1.1 KiB
C++
#include "Viewer.h"
|
|
#include "Scene.h"
|
|
#include <QMouseEvent>
|
|
Viewer::Viewer(QWidget* parent)
|
|
: CGAL::QGLViewer(parent),
|
|
m_pScene(nullptr),
|
|
m_custom_mouse(false)
|
|
{
|
|
}
|
|
|
|
void Viewer::setScene(Scene* pScene)
|
|
{
|
|
this->m_pScene = pScene;
|
|
}
|
|
|
|
void Viewer::draw()
|
|
{
|
|
CGAL::QGLViewer::draw();
|
|
if(m_pScene != nullptr)
|
|
{
|
|
m_pScene->draw(this);
|
|
}
|
|
|
|
}
|
|
|
|
void Viewer::initializeGL()
|
|
{
|
|
CGAL::QGLViewer::initializeGL();
|
|
setBackgroundColor(::Qt::white);
|
|
//m_pScene->initGL(this);
|
|
}
|
|
|
|
void Viewer::mousePressEvent(QMouseEvent* e)
|
|
{
|
|
if ( e->modifiers() == Qt::ControlModifier )
|
|
{
|
|
m_pScene->set_fast_distance(true);
|
|
// Refresh distance function
|
|
m_pScene->cutting_plane(true);
|
|
m_custom_mouse = true;
|
|
}
|
|
|
|
CGAL::QGLViewer::mousePressEvent(e);
|
|
}
|
|
|
|
void Viewer::mouseReleaseEvent(QMouseEvent* e)
|
|
{
|
|
if ( m_custom_mouse )
|
|
{
|
|
m_pScene->set_fast_distance(false);
|
|
// Recompute distance function
|
|
QApplication::setOverrideCursor(Qt::WaitCursor);
|
|
m_pScene->cutting_plane(true);
|
|
QApplication::restoreOverrideCursor();
|
|
|
|
m_custom_mouse = false;
|
|
}
|
|
|
|
CGAL::QGLViewer::mouseReleaseEvent(e);
|
|
}
|
|
|